From 39fe8d948fabcf70513e94b8f1320b29d52061a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=98=D0=BB=D1=8C=D1=8F=20=D0=93=D0=BB=D0=B0=D0=B7=D1=83?= =?UTF-8?q?=D0=BD=D0=BE=D0=B2?= Date: Fri, 20 Feb 2026 23:07:37 +0300 Subject: [PATCH] feat: update DMG format to UDZO and add additional options; bump version to 0.7.6 --- .github/workflows/release.yml | 1 + forge.config.js | 10 +++++++++- package.json | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 964767c..bd612ed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,6 +64,7 @@ jobs: out/make/**/*.deb out/make/**/*.rpm if-no-files-found: ignore + compression-level: 0 release: needs: build diff --git a/forge.config.js b/forge.config.js index 14b3f37..81bc54e 100644 --- a/forge.config.js +++ b/forge.config.js @@ -48,9 +48,17 @@ module.exports = { name: "@electron-forge/maker-dmg", platforms: ["darwin"], config: { - format: "ULFO", + format: "UDZO", icon: "src/assets/logo.icns", name: "Mastermind", + additionalDMGOptions: { + window: { + size: { + width: 660, + height: 400, + }, + }, + }, }, }, { diff --git a/package.json b/package.json index c3e568e..c1e509a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mastermind", "productName": "Mastermind", - "version": "0.7.5", + "version": "0.7.6", "description": "Mastermind AI assistant", "main": "src/index.js", "scripts": {