mirror of
https://github.com/everoddandeven/monerod-gui.git
synced 2024-12-22 11:39:25 +00:00
Startup fix, update README
Some checks are pending
MacOS Build / build (20) (push) Waiting to run
MacOS 12 - x64 DMG Build / build (20) (push) Waiting to run
Ubuntu 22.04 - AppImage Build / build (20) (push) Waiting to run
Ubuntu 22.04 - x64 DEB Build / build (20) (push) Waiting to run
Ubuntu 24.04 - x64 DEB Build / build (20) (push) Waiting to run
Windows Build / build (20) (push) Waiting to run
Some checks are pending
MacOS Build / build (20) (push) Waiting to run
MacOS 12 - x64 DMG Build / build (20) (push) Waiting to run
Ubuntu 22.04 - AppImage Build / build (20) (push) Waiting to run
Ubuntu 22.04 - x64 DEB Build / build (20) (push) Waiting to run
Ubuntu 24.04 - x64 DEB Build / build (20) (push) Waiting to run
Windows Build / build (20) (push) Waiting to run
This commit is contained in:
parent
02bfd5ff9f
commit
059f80ca8b
3 changed files with 6 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue