Update changelog, set version to 6.1

pull/53/head
Aleksander Machniak 12 years ago
parent 04c856774d
commit 0a9d414084

@ -1,7 +1,10 @@
* version 6.1 [2012-12-21]
-----------------------------------------------------------
- Fixed filter activation/deactivation confirmation message (#1488765) - Fixed filter activation/deactivation confirmation message (#1488765)
- Moved rcube_* classes to <plugin>/lib/Roundcube for compat. with Roundcube Framework autoloader - Moved rcube_* classes to <plugin>/lib/Roundcube for compat. with Roundcube Framework autoloader
- Fixed filter selection after filter deletion (#1488832) - Fixed filter selection after filter deletion (#1488832)
- Fixed compatibility with jQueryUI-1.9 - Fixed compatibility with jQueryUI-1.9
- Don't force 'stop' action on last rule in a script
* version 6.0 [2012-10-03] * version 6.0 [2012-10-03]
----------------------------------------------------------- -----------------------------------------------------------

@ -62,7 +62,7 @@ class managesieve extends rcube_plugin
"x-beenthere", "x-beenthere",
); );
const VERSION = '6.0'; const VERSION = '6.1';
const PROGNAME = 'Roundcube (Managesieve)'; const PROGNAME = 'Roundcube (Managesieve)';
const PORT = 4190; const PORT = 4190;

@ -17,9 +17,9 @@
<email>alec@alec.pl</email> <email>alec@alec.pl</email>
<active>yes</active> <active>yes</active>
</lead> </lead>
<date>2012-10-03</date> <date>2012-12-21</date>
<version> <version>
<release>6.0</release> <release>6.1</release>
<api>6.0</api> <api>6.0</api>
</version> </version>
<stability> <stability>

@ -990,7 +990,7 @@ function rcube_webmail()
if (uid = this.get_single_uid()) { if (uid = this.get_single_uid()) {
url = {_reply_uid: uid, _mbox: this.env.mailbox}; url = {_reply_uid: uid, _mbox: this.env.mailbox};
if (command == 'reply-all') if (command == 'reply-all')
// do reply-list, when list is detected and popup menu wasn't used // do reply-list, when list is detected and popup menu wasn't used
url._all = (!props && this.commands['reply-list'] ? 'list' : 'all'); url._all = (!props && this.commands['reply-list'] ? 'list' : 'all');
else if (command == 'reply-list') else if (command == 'reply-list')
url._all = 'list'; url._all = 'list';

Loading…
Cancel
Save