Release: Beta v0.8.1

pull/8/head
Ducko 4 years ago
parent 2891cef553
commit fb39e64100

@ -1,5 +1,27 @@
# GooseMod Changelog
## Beta v0.8.1
- ### Features
- #### Injector
- Automatically opens settings on the manage modules page when injected
- #### Module: RainbowCord (v1.0.0)
- Added module
- #### Module: Role Colored Messages (v1.0.0)
- Added module
- #### Module: Egg Scrambler (v1.0.0)
- Added module
- ### Fixes
- #### Module: Message Scrambler (v1.0.1)
- Fixed some potential symbol conversion errors
## Beta v0.8.0
- ### Features

@ -1,5 +1,5 @@
(async function () {
this.version = '0.8.0';
this.version = '0.8.1';
const sleep = (ms) => new Promise(resolve => setTimeout(resolve, ms));
@ -430,7 +430,11 @@
},
close: () => {
document.querySelector('div[aria-label="Close"]').click(); // Close settings via clicking the close settings button
let closeEl = document.querySelector('div[aria-label="Close"]');
if (closeEl === null) return false;
closeEl.click(); // Close settings via clicking the close settings button
},
open: () => {
@ -648,4 +652,14 @@
}
}
};
this.settings.close();
await sleep(20);
this.settings.open();
await sleep(20);
[...settingsSidebarGooseModContainer.children].find((x) => x.textContent === 'Manage Modules').click();
}).bind({})();
Loading…
Cancel
Save