Much the same functionality as the dev 5.0 release. We've been using this more or less as it is here on a development Drupal 6 site, so I think it's pretty stable, but feel free to do some testing and trying out. Unfortunately, no Views support yet.
* Fixed problem with having javascript load at the bottom of the page - a non-drupal_add_js'd jquery
call was causing it to crash in some instances. Now that is handled using old school js.
* Added ability for late-loading of carousels. Instead of having to load on document.ready, there's
a javascript function that you can call when you know that nodecarousel will be visible.
* Made the jquery selectors that had shown the Loading... and switched on the
more specific,
which was needed when some nodecarousels would load on document.ready and others wouldn't.
* Created a surrounding div, with an id of 'nc_wrapper_'.name of the carousel, to make theming easier.
* Nodecarousel default theming now tries to find an image in the result of a node_load operation,
and displays that in the default theme. Still overrideable with theme_nodecarousel_node.
* Added various db_rewrite_sql calls throughout for better security.
* Unpublished nodes are not displayed in carousels.
* No longer depends on nodequeue to be used - instead, if nodequeue is not loaded, it will not
Latest and greatest development version - a number of new minor features and a good number of bug fixes. Depending on how stable this turns out, this may become the next release version soon for 5.x.
* Fixed problem with having javascript load at the bottom of the page - a non-drupal_add_js'd jquery
call was causing it to crash in some instances. Now that is handled using old school js.
* Added ability for late-loading of carousels. Instead of having to load on document.ready, there's
a javascript function that you can call when you know that nodecarousel will be visible.
* Made the jquery selectors that had shown the Loading... and switched on the
more specific,
which was needed when some nodecarousels would load on document.ready and others wouldn't.
* Created a surrounding div, with an id of 'nc_wrapper_'.name of the carousel, to make theming easier.
* Nodecarousel default theming now tries to find an image in the result of a node_load operation,
and displays that in the default theme. Still overrideable with theme_nodecarousel_node.
* Added various db_rewrite_sql calls throughout for better security.
* Unpublished nodes are not displayed in carousels.
* Now, if you have views installed, nodecarousel allows you to use a view you've established as a
node source.
This release brings compatibility with actions 5.x-2.x (the backport of Drupal-6-style actions).
It also moves actions assignment from the workflow module administrative interface to the triggers interface.
This is a "point-zero" release; please report bugs in the issue queue.
Changes since workflow 5.x-1.2:
#247568 by snoble: remove primary key from Postgres workflow_access table
#247617 by snoble: add stamp field to workflow_node table for Postgres
added status field to workflow_states table so deleted states are not deleted; they are just flagged as deleted. This preserves workflow node history even if a state the node has been in is deleted.
workflow tab page now themes current, regular and deleted states differently
#128874 approach by JacobSingh: reassign soon-to-be-orphaned nodes to a different state when a state is deleted
added autoincrement field hid to workflow_node_history table
added force parameter to workflow_execute_transition(); disregards permissions when true
added advanced action: Change workflow state of post to new state
convert Change workflow state of post to next state action to D6 style
remove code related to actions assignment; actions module provides this