From 5e08cdee175d09687b5d3ee4931b8483dc93d4fe Mon Sep 17 00:00:00 2001 From: Jason Stirk Date: Sun, 18 Oct 2009 23:23:48 +1100 Subject: [PATCH] Revision bump --- CHANGES.rdoc | 46 +++++++++++++++++++++++++++++ README.rdoc | 46 ++--------------------------- simple_product_manager_extension.rb | 2 +- 3 files changed, 49 insertions(+), 45 deletions(-) create mode 100644 CHANGES.rdoc diff --git a/CHANGES.rdoc b/CHANGES.rdoc new file mode 100644 index 0000000..f26e355 --- /dev/null +++ b/CHANGES.rdoc @@ -0,0 +1,46 @@ +== Version 0.8.1 (18 Oct 2009) +* Product Images can now be sorted, and are returned in sequence + +=== Version 0.8 (13 Oct 2009) +* Courtesy of code provided by Yves-Eric Martin : +* Added if_self and unless_self for product and categories +* Added category:if_ancestor_or_self and :unless_ancestor_or_self + +=== Version 0.7 (30 Sep 2009) +* Added tags and same for + +=== Version 0.6 (26 Sep 2009) +* Products and Categories can be arbitrarily ordered by the admin + +=== Version 0.5.2 (22 Sep 2009) +* Product Images can now be tagged +* Moved repository under the http://www.github.com/aurorasoft user + +=== Version 0.5.1 (21 Sep 2009) +* Bugfix with Category and Product links not always selecting correctly +* Cleaned up url code (possibly leading into customizable product root) + +=== Version 0.5 (21 Sep 2009) +* Relevant Category:link and Product:link tags now include a "selected" class when used on generated pages +* Product image sizes can be changed, and referenced by + +=== Version 0.4.2 (18 Sep 2009) +* Added ability to attach multiple images to a product + +=== Version 0.4.1 (18 Sep 2009) +* Added custom layouts selected at Category level + +=== Version 0.4 (17 Sep 2009) +* Added subcategory support, and subcategory tags +* Added support for public Category and Product pages +* Added custom field support + +=== Version 0.3 (26 Aug 2009) +* Added ability to tag Categories + +=== Version 0.2 (15 Aug 2009) +* Updated to work with Radiant-0.8.0 + +=== Version 0.1 +* Original version by Jason Stirk - http://griffin.oobleyboo.com/ + diff --git a/README.rdoc b/README.rdoc index 08608ab..fed64c3 100644 --- a/README.rdoc +++ b/README.rdoc @@ -86,7 +86,7 @@ they do not recurse down into sub-Categories. ... - ... + ... @@ -209,49 +209,7 @@ NOTE: This example assumes no subcategories * Tag definitions need some major cleanup work == History - -=== Version 0.8 (13 Oct 2009) -* Courtesy of code provided by Yves-Eric Martin : -* Added if_self and unless_self for product and categories -* Added category:if_ancestor_or_self and :unless_ancestor_or_self - -=== Version 0.7 (30 Sep 2009) -* Added tags and same for - -=== Version 0.6 (26 Sep 2009) -* Products and Categories can be arbitrarily ordered by the admin - -=== Version 0.5.2 (22 Sep 2009) -* Product Images can now be tagged -* Moved repository under the http://www.github.com/aurorasoft user - -=== Version 0.5.1 (21 Sep 2009) -* Bugfix with Category and Product links not always selecting correctly -* Cleaned up url code (possibly leading into customizable product root) - -=== Version 0.5 (21 Sep 2009) -* Relevant Category:link and Product:link tags now include a "selected" class when used on generated pages -* Product image sizes can be changed, and referenced by - -=== Version 0.4.2 (18 Sep 2009) -* Added ability to attach multiple images to a product - -=== Version 0.4.1 (18 Sep 2009) -* Added custom layouts selected at Category level - -=== Version 0.4 (17 Sep 2009) -* Added subcategory support, and subcategory tags -* Added support for public Category and Product pages -* Added custom field support - -=== Version 0.3 (26 Aug 2009) -* Added ability to tag Categories - -=== Version 0.2 (15 Aug 2009) -* Updated to work with Radiant-0.8.0 - -=== Version 0.1 -* Original version by Jason Stirk - http://griffin.oobleyboo.com/ +See CHANGES.rdoc == Thanks Thanks to John Reilly, Justin Grammens who did most of the work to get the original extension working under Radiant-0.7.1 and 0.8.0. diff --git a/simple_product_manager_extension.rb b/simple_product_manager_extension.rb index 6fe9005..091b173 100644 --- a/simple_product_manager_extension.rb +++ b/simple_product_manager_extension.rb @@ -4,7 +4,7 @@ PRODUCT_ATTACHMENT_SIZES={:thumbnail => '75x75>', :product => '250x250>'} class SimpleProductManagerExtension < Radiant::Extension - version "0.8" + version "0.8.1" description "Manages Products and Product Categories for use across the site." url "http://github.com/jstirk/radiant-simple-product-manager/tree/master"