From e0cbd0e218938c1e41a7a4ca61b42785a7780035 Mon Sep 17 00:00:00 2001 From: Uzi Kilon Date: Sun, 8 Jun 2014 23:59:12 -0700 Subject: [PATCH] Version 0.2.9 Release --- README.md | 40 ++++++++++++++++++++++++++++++++++++++-- backbone.poller.js | 2 +- backbone.poller.min.js | 2 +- bower.json | 2 +- package.json | 2 +- 5 files changed, 42 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 6d07d1b..8471243 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,10 @@ The [annotated source code]() is av ### Downloads (Right-click, and use "Save As") -- [Development Version]() 4.6kb, Uncompressed with Comments -- [Production Version]() 1.8kb, Minified and Gzipped +- [Development Version]() 4.6kb, Uncompressed with Comments +- [Production Version]() 1.8kb, Minified and Gzipped +---- ## Basic Usage: ``` javascript @@ -123,6 +124,41 @@ poller.set({delay: 300}).start(); Backbone.Poller.reset(); ``` +---- + +## Change Log + +### 0.2.9 +Jun 6, 2014 - [Diff](https://github.com/uzikilon/backbone-poller/compare/0.2.8...0.2.9) + +- Added Bower support +- Added Support to node-style module.exports for browserify +- Added `continueOnError` option +- Added [Exponential Backoff](http://en.wikipedia.org/wiki/Exponential_backoff) support + +### 0.2.8 + Oct 28, 2013 - [Diff](https://github.com/uzikilon/backbone-poller/compare/0.2.7...0.2.8) + +- Cleanup + +### 0.2.7 +Sep 25, 2013 - [Diff](https://github.com/uzikilon/backbone-poller/compare/0.2.6...0.2.7) + +- Added `flush` option to `set` - defaults to false +- Moved delayed run to start function + +### 0.2.6 +Jun 21, 2013 - [Diff](https://github.com/uzikilon/backbone-poller/compare/0.2.5...0.2.6) + +- Bugfix: Stop pollings correctly +- Minification tweaks + +### 0.2.5 +- cleanup +- delayed option bugfix +- Passing the xhr object along with the error event + +---- ## Copyrights Copyright (c) 2012 Uzi Kilon, Splunk Inc. diff --git a/backbone.poller.js b/backbone.poller.js index 3d5a7ce..4ef22c6 100644 --- a/backbone.poller.js +++ b/backbone.poller.js @@ -1,6 +1,6 @@ /*! (c) 2012 Uzi Kilon, Splunk Inc. -Backbone Poller 0.2.8 +Backbone Poller 0.2.9 https://github.com/uzikilon/backbone-poller Backbone Poller may be freely distributed under the MIT license. */ diff --git a/backbone.poller.min.js b/backbone.poller.min.js index 7b72bdb..91c108d 100644 --- a/backbone.poller.min.js +++ b/backbone.poller.min.js @@ -1,6 +1,6 @@ /*! (c) 2012 Uzi Kilon, Splunk Inc. -Backbone Poller 0.2.8 +Backbone Poller 0.2.9 https://github.com/uzikilon/backbone-poller Backbone Poller may be freely distributed under the MIT license. */ diff --git a/bower.json b/bower.json index bbc8b70..7865976 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "backbone-poller", - "version": "0.2.8", + "version": "0.2.9", "homepage": "https://github.com/uzikilon/backbone-poller", "description": "Backbone poller is a simple utility that allows polling on any backbone model or collection.", "main": "backbone.poller.js", diff --git a/package.json b/package.json index c3a4c23..fb2d5d1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "author": "Uzi Kilon", "name": "backbone-poller", - "version": "0.2.8", + "version": "0.2.9", "homepage": "https://github.com/uzikilon/backbone-poller", "repository": { "type": "git",