mirror of
https://github.com/litruv/picoGraph.git
synced 2026-07-25 19:26:05 +10:00
Compare commits
6 Commits
v2025-10-1
...
v2025-10-1
| Author | SHA1 | Date | |
|---|---|---|---|
| 1f5da03474 | |||
|
|
9261def7cd | ||
|
|
b9712954bf | ||
| 5135d90ff1 | |||
|
|
9c61218df5 | ||
|
|
028c8822a3 |
8
.github/workflows/windows-build.yml
vendored
8
.github/workflows/windows-build.yml
vendored
@@ -53,8 +53,8 @@ jobs:
|
|||||||
prerelease: false
|
prerelease: false
|
||||||
draft: false
|
draft: false
|
||||||
files: |
|
files: |
|
||||||
dist/**/*.exe
|
dist/*Setup*.exe
|
||||||
dist/**/*.blockmap
|
dist/*Setup*.exe.blockmap
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN != '' && secrets.GH_TOKEN || secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GH_TOKEN != '' && secrets.GH_TOKEN || secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
@@ -64,5 +64,5 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: windows-installer-${{ steps.version.outputs.tag }}
|
name: windows-installer-${{ steps.version.outputs.tag }}
|
||||||
path: |
|
path: |
|
||||||
dist/**/*.exe
|
dist/*Setup*.exe
|
||||||
dist/**/*.blockmap
|
dist/*Setup*.exe.blockmap
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
const { app, BrowserWindow, ipcMain } = require("electron");
|
const { app, BrowserWindow, ipcMain, Menu } = require("electron");
|
||||||
const fs = require("node:fs/promises");
|
const fs = require("node:fs/promises");
|
||||||
const path = require("node:path");
|
const path = require("node:path");
|
||||||
|
|
||||||
@@ -84,6 +84,7 @@ function registerIpcHandlers() {
|
|||||||
*/
|
*/
|
||||||
function registerAppLifecycle() {
|
function registerAppLifecycle() {
|
||||||
app.whenReady().then(() => {
|
app.whenReady().then(() => {
|
||||||
|
Menu.setApplicationMenu(null);
|
||||||
createMainWindow();
|
createMainWindow();
|
||||||
registerIpcHandlers();
|
registerIpcHandlers();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user