summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2007-05-17 20:15:24 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2007-05-17 20:15:24 +0000
commit6015e4d8f2cfe8ff6c0a2337d4976c0534c5138c (patch)
tree2351dc8f378fe316ef358d121c57af0d0c4e8b4d
parent3dc2d263d4eb13f3cafbb66fa7d5d7c271f684b9 (diff)
Updated description files and version info
git-svn-id: https://svn.roundcube.net/trunk@571 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/CHANGELOG6
-rw-r--r--roundcubemail/INSTALL5
-rw-r--r--roundcubemail/SQL/mysql.initial.sql2
-rw-r--r--roundcubemail/SQL/sqlite.initial.sql2
-rw-r--r--roundcubemail/index.php4
5 files changed, 12 insertions, 7 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG
index 0275606cf..1d5110fea 100644
--- a/roundcubemail/CHANGELOG
+++ b/roundcubemail/CHANGELOG
@@ -3,11 +3,15 @@ CHANGELOG RoundCube Webmail
2007/05/17 (thomasb)
----------
-- Updated Catalan, Russian, Portuguese and Chinese translations
+- Updated Catalan, Russian, Portuguese, Slovak and Chinese translations
- Renamed localization folder for Chinese (Big5)
- Chanegd Slovenian language code from 'si' to 'sl'
- Added Sinhala (Sri-Lanka) localization
- Use global filters and bind username/ for Ldap searches (#1484159)
+- Hide quota display if imap server does not support it
+- Hide address groups if no LDAP servers configured
+- Add link to message subjects (closes #1484257)
+- Better SQL query for contact listing/search (closes #1484369)
2007/05/13 (thomasb)
diff --git a/roundcubemail/INSTALL b/roundcubemail/INSTALL
index 0d56bb60e..d3518ed93 100644
--- a/roundcubemail/INSTALL
+++ b/roundcubemail/INSTALL
@@ -42,7 +42,7 @@ roundcube user. Here is an example of that procedure:
# mysql
> CREATE DATABASE roundcubemail;
> GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost
- IDENTIFIED BY 'password';
+ IDENTIFIED BY 'password';
> quit
# mysql roundcubemail < SQL/mysql.initial.sql
@@ -55,7 +55,7 @@ RoundCube with utf-8 charset. Here's an example of the init procedure:
# mysql
> CREATE DATABASE roundcubemail DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
> GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost
- IDENTIFIED BY 'password';
+ IDENTIFIED BY 'password';
> quit
# mysql roundcubemail < SQL/mysql5.initial.sql
@@ -106,6 +106,7 @@ Details about the config paramaters can be found in the config files.
UPGRADING
=========
+
If you already have a previous version of RoundCube installed,
please refer to the instructions in UPGRADING guide.
diff --git a/roundcubemail/SQL/mysql.initial.sql b/roundcubemail/SQL/mysql.initial.sql
index c97b9d79e..4a92734d5 100644
--- a/roundcubemail/SQL/mysql.initial.sql
+++ b/roundcubemail/SQL/mysql.initial.sql
@@ -1,5 +1,5 @@
-- RoundCube Webmail initial database structure
--- Version 0.1-beta2
+-- Version 0.1-rc1
--
-- --------------------------------------------------------
diff --git a/roundcubemail/SQL/sqlite.initial.sql b/roundcubemail/SQL/sqlite.initial.sql
index 5be69785a..fd2a22f77 100644
--- a/roundcubemail/SQL/sqlite.initial.sql
+++ b/roundcubemail/SQL/sqlite.initial.sql
@@ -1,5 +1,5 @@
-- RoundCube Webmail initial database structure
--- Version 0.1-beta2
+-- Version 0.1-rc1
--
-- --------------------------------------------------------
diff --git a/roundcubemail/index.php b/roundcubemail/index.php
index f62e9ebce..d5aa95e0e 100644
--- a/roundcubemail/index.php
+++ b/roundcubemail/index.php
@@ -2,7 +2,7 @@
/*
+-----------------------------------------------------------------------+
| RoundCube Webmail IMAP Client |
- | Version 0.1-20070428 |
+ | Version 0.1-20070517 |
| |
| Copyright (C) 2005-2007, RoundCube Dev. - Switzerland |
| Licensed under the GNU GPL |
@@ -41,7 +41,7 @@
*/
// application constants
-define('RCMAIL_VERSION', '0.1-20070428');
+define('RCMAIL_VERSION', '0.1-20070517');
define('RCMAIL_CHARSET', 'UTF-8');
define('JS_OBJECT_NAME', 'rcmail');