Skip to content

Commit

Permalink
chore(release): 1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
danielweck committed Feb 6, 2025
1 parent 2d2d7df commit 2f432cb
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 13 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,15 @@ jobs:
- run: yarn --version
- run: yarn config set network-timeout 300000 || echo ok
# - run: yarn --global install asar
- name: package patch 1
run: node build/package-ci-patch.js package.json ${{ github.run_id }} && cat package.json | grep -i VERSION && cat package.json
shell: bash
- name: package patch 2
run: node build/package-ci-patch.js package-asar.json ${{ github.run_id }} && cat package-asar.json | grep -i VERSION && cat package-asar.json
shell: bash
- name: package patch 3
run: node build/package-ci-patch.js package-asar-dev.json ${{ github.run_id }} && cat package-asar-dev.json | grep -i VERSION && cat package-asar-dev.json
shell: bash
# - name: package patch 1
# run: node build/package-ci-patch.js package.json ${{ github.run_id }} && cat package.json | grep -i VERSION && cat package.json
# shell: bash
# - name: package patch 2
# run: node build/package-ci-patch.js package-asar.json ${{ github.run_id }} && cat package-asar.json | grep -i VERSION && cat package-asar.json
# shell: bash
# - name: package patch 3
# run: node build/package-ci-patch.js package-asar-dev.json ${{ github.run_id }} && cat package-asar-dev.json | grep -i VERSION && cat package-asar-dev.json
# shell: bash
#- run: pwd && ls && cd .. && pwd && ls && git clone https://github.com/daisy/ace.git && cd ace && pwd && ls && git checkout ace-next-local-packs && yarn ace-app-prepare && pwd && ls && cd .. && pwd && ls && cd ace-gui && pwd && ls
#- run: rm -f yarn.lock && rm -rf node_modules && yarn install
- run: yarn --frozen-lockfile
Expand Down
4 changes: 3 additions & 1 deletion build/notarize.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
// xcrun notarytool history --apple-id=$APPLEID --team-id=$APPLEIDTEAM --password=$APPLEIDPASS

require('dotenv').config();
const { notarize } = require('@electron/notarize');

exports.default = async function notarizing(context) {
const { electronPlatformName, appOutDir } = context;
const { electronPlatformName, appOutDir } = context;
if (electronPlatformName !== 'darwin' || process.env.SKIP_NOTARIZE) {
return;
}
Expand Down
2 changes: 1 addition & 1 deletion package-asar-dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ace-gui",
"productName": "Ace by DAISY",
"description": "Ace, the EPUB accessibility checker by the DAISY Consortium (desktop application)",
"version": "1.3.5-alpha.1",
"version": "1.3.5",
"author": {
"name": "DAISY Consortium",
"organization": "DAISY Consortium",
Expand Down
2 changes: 1 addition & 1 deletion package-asar.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ace-gui",
"productName": "Ace by DAISY",
"description": "Ace, the EPUB accessibility checker by the DAISY Consortium (desktop application)",
"version": "1.3.5-alpha.1",
"version": "1.3.5",
"author": {
"name": "DAISY Consortium",
"organization": "DAISY Consortium",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ace-gui",
"description": "Ace, the EPUB accessibility checker by the DAISY Consortium (desktop application)",
"version": "1.3.5-alpha.1",
"version": "1.3.5",
"engines": {
"node": ">=22.0.0",
"yarn": "^1.22.0",
Expand Down

0 comments on commit 2f432cb

Please sign in to comment.