Skip to content

Commit

Permalink
Revision bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jstirk committed Oct 18, 2009
1 parent 1fdf532 commit 5e08cde
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 45 deletions.
46 changes: 46 additions & 0 deletions 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 <r:product:if> <r:product:unless> and same for <r:category>

=== 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 <r:product:image type="SIZE" />

=== 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/

46 changes: 2 additions & 44 deletions README.rdoc
Expand Up @@ -86,7 +86,7 @@ they do not recurse down into sub-Categories.
<r:product:price [precision="2"] [unit="$"] [separator="."] [delimiter=","] />
<r:product:field name="" />
<r:product:link [selected="current"]>...</r:product:link>
<r:product:images:each [tag=""] [limit=""] [order="filename ASC"]>...</r:product:images:each>
<r:product:images:each [tag=""] [limit=""] [order="sequence ASC"]>...</r:product:images:each>
<r:product:image:description />
<r:product:image:filename />
<r:product:image:url [type="product"] />
Expand Down Expand Up @@ -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 <r:product:if> <r:product:unless> and same for <r:category>

=== 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 <r:product:image type="SIZE" />

=== 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.
Expand Down
2 changes: 1 addition & 1 deletion simple_product_manager_extension.rb
Expand Up @@ -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"

Expand Down

0 comments on commit 5e08cde

Please sign in to comment.