From 2ccc5223ea79565bcd4875e9b29ac14440311f9c Mon Sep 17 00:00:00 2001 From: Ksenia Lebedeva Date: Sat, 19 Nov 2022 22:11:41 +0100 Subject: [PATCH] add mac sign --- README.md | 4 ++++ package.json | 1 - src/main.ts | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a01baef..668df09 100644 --- a/README.md +++ b/README.md @@ -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. + + diff --git a/package.json b/package.json index 93d9bac..602f000 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,6 @@ ], "mac": { "category": "public.app-category.utilities", - "identity": null, "target": "zip" } }, diff --git a/src/main.ts b/src/main.ts index d47fb14..c2eaae2 100644 --- a/src/main.ts +++ b/src/main.ts @@ -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); }