UNPKG

2.24 kBPlain TextView Raw
1v1.3.16
2+ Improve environment/module.exports detection (#88, github.com/benrudolph)
3
4v1.3.15
5+ Enable inlining the minified build
6+ Fix AMD issue (https://github.com/marcuswestin/store.js/issues/85)
7+ Fix for keys starting with a digit in IE7 (https://github.com/marcuswestin/store.js/issues/83)
8
9v1.3.14
10+ Makefile
11+ Fix old-IE getAll/forEach, actually this time. I think
12
13v1.3.12
14+ Fix old-IE forEach again. Hrm...
15
16v1.3.11
17+ Fix old-IE forEach
18
19v1.3.10
20+ Add store.forEach
21+ Add bower.json (sign, I know, yet another package file to maintain)
22+ Add MIT license header
23
24v1.3.9
25+ Make store.js work in Node.js (using any working localStorage shim for Node.js)
26
27v1.3.8
28+ Fix closing </iframe> tag for IE7 (GH issue #68)
29
30v1.3.7
31+ Fix store.getAll for IE6
32
33v1.3.6
34+ Remove globalStorage and drop FF 2.0/3.0 support (See https://github.com/marcuswestin/store.js/issues/44)
35
36v1.3.5
37+ Now store.set returns the set value: `store.set(key, value) == value`
38+ Values previously set with localStorage directly are now parsed handler by store.js: `localStorage['foo'] = 1; assert(store.get('foo') == 1)`
39
40v1.3.4
41+ Add store.enabled
42+ Deprecate store.disabled
43+ Add link to Jack Franklin's screencast
44
45v1.3.3
46+ Fix IE keys beginning with numeric characters (nice find @pauldwaite)
47
48v1.3.2
49+ Implement store.getAll() (patch by @blq)
50
51v1.3.0
52+ Use uglify.js for minifying store.min.js and store+json.min.js
53+ Add build script
54
55v1.2.0
56+ Remove same-path restrictions in IE6/7! (Thanks @mjpizz!)
57+ Support CommonJS and AMD module systems (Thanks @pereckerdal!)
58+ Fix: store.set('foo', undefined); store.get('foo') no longer throws (Thanks @buger!)
59
60v1.1.1
61+ Publish in npm as "store" rather than "store.js"
62+ Add commonjs export for require support
63+ Add supported browsers Chrome 6-11, Firefox 4.0
64
65v1.1.0
66+ First versioned version.
67+ API: store.set, store.get, store.remove, store.clear, store.transact
68+ Minified versions are included: store.min.js for store.js only, and store+json2.min.js for store.js and json2.js
69
70TODO
71- Get around IE6/7 per-directory restrition. @lrbabe/@louis_remi had the idea of putting the store.js API in an anonymous iframe a la https://github.com/meebo/embed-code and see what directory restriction that would fall under