Release: v1.1.2

pull/8/head
Ducko 4 years ago
parent 20370fb442
commit 4e92f9f0c5

@ -1,5 +1,13 @@
# GooseMod Changelog
## v1.1.2
- ### Fixes
- #### Injector
- Increased duration between settings reopen to fix sometimes overlapping settings
## v1.1.1
- ### Fixes

@ -1,18 +1,18 @@
window.GooseMod = {};
(async function () {
this.version = '1.1.1';
this.version = '1.1.2';
const sleep = (ms) => new Promise(resolve => setTimeout(resolve, ms));
const reopenSettings = async () => {
this.settings.close();
await sleep(50);
await sleep(100);
this.settings.open();
await sleep(50);
await sleep(100);
[...settingsSidebarGooseModContainer.children].find((x) => x.textContent === 'Module Store').click();
};

Loading…
Cancel
Save