CHANGELOG 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. 1.3.0
  2. [Compat]
  3. - Updated to work with jQuery.scrollTo 2.0
  4. 1.2.4.1
  5. [Misc]
  6. - Using $.isNumeric instead of isNaN
  7. 1.2.4
  8. [Misc]
  9. - Re-releasing for the jQuery plugins site
  10. 1.2.3
  11. [Enhancement]
  12. - Removed a redundant code
  13. - If there's no matched container ('target') serialScroll just ignores the call.
  14. - The setting 'interval' implicitely assumes 'force' as true.
  15. [Fix]
  16. - The setting 'stop' wasn't working on window.
  17. [Misc]
  18. - Changed licensing to MIT
  19. - Repo is compliant with official jquery plugins repository
  20. 1.2.2
  21. [Enhancement]
  22. - Removed the check that avoids re-scrolling to the same index, this might be desirable sometimes.
  23. - The settings object is exposed in the onBefore as the 'this'.
  24. 1.2.1
  25. [Feature]
  26. - Added option 'exclude' to indicate the plugin to exclude some elements from the scrolling items.
  27. [Enhancement]
  28. - If less items than 'step' are missing, the plugin will firstly show those, and then cycle or not.
  29. - When cycling, the option 'step' is ignored, and the step is 1. So after the last, comes the 1st and the other way around.
  30. 1.2.0
  31. [Feature]
  32. - You can notify SerialScroll that the active item changed, by using the event notify.serialScroll.
  33. - Thanks to the event notify, this plugin can be now closely integrated with LocalScroll(1.2.5 or higher).
  34. - Also, thanks to notify, you can call SerialScroll on the same element more than once, and they interact nicely.
  35. - You can specify the option 'target', and then the matched elements become the context of all the selectors,
  36. and target matches the element to be scrolled. This allows you to call SerialScroll on many element at the same time.
  37. - You can combine the options 'jump' and 'lazy' (not adviced if no target is specified).
  38. - LocalScroll and SerialScroll are so compatible, that they can use the same hash of settings.
  39. - Added option 'constant'(true by default), specifies whether the speed must be constant or not.
  40. - Added option 'navigation' to add a group of element to jump to the items.
  41. [Fix]
  42. - If you call the plugin on the same (scrollable)element more than once, the custom events get bound only in the first call.
  43. [Change]
  44. - The event 'start' no longer receives the interval, you must set it at start, stop/start only pause/restart.
  45. 1.1.2
  46. [Fix]
  47. - The next handler was receiving event type 'next' and as target the container.
  48. 1.1.1
  49. [Feature]
  50. - Added events start and stop, to manage the autoscrolling.
  51. [Fix]
  52. - The step can be negative, to go in the other way, before it would mess up the duration.
  53. 1.1.0
  54. [Change]
  55. - Relicensed from GPL to GPL+MIT.
  56. [Optimization]
  57. - The animation is skipped if a bad position was received or it's the same as the actual. Saving some overhead.
  58. [Feature]
  59. - The plugin binds 3 events to the container to allow external manipulation.
  60. * prev.serialScroll, next.serialScroll, goto.serialScroll.
  61. You use them like this: $(your_container).trigger('next'), $(your_container).trigger('goto', [5]) (0-based index).
  62. If for some odd reason, the element already has any of these events bound, trigger with the namespace.
  63. - Added 2 more arguments to the onBefore callback: actual item collection, index of the actual item in the collection.
  64. - Added option 'interval', can be a number specifying the amount of milliseconds for autoscrolling.
  65. 1.0.1
  66. [Feature]
  67. - if 'onBefore' returns false, the plugin will ignore the event.
  68. - Added option 'lazy'.
  69. 1.0.0
  70. - First release.