diff options
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | index.php | 2 | ||||
-rw-r--r-- | program/include/iniset.php | 2 | ||||
-rw-r--r-- | program/lib/Roundcube/bootstrap.php | 2 |
4 files changed, 7 insertions, 3 deletions
@@ -1,6 +1,10 @@ CHANGELOG Roundcube Webmail =========================== +RELEASE 0.9.2 +------------- +- Fix image thumbnails display in print mode (#1489134) +- Fix height of message headers block (#1489108) - Fix timeout issue on drag&drop uploads (#1489170) - Fix default sorting of threaded list when THREAD=REFS isn't supported - Fix list mode switch to 'List' after saving list settings in Larry skin (#1489164) @@ -2,7 +2,7 @@ /* +-------------------------------------------------------------------------+ | Roundcube Webmail IMAP Client | - | Version 0.9.1 | + | Version 0.9.2 | | | | Copyright (C) 2005-2013, The Roundcube Dev Team | | | diff --git a/program/include/iniset.php b/program/include/iniset.php index ca17640e1..28a2b761b 100644 --- a/program/include/iniset.php +++ b/program/include/iniset.php @@ -21,7 +21,7 @@ */ // application constants -define('RCMAIL_VERSION', '0.9.1'); +define('RCMAIL_VERSION', '0.9.2'); define('RCMAIL_START', microtime(true)); if (!defined('INSTALL_PATH')) { diff --git a/program/lib/Roundcube/bootstrap.php b/program/lib/Roundcube/bootstrap.php index c25d625a4..db61dc21f 100644 --- a/program/lib/Roundcube/bootstrap.php +++ b/program/lib/Roundcube/bootstrap.php @@ -54,7 +54,7 @@ foreach ($config as $optname => $optval) { } // framework constants -define('RCUBE_VERSION', '0.9.1'); +define('RCUBE_VERSION', '0.9.2'); define('RCUBE_CHARSET', 'UTF-8'); if (!defined('RCUBE_LIB_DIR')) { |