thomascube
2011-09-29 502436dad02293899fb41a8bd9179f1449236136
We're on the road towards 0.7 now

6 files modified
14 ■■■■ changed files
SQL/mssql.upgrade.sql 4 ●●●● patch | view | raw | blame | history
SQL/mysql.update.sql 2 ●●● patch | view | raw | blame | history
SQL/postgres.update.sql 2 ●●● patch | view | raw | blame | history
SQL/sqlite.update.sql 2 ●●● patch | view | raw | blame | history
index.php 2 ●●● patch | view | raw | blame | history
program/include/iniset.php 2 ●●● patch | view | raw | blame | history
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
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;
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
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,
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                         |
 |                                                                         |
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));