@@ -41,7 +41,7 @@ Although not required, it is most useful when used with an event bus. It also su
4141
4242Since a code example is worth thousands of documentation pages, here it is.
4343
44- File: [ PostTweetJob.java] ( https://github.com/path /android-priority-jobqueue/blob/master/examples/twitter/TwitterClient/src/com/path/android/jobqueue/examples/twitter/jobs/PostTweetJob.java )
44+ File: [ PostTweetJob.java] ( https://github.com/yigit /android-priority-jobqueue/blob/master/examples/twitter/TwitterClient/src/com/path/android/jobqueue/examples/twitter/jobs/PostTweetJob.java )
4545``` java
4646// A job to send a tweet
4747public class PostTweetJob extends Job {
@@ -77,7 +77,7 @@ public class PostTweetJob extends Job {
7777
7878```
7979
80- File: [ TweetActivity.java] ( https://github.com/path /android-priority-jobqueue/blob/master/examples/twitter/TwitterClient/src/com/path/android/jobqueue/examples/twitter/SampleTwitterClient.java#L53 )
80+ File: [ TweetActivity.java] ( https://github.com/yigit /android-priority-jobqueue/blob/master/examples/twitter/TwitterClient/src/com/path/android/jobqueue/examples/twitter/SampleTwitterClient.java#L53 )
8181``` java
8282// ...
8383public void onSendClick() {
@@ -129,15 +129,15 @@ At Path, we use [greenrobot's EventBus](https://github.com/greenrobot/EventBus);
129129### Getting Started
130130We distribute artifacts through maven central repository.
131131
132- Gradle: ` compile 'com.path :android-priority-jobqueue:1.1.2 ' `
132+ Gradle: ` compile 'com.birbit :android-priority-jobqueue:1.1.3 ' `
133133
134134Maven:
135135
136136``` xml
137137<dependency >
138- <groupId >com.path </groupId >
138+ <groupId >com.birbit </groupId >
139139 <artifactId >android-priority-jobqueue</artifactId >
140- <version >1.1.2 </version >
140+ <version >1.1.3 </version >
141141</dependency >
142142```
143143
@@ -150,6 +150,10 @@ We highly recommend checking how you can configure job manager and individual jo
150150* [ Review sample configuration] [ 7 ]
151151
152152### Version History
153+ - 1.1.3 (March 21, 2015)
154+ - Ability to add tags to jobs. These tags can be used to later retrieve jobs.
155+ - Added long awaited job cancellation. You can use tags to cancel jobs.
156+ - Removed deprecated BaseJob class. This may break backward compatibility.
153157 - 1.1.2 (Feb 18, 2014)
154158 - Report exceptions to logger if addInBackground fails. (#31 )
155159 - 1.1.1 (Feb 8, 2014)
@@ -224,15 +228,15 @@ THE SOFTWARE.
224228</pre >
225229
226230
227- [ 1 ] : https://github.com/path /android-priority-jobqueue/blob/master/jobqueue/src/com/path/android/jobqueue/network/NetworkUtil.java
228- [ 2 ] : https://github.com/path /android-priority-jobqueue/blob/master/jobqueue/src/com/path/android/jobqueue/network/NetworkEventProvider.java
231+ [ 1 ] : https://github.com/yigit /android-priority-jobqueue/blob/master/jobqueue/src/com/path/android/jobqueue/network/NetworkUtil.java
232+ [ 2 ] : https://github.com/yigit /android-priority-jobqueue/blob/master/jobqueue/src/com/path/android/jobqueue/network/NetworkEventProvider.java
229233[ 3 ] : http://path.github.io/android-priority-jobqueue/coverage-report/index.html
230234[ 4 ] : http://path.github.io/android-priority-jobqueue/javadoc/index.html
231235[ 5 ] : http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22android-priority-jobqueue%22
232- [ 6 ] : https://github.com/path /android-priority-jobqueue/tree/master/examples
233- [ 7 ] : https://github.com/path /android-priority-jobqueue/blob/master/examples/twitter/TwitterClient/src/com/path/android/jobqueue/examples/twitter/TwitterApplication.java#L26
236+ [ 6 ] : https://github.com/yigit /android-priority-jobqueue/tree/master/examples
237+ [ 7 ] : https://github.com/yigit /android-priority-jobqueue/blob/master/examples/twitter/TwitterClient/src/com/path/android/jobqueue/examples/twitter/TwitterApplication.java#L26
234238[ 8 ] : http://www.youtube.com/watch?v=xHXn3Kg2IQE
235- [ 9 ] : https://github.com/path /android-priority-jobqueue/wiki
236- [ 10 ] : https://github.com/path /android-priority-jobqueue/wiki/Job-Manager-Configuration
237- [ 11 ] : https://github.com/path /android-priority-jobqueue/wiki/Job-Configuration
238- [ 12 ] : https://github.com/path /android-priority-jobqueue/blob/master/jobqueue/src/com/path/android/jobqueue/Params.java
239+ [ 9 ] : https://github.com/yigit /android-priority-jobqueue/wiki
240+ [ 10 ] : https://github.com/yigit /android-priority-jobqueue/wiki/Job-Manager-Configuration
241+ [ 11 ] : https://github.com/yigit /android-priority-jobqueue/wiki/Job-Configuration
242+ [ 12 ] : https://github.com/yigit /android-priority-jobqueue/blob/master/jobqueue/src/com/path/android/jobqueue/Params.java
0 commit comments