Updated buttons.

This commit is contained in:
Patrick Fic
2026-03-02 11:37:04 -08:00
parent fe38dcc6f0
commit c5ae7c9cdb
2 changed files with 7 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "esdp",
"productName": "EMS Uploader",
"version": "0.0.1-alpha.2",
"version": "0.0.1-alpha.3",
"description": "EMS Uploader",
"main": "./out/main/index.js",
"author": "ImEX Systems Inc.",

View File

@@ -236,22 +236,22 @@ function createWindow(): void {
submenu: [
{
label: "Alpha",
checked: store.get("app.channel") === "alpha",
onClick: (): void => {
checked: autoUpdater.channel === "alpha",
click: (): void => {
checkForAppUpdates("alpha");
},
},
{
label: "Beta",
checked: store.get("app.channel") === "beta",
onClick: (): void => {
checked: autoUpdater.channel === "beta",
click: (): void => {
checkForAppUpdates("beta");
},
},
{
label: "Latest",
checked: store.get("app.channel") === "latest",
onClick: (): void => {
checked: autoUpdater.channel === "latest",
click: (): void => {
checkForAppUpdates("latest");
},
},