feat: update DMG format to UDZO and add additional options; bump version to 0.7.6
Some checks failed
Build and Release / build (x64, ubuntu-latest, linux) (push) Has been skipped
Build and Release / build (arm64, macos-latest, darwin) (push) Has been cancelled
Build and Release / build (x64, macos-latest, darwin) (push) Has been cancelled
Build and Release / release (push) Has been cancelled
Build and Release / build (x64, windows-latest, win32) (push) Has been cancelled

This commit is contained in:
Илья Глазунов 2026-02-20 23:07:37 +03:00
parent 1330af8d19
commit 39fe8d948f
3 changed files with 11 additions and 2 deletions

View File

@ -64,6 +64,7 @@ jobs:
out/make/**/*.deb out/make/**/*.deb
out/make/**/*.rpm out/make/**/*.rpm
if-no-files-found: ignore if-no-files-found: ignore
compression-level: 0
release: release:
needs: build needs: build

View File

@ -48,9 +48,17 @@ module.exports = {
name: "@electron-forge/maker-dmg", name: "@electron-forge/maker-dmg",
platforms: ["darwin"], platforms: ["darwin"],
config: { config: {
format: "ULFO", format: "UDZO",
icon: "src/assets/logo.icns", icon: "src/assets/logo.icns",
name: "Mastermind", name: "Mastermind",
additionalDMGOptions: {
window: {
size: {
width: 660,
height: 400,
},
},
},
}, },
}, },
{ {

View File

@ -1,7 +1,7 @@
{ {
"name": "mastermind", "name": "mastermind",
"productName": "Mastermind", "productName": "Mastermind",
"version": "0.7.5", "version": "0.7.6",
"description": "Mastermind AI assistant", "description": "Mastermind AI assistant",
"main": "src/index.js", "main": "src/index.js",
"scripts": { "scripts": {