Updated buttons.
This commit is contained in:
@@ -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.",
|
||||
|
||||
@@ -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");
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user