This version of Views Bookmark significantly updates the views integration with the following changes:
- Removed Node: Node ID argument provided by views bookmark. This argument seemed to have accidentally slipped in with the Drupal 5 port of Views Bookmark. Views provides a Node: ID argument which should be used instead. Views stored in the database are automatically updated. Views stored in hook_default_views() will need to be updated if they use this argument.
- Changed Bookmark filter from assuming current user to allowing an option for either current user or any user. This requires a change to existing views. Views in the database are automatically updated. Views stored in hook_default_views() may be updated by changing the value of the filter from an empty string to "***CURRENT_USER***".
- Added filter for bookmark timestamp
- Added sort for bookmark timestamp
- Added sort for bookmark count
- Increased efficiency of user name lookup by doing a table join rather than seperate user_loads.
Upgrading hook_default_views() implementations.
Note that this is only necessary if you've coded views into a custom or contrib module. Normal users who keep views stored in the database don't need to worry because their views are updated using update.php. Views bookmark will inform you if any views need to be updated manually.
This is the first complete (although still a -dev version) release for DRUPAL-5.
It fixes various minor issues, and adds a few features previously available only in the form of patches. Please try it so we can see whether is is stable enough to warrant a stable release.