diff --git a/README.md b/README.md index 236c013..ed81a07 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ [![Ubuntu noble x64 DEB Build](https://github.com/everoddandeven/monerod-gui/actions/workflows/ubuntu_24_deb.yml/badge.svg)](https://github.com/everoddandeven/monerod-gui/actions/workflows/ubuntu_24_deb.yml) [![MacOS Build][macos-build-badge]][macos-build] -[![Windows Build][windows-build-badge]][windows-build] +[![Windows Build](https://github.com/everoddandeven/monerod-gui/actions/workflows/windows.yml/badge.svg)](https://github.com/everoddandeven/monerod-gui/actions/workflows/windows.yml) [![Watch on GitHub][github-watch-badge]][github-watch] [![Star on GitHub][github-star-badge]][github-star] @@ -87,7 +87,7 @@ https://github.com/user-attachments/assets/c4a50d2f-5bbb-48ac-9425-30ecc20ada7c - [X] Synchronization in a specific time slot - [ ] Installers - [X] Linux - - [ ] Windows + - [X] Windows - [ ] MacOS - [ ] Remote node management - [ ] No CORS connection diff --git a/app/auto-launch/library/autoLaunchAPI/autoLaunchAPIWindows.ts b/app/auto-launch/library/autoLaunchAPI/autoLaunchAPIWindows.ts index dd9f52d..a58c03a 100644 --- a/app/auto-launch/library/autoLaunchAPI/autoLaunchAPIWindows.ts +++ b/app/auto-launch/library/autoLaunchAPI/autoLaunchAPIWindows.ts @@ -65,7 +65,9 @@ export default class AutoLaunchAPIWindows extends AutoLaunchAPI { } } - regKey.set(this.appName, Winreg.REG_SZ, args != '' ? `"${pathToAutoLaunchedApp}"` : `"${pathToAutoLaunchedApp}"`, (err) => { + const cdir: string = args != '' ? `"${pathToAutoLaunchedApp} ${args}"` : `"${pathToAutoLaunchedApp}"`; + + regKey.set(this.appName, Winreg.REG_SZ, cdir, (err) => { if (err != null) { return reject(err); } diff --git a/src/app/pages/settings/settings.component.ts b/src/app/pages/settings/settings.component.ts index d92f4d6..1ad0ccd 100644 --- a/src/app/pages/settings/settings.component.ts +++ b/src/app/pages/settings/settings.component.ts @@ -183,7 +183,7 @@ export class SettingsComponent { this.originalSettings = this.currentSettings.clone(); - const minimizedChanged: boolean = oldStartMinimized == this.originalSettings.startAtLoginMinimized; + const minimizedChanged: boolean = oldStartMinimized != this.originalSettings.startAtLoginMinimized; try { await this.refreshAutoLanch(minimizedChanged);