Update Changelog and bump version

pull/252/head 1.0.2
Thomas Bruederli 10 years ago
parent d461ae0e8a
commit 7515a28ee9

@ -1,6 +1,9 @@
CHANGELOG Roundcube Webmail
===========================
RELEASE 1.0.2
-------------
- Fix storing unsaved drafts in localStorage (#1489818)
- Fix redundant horizontal scrollbar in HTML editor (#1489950)
- Fix PHP error in Preferences when default_folders was in dont_override (#1489940)
- Add configurable LDAP_OPT_DEREF option (#1489864)

@ -2,7 +2,7 @@
/*
+-------------------------------------------------------------------------+
| Roundcube Webmail IMAP Client |
| Version 1.0.1 |
| Version 1.0.2 |
| |
| Copyright (C) 2005-2014, The Roundcube Dev Team |
| |

@ -21,7 +21,7 @@
*/
// application constants
define('RCMAIL_VERSION', '1.0.1');
define('RCMAIL_VERSION', '1.0.2');
define('RCMAIL_START', microtime(true));
if (!defined('INSTALL_PATH')) {

@ -54,7 +54,7 @@ foreach ($config as $optname => $optval) {
}
// framework constants
define('RCUBE_VERSION', '1.0.1');
define('RCUBE_VERSION', '1.0.2');
define('RCUBE_CHARSET', 'UTF-8');
if (!defined('RCUBE_LIB_DIR')) {

Loading…
Cancel
Save