From ae7164b926fc2d58420f3f3a8a424cfd8ceddae2 Mon Sep 17 00:00:00 2001 From: Jon Gadsden Date: Thu, 14 Nov 2024 05:25:48 +0000 Subject: [PATCH] try appId in MacOS electron builder options --- .github/workflows/release.yaml | 2 +- release-process.md | 4 ++-- td.vue/package-lock.json | 4 ++-- td.vue/package.json | 2 +- td.vue/vue.config.js | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 414d4fa6..003f4943 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -478,7 +478,7 @@ jobs: tar -czvf threat-dragon-sboms.zip sboms - name: Create release notes - uses: softprops/action-gh-release@v2.0.4 + uses: softprops/action-gh-release@v2.1.0 with: draft: true name: "${releaseVersion:1}" diff --git a/release-process.md b/release-process.md index 9f5510c1..231c70fa 100644 --- a/release-process.md +++ b/release-process.md @@ -10,8 +10,8 @@ For example if RC1, but change for RC2 and so on : 1. `git clone git@github.com:OWASP/threat-dragon.git` 2. `cd threat-dragon` -3. update version, for example `"version": "2.3.0",`, in `td.vue/package.json` -4. ensure `buildState` in `td.vue/package.json` is `-RC1` +3. update version, for example `"version": "2.3.0-RC1",`, in `td.vue/package.json` +4. ensure `buildState` in `td.vue/package.json` is empty `` 5. update version, for example `"version": "2.3.0-RC1",`, in `package.json` and `td.server/package.json` 6. update package lock files: `npm install` 7. `npm run build` diff --git a/td.vue/package-lock.json b/td.vue/package-lock.json index 4e2b94ad..28a9ceec 100644 --- a/td.vue/package-lock.json +++ b/td.vue/package-lock.json @@ -1,12 +1,12 @@ { "name": "threat-dragon", - "version": "2.3.0", + "version": "2.3.0-RC2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "threat-dragon", - "version": "2.3.0", + "version": "2.3.0-RC2", "license": "Apache-2.0", "dependencies": { "@antv/x6": "^2.18.1", diff --git a/td.vue/package.json b/td.vue/package.json index f11c166e..ac38097a 100644 --- a/td.vue/package.json +++ b/td.vue/package.json @@ -1,7 +1,7 @@ { "name": "threat-dragon", "productName": "Threat Dragon", - "version": "2.3.0", + "version": "2.3.0-RC2", "private": true, "scripts": { "audit": "npm audit", diff --git a/td.vue/vue.config.js b/td.vue/vue.config.js index b3bbc449..84f0431f 100644 --- a/td.vue/vue.config.js +++ b/td.vue/vue.config.js @@ -41,7 +41,7 @@ module.exports = { provider: 'github' }, mac: { - appBundleId: 'org.owasp.threatdragon', + appId: 'org.owasp.threatdragon', category: 'public.app-category.developer-tools', icon: './src/icons/icon.icns', hardenedRuntime: true,