Skip to content

Commit

Permalink
Merge commit '5bab12f0829768748d25dec0a4f8e9ae4b3db090' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgraph committed May 22, 2024
2 parents 6fac434 + 5bab12f commit 8557fc4
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/electron-builder-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
md diagramly
Move-Item "DesktopLibrary.js","ElectronApp.js" -Destination "diagramly"
- name: Installing Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
- name: Prepare for Windows Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
mkdir diagramly
mv DesktopLibrary.js ElectronApp.js diagramly
- name: Installing Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
- name: Build for ${{ matrix.os}}
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion electron-builder-appx.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"identityName": "draw.io.draw.ioDiagrams",
"publisher": "CN=9E628CCB-BE04-4557-A5A8-81EC34B09733"
},
"afterPack": "build/fuses.js",
"afterPack": "build/fuses.cjs",
"fileAssociations": [
{
"ext": "drawio",
Expand Down
4 changes: 2 additions & 2 deletions electron-builder-linux-mac.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
}
]
},
"afterSign": "build/notarize.js",
"afterPack": "build/fuses.js",
"afterSign": "build/notarize.cjs",
"afterPack": "build/fuses.cjs",
"dmg": {
},
"linux": {
Expand Down
2 changes: 1 addition & 1 deletion electron-builder-snap.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"removable-media"
]
},
"afterPack": "build/fuses.js",
"afterPack": "build/fuses.cjs",
"fileAssociations": [
{
"ext": "drawio",
Expand Down
2 changes: 1 addition & 1 deletion electron-builder-win.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"portable": {
"artifactName": "${productName}-${version}-windows-no-installer.${ext}"
},
"afterPack": "build/fuses.js",
"afterPack": "build/fuses.cjs",
"fileAssociations": [
{
"ext": "drawio",
Expand Down
2 changes: 1 addition & 1 deletion electron-builder-win32.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"portable": {
"artifactName": "${productName}-ia32-${version}-windows-32bit-no-installer.${ext}"
},
"afterPack": "build/fuses.js",
"afterPack": "build/fuses.cjs",
"fileAssociations": [
{
"ext": "drawio",
Expand Down

1 comment on commit 8557fc4

@davidjgraph
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Downloaded draw.io-universal-24.4.6.dmg to ARM Mac M1 Mac OS 14.4.1. Tested create/save/reload/save diagram. Tested autosaving. Tested PDF export. No issues.

Downloaded draw.io-24.4.6-windows-installer.exe to windows 11 Pro 23H2, build 22631.3235. Tested create/save/reload/save diagram. Tested autosaving. Tested PDF export. No issues.

https://drawio.atlassian.net/projects/DRAWDESK/versions/11503/

Please sign in to comment.