Skip to content

Commit

Permalink
Add native support for Apple M1 (marktext#3089)
Browse files Browse the repository at this point in the history
  • Loading branch information
fxha authored Mar 6, 2022
1 parent 485fcfe commit 225022b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 0.17.1

- Added native support for Apple M1 (see #2983 if you have issues).

**:beetle:Bug fix**

- Fixed crash when key binding was unset.
- Fixed paste handler for images.

## 0.17.0

Mark Text is now MarkText! We'd like to thank all contributors and users that have been using MarkText and worked on this release.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ jobs:
sha256sum build/marktext-*.rpm
shell: bash

# shasum -a 256 build/marktext-arm64-mac.zip
# shasum -a 256 build/marktext-arm64.dmg
- name: Calculate checksums
if: runner.os == 'macOS'
run: |
shasum -a 256 build/marktext-arm64-mac.zip
shasum -a 256 build/marktext-x64-mac.zip
shasum -a 256 build/marktext-arm64.dmg
shasum -a 256 build/marktext-x64.dmg
shell: bash

Expand Down
4 changes: 2 additions & 2 deletions electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ mac:
darkModeSupport: true
target:
- target: dmg
arch: [x64]
arch: [x64, arm64]
- target: zip
arch: [x64]
arch: [x64, arm64]
dmg:
artifactName: "marktext-${arch}.${ext}"
contents:
Expand Down

0 comments on commit 225022b

Please sign in to comment.