add mac sign

This commit is contained in:
Ksenia Lebedeva 2022-11-19 22:11:41 +01:00
parent f28dde65fe
commit 2ccc5223ea
3 changed files with 5 additions and 2 deletions

View File

@ -1 +1,5 @@
# Keycard Certify
To create certificates you should first fill in the form, specifying lot number, the quantity of cards for which you need to create a certificate, destination path for the certificates file and choose the output encryption PGP key. You also need a Keycard to sign the certificates. Path `m/43'/60'/1581'/2'/0` will be used to sign.

View File

@ -21,7 +21,6 @@
],
"mac": {
"category": "public.app-category.utilities",
"identity": null,
"target": "zip"
}
},

View File

@ -35,7 +35,7 @@ export namespace Main {
export function main(app: Electron.App, browserWindow: typeof BrowserWindow): void {
BrowserWindow = browserWindow;
application = app;
application.setName("Keycard Desktop");
application.setName("Keycard Certify");
application.on('window-all-closed', Main.onWindowAllClosed);
application.on('ready', Main.onReady);
}