Skip to content

Commit

Permalink
Version 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ginatrapani committed Mar 26, 2012
1 parent 7beb29d commit c4ac728
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 9 deletions.
23 changes: 23 additions & 0 deletions docs/source/changelog/1.0.4.rst
@@ -0,0 +1,23 @@
1.0.4 - 25 Mar 2012
===================

Changelog:


* New feature: Ability to upgrade ThinkUp's application code to its latest version in-app
* New feature: Ability to opt into a beta channel for testers to preview new features before their stable release
* Bugfix: Convert Google image charts to interactive charts for null value interpolation on line charts and dynamic
rollovers
* Bugfix: Avoid PHP Notice during Bitly link crawl
* Bugfix: Restore Google+ post search
* Bugfix: Avoid Database error while saving post errors
* Bugfix: Avoid PHP Fatal Error during user data export
* Bugfix: Don't assume default database table prefix during short link processing
* Bugfix: During installation, re-enable user ability to touch empty config file and proceed through installation
* Bugfix: Restore Twitter app name and Facebook URL in plugin setup pages when they're not configured
* Bugfix: Update views using old design elements
* Bugfix: Correctly obtain Facebook link final redirect destinations
* Bugfix: Correct outdated instructions for obtaining a Google Maps API key for the Geoencoder plugin
* Bugfix: Gracefully handle URLs which expand to empty strings in Expand URLs plugin
* Bugfix: Add instructions on how to get clickthrough rates in Expand URLs

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.4
1.0.3
1.0.2
1.0.1
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.3'
version = '1.0.4'
# The full version, including alpha/beta/rc tags.
release = '1.0.3'
release = '1.0.4'

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

$MIGRATIONS = array(
Expand Down Expand Up @@ -755,7 +755,7 @@

/* 1.0.3 */
'1.0.3' => array(
'zip_url' => 'file://./build/thinkup.zip',
'zip_url' => 'https://github.com/downloads/ginatrapani/ThinkUp/thinkup_1.0.3.zip',
'migrations' => 1,
'migration_assertions' => array(
'sql' => array(
Expand Down Expand Up @@ -800,5 +800,12 @@
),
)
)
)
),

/* 1.0.4 */
'1.0.4' => array(
'zip_url' => 'file://./build/thinkup.zip',
'migrations' => 0,
),

);
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-23
-- Auto-generated by thinkup/extras/scripts/migratedb script on 2012-03-25
--

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-23 18:49:43
-- Dump completed on 2012-03-25 21:59:27

--
-- Insert DB Version
--
INSERT INTO tu_options (namespace, option_name, option_value, last_updated, created)
VALUES ('application_options', 'database_version', '1.0.3', NOW(), NOW());
VALUES ('application_options', 'database_version', '1.0.4', 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.3';
$THINKUP_VERSION = '1.0.4';
$THINKUP_VERSION_REQUIRED['php'] = '5.2';
$THINKUP_VERSION_REQUIRED['mysql'] = '5';

0 comments on commit c4ac728

Please sign in to comment.