# HG changeset patch # User Dan # Date 1189550139 14400 # Node ID 0b5244001799fa29e83bf06c5f14eb69350f171c # Parent 01955bf53f9678f741c6f935f1242a4c19edc081 Rebranded as 1.0.1.1; fixed category page drawing bug; updated link to GPL in the about page to the GPLv2 diff -r 01955bf53f96 -r 0b5244001799 includes/common.php --- a/includes/common.php Sat Sep 08 22:58:38 2007 -0400 +++ b/includes/common.php Tue Sep 11 18:35:39 2007 -0400 @@ -23,7 +23,7 @@ exit; } -$version = '1.0.1'; +$version = '1.0.1.1'; function microtime_float() { diff -r 01955bf53f96 -r 0b5244001799 includes/functions.php --- a/includes/functions.php Sat Sep 08 22:58:38 2007 -0400 +++ b/includes/functions.php Tue Sep 11 18:35:39 2007 -0400 @@ -674,7 +674,7 @@ echo ''; echo ''; $counter = 0; - $ticker = 0; + $ticker = -1; $switched = true; } $counter++; @@ -706,7 +706,7 @@ if ( $counter > 0 ) { // Fill-in - while ( $ticker < 3 ) + while ( $ticker < 2 ) { $ticker++; echo ''; @@ -728,7 +728,7 @@ if ( $counter > 0 ) { // Fill-in - while ( $ticker < 3 ) + while ( $ticker < 2 ) { $ticker++; echo ''; diff -r 01955bf53f96 -r 0b5244001799 install.php --- a/install.php Sat Sep 08 22:58:38 2007 -0400 +++ b/install.php Tue Sep 11 18:35:39 2007 -0400 @@ -23,7 +23,7 @@ define('IN_ENANO_INSTALL', 'true'); -define('ENANO_VERSION', '1.0.1'); +define('ENANO_VERSION', '1.0.1.1'); // In beta versions, define ENANO_BETA_VERSION here if(!defined('scriptPath')) { @@ -315,7 +315,7 @@
[ Enano CMS Project logo ]

Welcome to Enano

-

version 1.0.1 – stable
+

version 1.0.1.1 – stable
also affectionately known as "loch ness" :)

Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor
Boston, MA 02110-1301, USA

-

Alternatively, you can read it online.

+

Alternatively, you can read it online.

diff -r 01955bf53f96 -r 0b5244001799 upgrade.php --- a/upgrade.php Sat Sep 08 22:58:38 2007 -0400 +++ b/upgrade.php Tue Sep 11 18:35:39 2007 -0400 @@ -61,7 +61,7 @@ // Everything related to versions goes here! // Valid versions to upgrade from -$valid_versions = Array('1.0b1', '1.0b2', '1.0b3', '1.0b4', '1.0RC1', '1.0RC2', '1.0RC3', '1.0'); +$valid_versions = Array('1.0b1', '1.0b2', '1.0b3', '1.0b4', '1.0RC1', '1.0RC2', '1.0RC3', '1.0', '1.0.1'); // Basically a list of dependencies, which should be resolved automatically // If, for example, upgrading from 1.0b1 to 1.0RC1 requires one extra query that would not @@ -73,9 +73,10 @@ '1.0b4' => Array('1.0RC1'), '1.0RC1' => Array('1.0RC2'), '1.0RC2' => Array('1.0RC3'), - '1.0RC3' => Array('1.0') + '1.0RC3' => Array('1.0'), + '1.0' => Array('1.0.1') ); -$this_version = '1.0.1'; +$this_version = '1.0.1.1'; $func_list = Array( '1.0' => Array('u_1_0_1_update_del_votes'), '1.0b4' => Array('u_1_0_RC1_update_user_ids', 'u_1_0_RC1_add_admins_to_group', 'u_1_0_RC1_alter_files_table', 'u_1_0_RC1_destroy_session_cookie', 'u_1_0_RC1_set_contact_email', 'u_1_0_RC1_update_page_text'), // , diff -r 01955bf53f96 -r 0b5244001799 upgrade.sql --- a/upgrade.sql Sat Sep 08 22:58:38 2007 -0400 +++ b/upgrade.sql Tue Sep 11 18:35:39 2007 -0400 @@ -3,7 +3,10 @@ -- ALL NON-SQL LINES, even otherwise blank lines, must start with "--" or they will get sent to MySQL! -- Common tasks (version numbers) DELETE FROM {{TABLE_PREFIX}}config WHERE config_name='enano_version' OR config_name='enano_beta_version' OR config_name='enano_alpha_version' OR config_name='enano_rc_version'; -INSERT INTO {{TABLE_PREFIX}}config (config_name, config_value) VALUES( 'enano_version', '1.0.1' ); +INSERT INTO {{TABLE_PREFIX}}config (config_name, config_value) VALUES( 'enano_version', '1.0.1.1' ); +---BEGIN 1.0.1--- +-- No changes in this release +---END 1.0.1--- ---BEGIN 1.0--- -- Fix for obnoxious $_GET issue UPDATE {{TABLE_PREFIX}}sidebar SET block_type=1,block_content='

$INPUT_AUTH$

' WHERE block_name='Search' AND item_id=4;