Bump version to 1.2.0 (stable)

pull/5754/head
Thomas Bruederli 8 years ago
parent bd13f92ffb
commit d2e2a8f32e

@ -1,6 +1,8 @@
CHANGELOG Roundcube Webmail
===========================
RELEASE 1.2.0
-------------
- Enigma: Added enigma_debug option
- Fix message list multi-select/deselect issue (#5219)
- Fix bug where getting HTML editor content could steal focus from other form controls (#5223)

@ -3,14 +3,6 @@ Roundcube Webmail
[roundcube.net](http://roundcube.net)
ATTENTION
---------
This is just a snapshot from the GIT repository and is **NOT A STABLE
version of Roundcube**. It's not recommended to replace an existing installation
of Roundcube with this version. Also using a separate database for this
installation is highly recommended.
INTRODUCTION
------------
Roundcube Webmail is a browser-based multilingual IMAP client with an

@ -2,9 +2,9 @@
/**
+-------------------------------------------------------------------------+
| Roundcube Webmail IMAP Client |
| Version 1.2-git |
| Version 1.2.0 |
| |
| Copyright (C) 2005-2015, The Roundcube Dev Team |
| Copyright (C) 2005-2016, The Roundcube Dev Team |
| |
| This program is free software: you can redistribute it and/or modify |
| it under the terms of the GNU General Public License (with exceptions |

@ -3,9 +3,9 @@
/**
+-------------------------------------------------------------------------+
| Roundcube Webmail setup tool |
| Version 1.2-git |
| Version 1.2.0 |
| |
| Copyright (C) 2009-2015, The Roundcube Dev Team |
| Copyright (C) 2009-2016, The Roundcube Dev Team |
| |
| This program is free software: you can redistribute it and/or modify |
| it under the terms of the GNU General Public License (with exceptions |

@ -5,7 +5,7 @@
| program/include/iniset.php |
| |
| This file is part of the Roundcube Webmail client |
| Copyright (C) 2008-2015, The Roundcube Dev Team |
| Copyright (C) 2008-2016, The Roundcube Dev Team |
| |
| Licensed under the GNU General Public License version 3 or |
| any later version with exceptions for skins & plugins. |
@ -21,7 +21,7 @@
*/
// application constants
define('RCMAIL_VERSION', '1.2-git');
define('RCMAIL_VERSION', '1.2.0');
define('RCMAIL_START', microtime(true));
if (!defined('INSTALL_PATH')) {

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

Loading…
Cancel
Save