Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Version 1.0.5
  • Loading branch information
ginatrapani committed May 5, 2012
1 parent dbeef07 commit 7163e4d
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 7 deletions.
25 changes: 25 additions & 0 deletions docs/source/changelog/1.0.5.rst
@@ -0,0 +1,25 @@
1.0.5 - 4 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 Expand URLs capture, correctly handle relative redirects
* Bugfix: During Google+ crawl, avoid Property of non-object PHP warning when object is not set
* Bugfix: Remove unnecessary CSS, tweak look of buttons and alerts, fix unstyled views and buttons
* Bugfix: Make web upgrader code compatible with PHPFog server restrictions
* Improve commenting and default settings in sample config file
* Rename status bar's "Update Now" button to "Capture Data"
* Developer bugfix: Make all test data files Windows compatible

.. Note:: This release fixed a bug in the Expand URLs plugin which incorrectly marked some short URLs as invalid. To
force ThinkUp to retry expanding these URLs correctly, in your ThinkUp database run the following SQL:
`UPDATE tu_links SET error='' where error = 'Invalid URL - relocates to nowhere'`



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

# 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';
$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 */
'1.0.5' => 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-05
--

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-05 14:52:22

--
-- 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', 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';
$THINKUP_VERSION_REQUIRED['php'] = '5.2';
$THINKUP_VERSION_REQUIRED['mysql'] = '5';

0 comments on commit 7163e4d

Please sign in to comment.