Release: Alpha v0.4.1

pull/8/head
Oj 4 years ago
parent e04c4ab511
commit 42c216e904

@ -9,6 +9,14 @@ GooseMod follows semantic versioning, somewhat. However there are 4 release stag
- **Release** - Completely stable and recommended, etc. (probably unreachable)
## Alpha v0.4.1
- ### Features
- #### Injector
- Added confirmation to Uninstall from settings
## Alpha v0.4.0
- ### Features

@ -1,6 +1,6 @@
(async function() {
this.version = '0.4.0';
this.versionIteration = 33;
this.version = '0.4.1';
this.versionIteration = 36;
const sleep = (ms) => new Promise(resolve => setTimeout(resolve, ms));
@ -230,7 +230,7 @@
el.innerText = panelName;
el.onclick = () => {
if (panelName === 'Uninstall') {
if (panelName === 'Uninstall' && confirm('Uninstall GooseMod?')) {
this.remove();
document.querySelector('div[aria-label="Close"]').click(); // Close settings via clicking the close settings button
@ -329,7 +329,7 @@
}
}
this.settings.createItem('Uninstall', ['']);
this.settings.createItem('Uninstall', ['Cancelled']);
this.remove = () => {
this.removed = true;

Loading…
Cancel
Save