Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Version 1.0.5 beta 1
  • Loading branch information
ginatrapani committed May 2, 2012
1 parent c56f760 commit afebd2c
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 7 deletions.
16 changes: 16 additions & 0 deletions docs/source/changelog/1.0.5-beta.1.rst
@@ -0,0 +1,16 @@
1.0.5-beta.1 - 1 May 2012
=========================

Changelog:


* Bugfix: Restore Export link on Facebook and Google+ All Posts list
* Bugfix: Fix missing Followers and Post Types and Client Usage charts on the dashboard
* Bugfix: Avoid file_exists basedir restriction error in init.php
* Bugfix: On the Twitter Plugin setting screen, when the hostname is localhost, show 127.0.0.1 instead for
Twitter.com compatibility
* Bugfix: During Google+ crawl, avoid Property of non-object PHP warning when object is not set
* Bugfix: Clean up unnecessary CSS and tweak look of buttons and alerts
* Improve commenting and default settings in sample config file
* Developer bugfix: Make all test data files Windows compatible

1 change: 1 addition & 0 deletions docs/source/changelog/index.rst
Expand Up @@ -6,6 +6,7 @@ Check out what's new, fixed, and updated in each version release of ThinkUp.
.. toctree::
:maxdepth: 1

1.0.5-beta.1
1.0.4
1.0.3
1.0.2
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '1.0.4'
version = '1.0.5-beta.1'
# The full version, including alpha/beta/rc tags.
release = '1.0.4'
release = '1.0.5-beta.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 7 additions & 1 deletion tests/migration-assertions.php
Expand Up @@ -29,7 +29,7 @@
*
* Database migration assertions to test during WebTestOfUpgradeDatabase
*/
$LATEST_VERSION = '1.0.4';
$LATEST_VERSION = '1.0.5-beta.1';
$TOTAL_MIGRATION_COUNT = 218;

$MIGRATIONS = array(
Expand Down Expand Up @@ -804,6 +804,12 @@

/* 1.0.4 */
'1.0.4' => array(
'zip_url' => 'https://github.com/downloads/ginatrapani/ThinkUp/thinkup_1.0.4.zip',
'migrations' => 0,
),

/* 1.0.5-beta.1 */
'1.0.5-beta.1' => array(
'zip_url' => 'file://./build/thinkup.zip',
'migrations' => 0,
),
Expand Down
6 changes: 3 additions & 3 deletions webapp/install/sql/build-db_mysql.sql
@@ -1,6 +1,6 @@
--
-- ThinkUp Database Creation Script
-- Auto-generated by thinkup/extras/scripts/migratedb script on 2012-03-25
-- Auto-generated by thinkup/extras/scripts/migratedb script on 2012-05-01
--

ALTER DATABASE DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
Expand Down Expand Up @@ -481,13 +481,13 @@ CREATE TABLE tu_users (
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Service user details.';


-- Dump completed on 2012-03-25 21:59:27
-- Dump completed on 2012-05-01 19:23:15

--
-- Insert DB Version
--
INSERT INTO tu_options (namespace, option_name, option_value, last_updated, created)
VALUES ('application_options', 'database_version', '1.0.4', NOW(), NOW());
VALUES ('application_options', 'database_version', '1.0.5-beta.1', NOW(), NOW());

--
-- Insert default plugin(s)
Expand Down
2 changes: 1 addition & 1 deletion webapp/install/version.php
Expand Up @@ -26,6 +26,6 @@
* @license http://www.gnu.org/licenses/gpl.html
* @copyright 2009-2012 Dwi Widiastuti, Gina Trapani, Guillaume Boudreau
*/
$THINKUP_VERSION = '1.0.4';
$THINKUP_VERSION = '1.0.5-beta.1';
$THINKUP_VERSION_REQUIRED['php'] = '5.2';
$THINKUP_VERSION_REQUIRED['mysql'] = '5';

0 comments on commit afebd2c

Please sign in to comment.