Comparing version 1.0.0 to 1.0.1
1.0.1 / 2013-04-04 | ||
================== | ||
* agent: [base] queue/cache start in pause state | ||
* docs: add link to tutorial article | ||
1.0.0 / 2013-03-27 | ||
@@ -3,0 +9,0 @@ ================== |
@@ -11,3 +11,3 @@ /*! | ||
exports.version = '1.0.0'; | ||
exports.version = '1.0.1'; | ||
@@ -14,0 +14,0 @@ /*! |
@@ -97,2 +97,6 @@ /*! | ||
// start in paused state | ||
cache.pause(); | ||
queue.pause(); | ||
// emit queue errors on agent | ||
@@ -265,3 +269,3 @@ queue.onerror = function (err) { | ||
debug('(queue) push: %d', json.identifier); | ||
this.queue.push({ codec: codec, json: json }, cb); | ||
this.queue.push({ codec: codec, json: json }, cb, true); | ||
return this; | ||
@@ -268,0 +272,0 @@ }; |
{ | ||
"name": "apnagent" | ||
, "version": "1.0.0" | ||
, "version": "1.0.1" | ||
, "description": "Node adapter for Apple Push Notification (APN) service." | ||
@@ -5,0 +5,0 @@ , "author": "Jake Luer <jake@qualiancy.com> (http://qualiancy.com)" |
@@ -12,5 +12,11 @@ # APN Agent [![Build Status](https://travis-ci.org/qualiancy/apnagent.png?branch=master)](https://travis-ci.org/qualiancy/apnagent) | ||
#### Related Projects | ||
#### Resources | ||
- [apnagent documentation](http://apnagent.qualiancy.com): Official documentation website. | ||
- [Delivering iOS Push Notifications with Node.js](https://blog.engineyard.com/2013/developing-ios-push-notifications-nodejs): In-depth getting started with push notifications and `apnagent` tutorial. | ||
#### Related Projects | ||
- [apnagent-ios](https://github.com/logicalparadox/apnagent-ios): Tiny iOS application for use with the example(s) and live tests. | ||
- [apnagent-playground](https://github.com/logicalparadox/apnagent-playground): Extended examples for connecting, error mitigation and available message types. | ||
@@ -17,0 +23,0 @@ ## Installation |
65402
2169
51