From 39401b2e279e46db0e0d1bf814834c9195717e81 Mon Sep 17 00:00:00 2001 From: "alextselegidis@gmail.com" Date: Sat, 4 Jan 2014 19:14:24 +0000 Subject: [PATCH] Corrections on the migration algorithm. --- release-notes.txt | 13 ++++++++----- src/application/config/config.php | 2 +- src/application/language/german/migration_lang.php | 13 +++++++++++++ src/application/language/greek/migration_lang.php | 13 +++++++++++++ .../language/hungarian/migration_lang.php | 13 +++++++++++++ .../migrations/001_specific_calendar_sync.php | 10 ++-------- 6 files changed, 50 insertions(+), 14 deletions(-) create mode 100644 src/application/language/german/migration_lang.php create mode 100644 src/application/language/greek/migration_lang.php create mode 100644 src/application/language/hungarian/migration_lang.php diff --git a/release-notes.txt b/release-notes.txt index 082b6d1c..0cdc1cb6 100644 --- a/release-notes.txt +++ b/release-notes.txt @@ -1,8 +1,9 @@ -VERSION 1.0 -=========== -The first major release will include translated interface (English, -Greek, German) and the user will also be able to select a specific -calendar for synchronization. +VERSION 0.7.1 Beta +================== +This beta release contains fixes in JavaScript that occured +with Firefox. It is also the first version that localization +is applied and the ability to select a specific google calendar +for synchronizatioan. Official Easy!Appointments Website: @@ -14,4 +15,6 @@ https://plus.google.com/communities/105333709485142846840 Visit the Support Group for any help on the project: http://groups.google.com/group/easy-appointments +E!A Blog for news and information: +http://easyappointments.wordpress.com \ No newline at end of file diff --git a/src/application/config/config.php b/src/application/config/config.php index e9b51cd3..e74b2045 100644 --- a/src/application/config/config.php +++ b/src/application/config/config.php @@ -87,7 +87,7 @@ $config['url_suffix'] = ''; | */ $config['language'] = 'english'; // default language -$config['available_languages'] = array('english', 'german', 'greek', 'hungarian'); +$config['available_languages'] = array('english', 'german', 'greek'); /* |-------------------------------------------------------------------------- diff --git a/src/application/language/german/migration_lang.php b/src/application/language/german/migration_lang.php new file mode 100644 index 00000000..f17530f0 --- /dev/null +++ b/src/application/language/german/migration_lang.php @@ -0,0 +1,13 @@ + array( 'type' => 'VARCHAR', 'constraint' => '128', - 'default' => 'null') + 'null' => TRUE) ); $this->dbforge->add_column('ea_user_settings', $fields); @@ -16,10 +16,4 @@ class Migration_Specific_calendar_sync extends CI_Migration { public function down() { $this->dbforge->drop_column('ea_user_settings', 'google_calendar'); } -} - -/* - * This migration class adds the "google_calendar" field to the database - * "user_settings" table in order to be able to select a specific calendar - * for google synchronization. - */ \ No newline at end of file +} \ No newline at end of file