From 502436dad02293899fb41a8bd9179f1449236136 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Thu, 29 Sep 2011 03:00:34 -0400 Subject: [PATCH] We're on the road towards 0.7 now --- index.php | 2 +- SQL/sqlite.update.sql | 2 +- SQL/postgres.update.sql | 2 +- SQL/mysql.update.sql | 2 +- program/include/iniset.php | 2 +- SQL/mssql.upgrade.sql | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/SQL/mssql.upgrade.sql b/SQL/mssql.upgrade.sql index b506e5d..70cf34d 100644 --- a/SQL/mssql.upgrade.sql +++ b/SQL/mssql.upgrade.sql @@ -111,7 +111,7 @@ DELETE FROM [dbo].[cache] GO --- Updates from version 0.6-stable +-- Updates from version 0.6 CREATE TABLE [dbo].[dictionary] ( [user_id] [int] , @@ -238,4 +238,4 @@ FOREIGN KEY ([user_id]) REFERENCES [dbo].[users] ([user_id]) ON DELETE CASCADE ON UPDATE CASCADE GO - \ No newline at end of file + diff --git a/SQL/mysql.update.sql b/SQL/mysql.update.sql index 6181622..6604539 100644 --- a/SQL/mysql.update.sql +++ b/SQL/mysql.update.sql @@ -145,7 +145,7 @@ TRUNCATE TABLE `messages`; TRUNCATE TABLE `cache`; --- Updates from version 0.6-stable +-- Updates from version 0.6 ALTER TABLE `users` CHANGE `alias` `alias` varchar(128) BINARY NOT NULL; ALTER TABLE `users` CHANGE `username` `username` varchar(128) BINARY NOT NULL; diff --git a/SQL/postgres.update.sql b/SQL/postgres.update.sql index 7e650af..2935cd4 100644 --- a/SQL/postgres.update.sql +++ b/SQL/postgres.update.sql @@ -101,7 +101,7 @@ TRUNCATE messages; TRUNCATE cache; --- Updates from version 0.6-stable +-- Updates from version 0.6 CREATE TABLE dictionary ( user_id integer DEFAULT NULL diff --git a/SQL/sqlite.update.sql b/SQL/sqlite.update.sql index f7fd168..0193c7c 100644 --- a/SQL/sqlite.update.sql +++ b/SQL/sqlite.update.sql @@ -228,7 +228,7 @@ DELETE FROM cache; CREATE INDEX ix_contactgroupmembers_contact_id ON contactgroupmembers (contact_id); --- Updates from version 0.6-stable +-- Updates from version 0.6 CREATE TABLE dictionary ( user_id integer DEFAULT NULL, diff --git a/index.php b/index.php index fdd412e..6eee0be 100644 --- a/index.php +++ b/index.php @@ -2,7 +2,7 @@ /* +-------------------------------------------------------------------------+ | Roundcube Webmail IMAP Client | - | Version 0.6-svn | + | Version 0.7-svn | | | | Copyright (C) 2005-2011, The Roundcube Dev Team | | | diff --git a/program/include/iniset.php b/program/include/iniset.php index 9c9e2ec..e19ed0b 100755 --- a/program/include/iniset.php +++ b/program/include/iniset.php @@ -37,7 +37,7 @@ } // application constants -define('RCMAIL_VERSION', '0.6-svn'); +define('RCMAIL_VERSION', '0.7-svn'); define('RCMAIL_CHARSET', 'UTF-8'); define('JS_OBJECT_NAME', 'rcmail'); define('RCMAIL_START', microtime(true)); -- Gitblit v1.9.1