Rebranded as 1.0.1.1; fixed category page drawing bug; updated link to GPL in the about page to the GPLv2
authorDan
Tue, 11 Sep 2007 18:35:39 -0400
changeset 129 0b5244001799
parent 128 01955bf53f96
child 130 c4ce1640e1f4
Rebranded as 1.0.1.1; fixed category page drawing bug; updated link to GPL in the about page to the GPLv2
includes/common.php
includes/functions.php
install.php
plugins/SpecialPageFuncs.php
upgrade.php
upgrade.sql
--- 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()
 {
--- 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 '<table border="0" cellspacing="1" cellpadding="4">';
         echo '<tr>';
         $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 '<td class="' . $class . '" style="width: 33.3%;"></td>';
@@ -728,7 +728,7 @@
     if ( $counter > 0 )
     {
       // Fill-in
-      while ( $ticker < 3 )
+      while ( $ticker < 2 )
       {
         $ticker++;
         echo '<td class="' . $class . '" style="width: 33.3%;"></td>';
--- 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 @@
     <div style="text-align: center; margin-top: 10px;">
       <img alt="[ Enano CMS Project logo ]" src="images/enano-artwork/installer-greeting-blue.png" style="display: block; margin: 0 auto; padding-left: 100px;" />
       <h2>Welcome to Enano</h2>
-      <h3>version 1.0.1 &ndash; stable<br />
+      <h3>version 1.0.1.1 &ndash; stable<br />
       <span style="font-weight: normal;">also affectionately known as "loch ness" <tt>:)</tt></span></h3>
       <?php
       if ( file_exists('./_nightly.php') )
--- a/plugins/SpecialPageFuncs.php	Sat Sep 08 22:58:38 2007 -0400
+++ b/plugins/SpecialPageFuncs.php	Tue Sep 11 18:35:39 2007 -0400
@@ -383,7 +383,7 @@
       <p style="margin-left 2em;">Free Software Foundation, Inc.,<br />
          51 Franklin Street, Fifth Floor<br />
          Boston, MA 02110-1301, USA</p>
-      <p>Alternatively, you can <a href="http://www.gnu.org/copyleft/gpl.html">read it online</a>.</p>
+      <p>Alternatively, you can <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.html">read it online</a>.</p>
       </td></tr>
       <tr>
         <td class="row2" colspan="2">
--- 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'), // ,
--- 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='<div class="slideblock2" style="padding: 0px;"><form action="$CONTENTPATH$$NS_SPECIAL$Search" method="get" style="padding: 0; margin: 0;"><p><input type="hidden" name="title" value="$NS_SPECIAL$Search" />$INPUT_AUTH$<input name="q" alt="Search box" type="text" size="10" style="width: 70%" /> <input type="submit" value="Go" style="width: 20%" /></p></form></div>' WHERE block_name='Search' AND item_id=4;