http://trac.tiddlywiki.org/changeset/9896

FND
2009-06-22 10:18:12 +0000 (Mon, 22 Jun 2009)
29
preparation for 2.5.1 release

---------------

U   Trunk/core/js/Version.js
U   Trunk/verticals/tiddlywiki.com/bld
U   Trunk/verticals/tiddlywiki.com/content/NewFeatures.tiddler
U   Trunk/verticals/tiddlywiki.com/readme.txt
U   Trunk/verticals/tiddlywiki.com/upload
U   Trunk/verticals/tiddlywiki.com/uploaddav

---------------

Modified: Trunk/core/js/Version.js
===================================================================
--- Trunk/core/js/Version.js    2009-06-22 09:39:33 UTC (rev 9895)
+++ Trunk/core/js/Version.js    2009-06-22 10:18:12 UTC (rev 9896)
@@ -1 +1 @@
-var version = {title: "TiddlyWiki", major: 2, minor: 5, revision: 1, beta: 2, 
date: new Date("May 27, 2009"), extensions: {}};
+var version = {title: "TiddlyWiki", major: 2, minor: 5, revision: 1, date: new 
Date("June 22, 2009"), extensions: {}};

Modified: Trunk/verticals/tiddlywiki.com/bld
===================================================================
--- Trunk/verticals/tiddlywiki.com/bld  2009-06-22 09:39:33 UTC (rev 9895)
+++ Trunk/verticals/tiddlywiki.com/bld  2009-06-22 10:18:12 UTC (rev 9896)
@@ -1,5 +1,5 @@
 #!/bin/bash
-DEFAULT_RELEASE=2.5.0
+DEFAULT_RELEASE=2.5.1
 RELEASE=${1:-$DEFAULT_RELEASE}
 DEST=$PWD/../../../cooked/tiddlywiki.com
 mkdir $PWD/../../../cooked

Modified: Trunk/verticals/tiddlywiki.com/content/NewFeatures.tiddler
===================================================================
--- Trunk/verticals/tiddlywiki.com/content/NewFeatures.tiddler  2009-06-22 
09:39:33 UTC (rev 9895)
+++ Trunk/verticals/tiddlywiki.com/content/NewFeatures.tiddler  2009-06-22 
10:18:12 UTC (rev 9896)
@@ -1,7 +1,13 @@
 <div title="NewFeatures" modifier="Osmosoft" created="200903090000">
-<pre>Release 2.5.0 of TiddlyWiki is the first to include the 
[[jQuery|http://jquery.com/]] library.
-There are no changes to the core other than the inclusion of the jQuery 
library: the intention is that release 2.5.0 is a baseline from which we can 
both refactor and add functionality based on jQuery.
-
-See [[jQuery roadmap|http://tiddlywiki.org/wiki/Dev:Roadmap]] for details 
about how we are planning to use jQuery in the future.
+<pre>Release 2.5.1 of TiddlyWiki contains several usability enhancements and 
bug fixes.
+These include:
+* Improved separators and "more/less" extenders for toolbars
+* Added plugin version information to the PluginManager
+* Fixed //Tags// macro to respect the //excludeLists// tag
+* Fixed problem with saving of extended tiddler fields
+It also starts the process of refactoring useful parts of TiddlyWiki's 
functionality into generic jQuery plugins that can be reused in other projects:
+* [[jQuery.twFile|http://jquery.tiddlywiki.org/twFile.html]] - Access to the 
local filing system for HTML files loaded from a file:// URL
+* [[jQuery.twStylesheet|http://jquery.tiddlywiki.org/twStylesheet.html]] - 
Dynamic style-sheet handling
+* 
[[jQuery.encoding.digests.sha1|http://jquery.tiddlywiki.org/encoding.digests.sha1.html]]
 - Cryptographic signing code
 </pre>
 </div>

Modified: Trunk/verticals/tiddlywiki.com/readme.txt
===================================================================
--- Trunk/verticals/tiddlywiki.com/readme.txt   2009-06-22 09:39:33 UTC (rev 
9895)
+++ Trunk/verticals/tiddlywiki.com/readme.txt   2009-06-22 10:18:12 UTC (rev 
9896)
@@ -10,6 +10,17 @@
 The script "bld" can be used to cook these recipes.
 Files are created in /cooked.
 
+In preparation for a release, the following steps need to be taken:
+* set version number in Trunk/core/js/Version.js
+* create recipe in Trunk/core/recipes/
+* if applicable, update copyright notices (in core/html/copyright.txt and
+  verticals/tiddlywiki.com/shadows/MainMenu.tiddler)
+* update build and upload scripts to use the respective version number
+* update tiddlywiki.com vertical's recipes
+* update tiddlywiki.com vertical's NewFeatures tiddler
+* tag release to Tags/core/:
+  svn copy http://svn.tiddlywiki.org/Trunk/core 
http://svn.tiddlywiki.org/Tags/core/REL-2.4.2_Final
+
 After building, the "index" document needs to be saved in the browser once to
 set the title and generate the RSS feed.
 
@@ -24,17 +35,5 @@
 Alternatively, the script "uploaddav" can be used, which only requires a single
 password prompt.
 
-Note:
-In preparation for a release, the following steps need to be taken:
-* set version number in Trunk/core/js/Version.js
-* create recipe in Trunk/core/recipes/
-* if applicable, update copyright notices (in core/html/copyright.txt and
-  verticals/tiddlywiki.com/shadows/MainMenu.tiddler)
-* update build and upload scripts to use the respective version number
-* update tiddlywiki.com vertical's recipes
-* update tiddlywiki.com vertical's NewFeatures tiddler
-* tag release to Tags/core/:
-  svn copy http://svn.tiddlywiki.org/Trunk/core 
http://svn.tiddlywiki.org/Tags/core/REL-2.4.2_Final
-
 Immediately after a release, the version number should be increased and marked
 as alpha.

Modified: Trunk/verticals/tiddlywiki.com/upload
===================================================================
--- Trunk/verticals/tiddlywiki.com/upload       2009-06-22 09:39:33 UTC (rev 
9895)
+++ Trunk/verticals/tiddlywiki.com/upload       2009-06-22 10:18:12 UTC (rev 
9896)
@@ -4,7 +4,7 @@
 #  upload [release] [user] [cleanup]
 
 # default values
-DEFAULT_RELEASE="2.5.0"
+DEFAULT_RELEASE="2.5.1"
 RELEASE=${1:-$DEFAULT_RELEASE}
 REMOTE_USER=${2:-$USER}
 DEST=$PWD/../../../cooked/tiddlywiki.com

Modified: Trunk/verticals/tiddlywiki.com/uploaddav
===================================================================
--- Trunk/verticals/tiddlywiki.com/uploaddav    2009-06-22 09:39:33 UTC (rev 
9895)
+++ Trunk/verticals/tiddlywiki.com/uploaddav    2009-06-22 10:18:12 UTC (rev 
9896)
@@ -4,7 +4,7 @@
 #  uploadbeta [release] [cleanup]
 
 # default values
-DEFAULT_RELEASE="2.5.0"
+DEFAULT_RELEASE="2.5.1"
 RELEASE=${1:-$DEFAULT_RELEASE}
 HOST="webdav.tiddlywiki.com"
 USER="releasemanager"

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWikiDev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWikiDev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to