This commit is contained in:
24kycj
2025-12-06 00:27:10 +08:00
parent bfe8127ee8
commit 741387aff2
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -27,7 +27,8 @@
},
"extraFiles": [
"lib",
"ProductionServer"
"ProductionServer",
"help"
],
"nsis": {
"oneClick": false,
+1 -1
View File
@@ -175,7 +175,7 @@ app.on("open-file", (e, filePath) => {
});
ipcMain.on('open-help-file', async event => {
const helpFilePath = path.join(root, "ProductionServer", "User Manual.pdf");
const helpFilePath = path.join(root, "help", "User Manual.pdf");
try {
await shell.openPath(helpFilePath);