feature: Release first public version #release
Some checks failed
Build and Release / build-release (push) Failing after 6m35s

This commit is contained in:
Keith Solomon
2026-01-04 20:14:40 -06:00
parent b04e2ea5b3
commit 19bcefbec8
6 changed files with 937 additions and 21 deletions

View File

@@ -12,6 +12,25 @@
},
"devDependencies": {
"electron": "^30.0.0",
"electron-builder": "^24.13.3"
"electron-builder": "^24.13.3",
"icon-gen": "^3.0.1"
},
"build": {
"appId": "com.oddl.app",
"productName": "OD-DL",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"package.json"
],
"mac": {
"icon": "build/icon.icns"
},
"win": {
"icon": "build/icon.ico",
"signAndEditExecutable": false
}
}
}
}