-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added a changelog ! * Using localForage 0.1.1 with the new config options * **Breaking change**: setPrefix has been removed, use the config function from now on * Renamed all the functions to keep consistency with the localForage function names (set/get/remove/clearAll/getKeyAt/getLength/getDriver are renammed setItem/getItem/removeItem/clear/key/length/driver). The old function names are still available. * Added a test to check for "InvalidStateError" due to private browsing in firefox and switching to localstorage when this is the case * Fixed bug #4 [removeItem needs to use prefix](#4) * Added missing package.json (for tests) and updated tests
- Loading branch information
Showing
7 changed files
with
176 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# 0.1.0 (19 Mars 2014) | ||
* Added a changelog ! | ||
* Using localForage 0.1.1 with the new config options | ||
* **Breaking change**: setPrefix has been removed, use the config function from now on | ||
* Renamed all the functions to keep consistency with the localForage function names (set/get/remove/clearAll/getKeyAt/getLength/getDriver are renammed setItem/getItem/removeItem/clear/key/length/driver). The old function names are still available. | ||
* Added a test to check for "InvalidStateError" due to private browsing in firefox and switching to localstorage when this is the case | ||
* Fixed bug #4 [removeItem needs to use prefix](https://github.com/ocombe/angular-localForage/issues/4) | ||
* Added missing package.json (for tests) and updated tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
{ | ||
"name": "angular-localForage", | ||
"main": "angular-localForage.js", | ||
"version": "0.0.3", | ||
"version": "0.1.0", | ||
"homepage": "https://github.com/ocombe/angular-localForage", | ||
"authors": [ | ||
"Olivier Combe <[email protected]>" | ||
], | ||
"description": "Angular service & directive for https://github.com/mozilla/localForage (Offline storage, improved.)", | ||
"keywords": [ | ||
"localstorage", | ||
"local-storage", | ||
"local-storage",, | ||
"localForage", | ||
"indexDB", | ||
"webSQL", | ||
"storage", | ||
|
@@ -30,6 +31,6 @@ | |
"angular-mocks": "~1.2.13" | ||
}, | ||
"dependencies": { | ||
"localforage": "*" | ||
"localforage": "0.1.1" | ||
} | ||
} |
Oops, something went wrong.