From 6ae6e41fb32ca544ed29681d18130ba2c9c344fd Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Thu, 17 May 2007 16:15:24 -0400
Subject: [PATCH] Updated description files and version info

---
 CHANGELOG              |    6 +++++-
 index.php              |    4 ++--
 INSTALL                |    5 +++--
 SQL/mysql.initial.sql  |    2 +-
 SQL/sqlite.initial.sql |    2 +-
 5 files changed, 12 insertions(+), 7 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index 0275606..1d5110f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -3,11 +3,15 @@
 
 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/INSTALL b/INSTALL
index 0d56bb6..d3518ed 100644
--- a/INSTALL
+++ b/INSTALL
@@ -42,7 +42,7 @@
 # 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 @@
 # 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 @@
 
 UPGRADING
 =========
+
 If you already have a previous version of RoundCube installed,
 please refer to the instructions in UPGRADING guide.
 
diff --git a/SQL/mysql.initial.sql b/SQL/mysql.initial.sql
index c97b9d7..4a92734 100644
--- a/SQL/mysql.initial.sql
+++ b/SQL/mysql.initial.sql
@@ -1,5 +1,5 @@
 -- RoundCube Webmail initial database structure
--- Version 0.1-beta2
+-- Version 0.1-rc1
 -- 
 
 -- --------------------------------------------------------
diff --git a/SQL/sqlite.initial.sql b/SQL/sqlite.initial.sql
index 5be6978..fd2a22f 100644
--- a/SQL/sqlite.initial.sql
+++ b/SQL/sqlite.initial.sql
@@ -1,5 +1,5 @@
 -- RoundCube Webmail initial database structure
--- Version 0.1-beta2
+-- Version 0.1-rc1
 -- 
 
 -- --------------------------------------------------------
diff --git a/index.php b/index.php
index f62e9eb..d5aa95e 100644
--- a/index.php
+++ b/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');
 

--
Gitblit v1.9.1