[Release Prep] v10.0.0

pull/48/head
Oj18 3 years ago
parent a82d025876
commit 37fe536ed8

@ -1,5 +1,11 @@
# GooseMod Changelog
## v10.0.0 [2021-07-16]
- ### Storage
- **New storage system.** GooseMod now uses WebExtension storage for storing GooseMod preferences, installed modules, cache, etc. This should make storing more reliable, secure, and generally better.
## v9.6.0 [2021-07-13]
- ### Store

@ -109,7 +109,7 @@ const init = async function () {
}
this.versioning = {
version: `10.0.0-dev (S=${this.storage.type.substring(0, 3)})`,
version: `10.0.0 (S=${this.storage.type.substring(0, 3)})`,
hash: '<hash>', // Hash of built final js file is inserted here via build script
lastUsedVersion: this.storage.get('goosemodLastVersion')
@ -255,4 +255,4 @@ const init = async function () {
};
window.goosemod = {};
init.bind(window.goosemod)();
init.bind(window.goosemod)();

Loading…
Cancel
Save