Skip to content

Commit dd13a92

Browse files
committed
Merge branch 'master' into release-3.3
2 parents 0f2dd2d + dda4628 commit dd13a92

File tree

5 files changed

+19
-2
lines changed

5 files changed

+19
-2
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Roundcube Webmail ContextMenu
22
=============================
33

4+
Version 3.3.1 (2022-06-18, rc-1.5)
5+
=================================================
6+
* Add placeholder for undeleted icon
7+
48
Version 3.3 (2021-10-19, rc-1.5)
59
=================================================
610
* Support Dark Mode in Elastic

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"homepage": "https://github.com/johndoh/roundcube-contextmenu/",
66
"license": "GPL-3.0-or-later",
77
"type": "roundcube-plugin",
8-
"version": "3.3",
8+
"version": "3.3.1",
99
"authors": [
1010
{
1111
"name": "Philip Weir",

contextmenu.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*/
2929
class contextmenu extends rcube_plugin
3030
{
31-
public $task = '^((?!login).)*$';
31+
public $task = '?(?!login$|logout$|cli$).*';
3232
private $rcube;
3333

3434
public function init()

localization/ar.inc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
/* Author: Eyad Tamer */
3+
4+
$labels = [];
5+
$labels['collapseall'] = 'تصغير كل المجلدات';
6+
$labels['expandall'] = 'قم بتوسيع كافة المجلدات';
7+
8+
$messages = [];

skins/classic/contextmenu.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,11 @@ div.contextmenu ul.iconized li a.unflaggedlink span.icon
132132
background-position: 7px -153px;
133133
}
134134

135+
div.contextmenu ul.iconized li a.undeletedlink span.icon
136+
{
137+
background-position: 7px -1000px;
138+
}
139+
135140
div.contextmenu ul.iconized li a.messagemenu span.icon,
136141
div.contextmenu ul.iconized li a.contactmenu span.icon,
137142
div.contextmenu ul.iconized li a.keymenu span.icon

0 commit comments

Comments
 (0)