Skip to content

Commit

Permalink
Add Windows package signing functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrho committed Sep 8, 2024
1 parent d5cb994 commit 4472bb8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions jccm/src/Services/ApiServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ export const setupApiHandlers = () => {
});

ipcMain.handle('saSetThemeUser', async (event, args) => {
console.log('main: saSetThemeUser', args);
console.log('main: saSetThemeUser');
const theme = args.theme;
await msSetTheme(theme);
});
Expand Down Expand Up @@ -780,7 +780,7 @@ export const setupApiHandlers = () => {
console.log('main: saSaveSubnets');
const subnets = args.subnets;
await msSaveSubnets(subnets);
console.log('main: saSaveSubnets:', subnets);
// console.log('main: saSaveSubnets:', subnets);

return { status: true };
});
Expand All @@ -796,7 +796,7 @@ export const setupApiHandlers = () => {
console.log('main: saSaveSettings');
const settings = args.settings;
await msSaveSettings(settings);
console.log('main: saSaveSettings:', settings);
// console.log('main: saSaveSettings:', settings);

return { status: true };
});
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ yum -y install ~/Downloads/jccm-linux-x64.rpm
- The jccm app is signed with a developer certificate, yet initially, Microsoft Defender SmartScreen might still display a warning because the app is unrecognized. Over time, as more users install the application, SmartScreen will recognize it as trustworthy.

- **To proceed with installation** when faced with the SmartScreen alert:
1. **Click on 'More info'**: This reveals more details about the application.
2. **Verify the Publisher**: Check that the publisher's name matches what you expect.
3. **Select 'Run anyway'**: This will bypass the SmartScreen alert and allow you to proceed with the installation.
1. Click on **"More info"**: This reveals more details about the application.
2. Verify **the Publisher**: Check that the publisher's name matches what you expect.
3. Select **"Run anyway"**: This will bypass the SmartScreen alert and allow you to proceed with the installation.
## Inventory Excel File Format
Expand Down

0 comments on commit 4472bb8

Please sign in to comment.