# HG changeset patch # User Dan # Date 1197513443 18000 # Node ID f8356d9c3481b7ebb88dbf70637d8f5d2cca4528 # Parent c74736571f4390ef765821d9ba8a0968567b537e Rebrand as 1.0.3 (Dyrad) diff -r c74736571f43 -r f8356d9c3481 ajax.php --- a/ajax.php Wed Dec 12 21:04:20 2007 -0500 +++ b/ajax.php Wed Dec 12 21:37:23 2007 -0500 @@ -2,7 +2,7 @@ /* * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between - * Version 1.0.2 (Coblynau) + * Version 1.0.3 (Dyrad) * Copyright (C) 2006-2007 Dan Fuhry * * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License diff -r c74736571f43 -r f8356d9c3481 cron.php --- a/cron.php Wed Dec 12 21:04:20 2007 -0500 +++ b/cron.php Wed Dec 12 21:37:23 2007 -0500 @@ -2,7 +2,7 @@ /* * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between - * Version 1.0.2 (Coblynau) + * Version 1.0.3 (Dyrad) * Copyright (C) 2006-2007 Dan Fuhry * * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License diff -r c74736571f43 -r f8356d9c3481 includes/common.php --- a/includes/common.php Wed Dec 12 21:04:20 2007 -0500 +++ b/includes/common.php Wed Dec 12 21:37:23 2007 -0500 @@ -2,7 +2,7 @@ /* * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between - * Version 1.0.2 (Coblynau) + * Version 1.0.3 (Dyrad) * Copyright (C) 2006-2007 Dan Fuhry * * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License @@ -37,7 +37,7 @@ // be the expected output of enano_version(), which will always be in the // format of 1.0.2, 1.0.2a1, 1.0.2b1, 1.0.2RC1 // You'll want to change this for custom distributions. -$version = '1.0.2'; +$version = '1.0.3'; /** * Returns a floating-point number with the current UNIX timestamp in microseconds. Defined very early because we gotta call it diff -r c74736571f43 -r f8356d9c3481 includes/dbal.php --- a/includes/dbal.php Wed Dec 12 21:04:20 2007 -0500 +++ b/includes/dbal.php Wed Dec 12 21:37:23 2007 -0500 @@ -2,7 +2,7 @@ /* * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between - * Version 1.0.2 (Coblynau) + * Version 1.0.3 (Dyrad) * Copyright (C) 2006-2007 Dan Fuhry * * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License diff -r c74736571f43 -r f8356d9c3481 includes/functions.php --- a/includes/functions.php Wed Dec 12 21:04:20 2007 -0500 +++ b/includes/functions.php Wed Dec 12 21:37:23 2007 -0500 @@ -2,7 +2,7 @@ /* * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between - * Version 1.0.2 (Coblynau) + * Version 1.0.3 (Dyrad) * Copyright (C) 2006-2007 Dan Fuhry * * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License @@ -1129,7 +1129,8 @@ '1.0.1' => 'Loch Ness', '1.0.1.1'=> 'Loch Ness internal bugfix build', '1.0.2b1'=> 'Coblynau unstable', - '1.0.2' => 'Coblynau' + '1.0.2' => 'Coblynau', + '1.0.3' => 'Dyrad' ); $version = enano_version(); if ( isset($names[$version]) ) diff -r c74736571f43 -r f8356d9c3481 includes/pageutils.php --- a/includes/pageutils.php Wed Dec 12 21:04:20 2007 -0500 +++ b/includes/pageutils.php Wed Dec 12 21:37:23 2007 -0500 @@ -1,7 +1,7 @@ [ Enano CMS Project logo ]

Welcome to Enano

-

version 1.0.2 – stable
+

Version 1.0.3 – stable
also affectionately known as "coblynau" :)

Array('1.0.1.1'), '1.0.1.1' => Array('1.0.2b1') ); -$this_version = '1.0.2'; +$this_version = '1.0.3'; $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 c74736571f43 -r f8356d9c3481 upgrade.sql --- a/upgrade.sql Wed Dec 12 21:04:20 2007 -0500 +++ b/upgrade.sql Wed Dec 12 21:37:23 2007 -0500 @@ -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.2' ); +INSERT INTO {{TABLE_PREFIX}}config (config_name, config_value) VALUES( 'enano_version', '1.0.3' ); +---BEGIN 1.0.2--- +-- No DB changes in this release +---END 1.0.2--- ---BEGIN 1.0.2b1--- -- This is really optional, but could reduce confusion if regex page groups get truncated for no apparent reason. ALTER TABLE {{TABLE_PREFIX}}page_groups MODIFY COLUMN pg_target text DEFAULT NULL;