Skip to content

Commit f69d6ac

Browse files
committed
1.5.1 - macOS Universal Build
1 parent 03ce38d commit f69d6ac

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,8 @@ jobs:
1616
target: x86_64-unknown-linux-gnu
1717
runner: ubuntu-latest
1818

19-
- name: macOS-Apple
20-
target: aarch64-apple-darwin
21-
runner: macos-latest
22-
23-
- name: macOS-Intel
24-
target: x86_64-apple-darwin
19+
- name: macOS-universal
20+
target: universal-apple-darwin
2521
runner: macos-latest
2622

2723
- name: Windows-x86_64
@@ -43,7 +39,12 @@ jobs:
4339
- name: Update Rust Toolchain
4440
run: rustup update stable
4541

46-
- name: Add Rust Target
42+
- name: Add Rust Target (macOS)
43+
if: ${{ matrix.runner == 'macos-latest' }}
44+
run: rustup target add aarch64-apple-darwin
45+
46+
- name: Add Rust Target (Other)
47+
if: ${{ matrix.runner != 'macos-latest' }}
4748
run: rustup target add ${{ matrix.target }}
4849

4950
- name: Build Tauri Installers/Bundles/Images

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "wooting-profile-switcher"
33
description = "Automatically switch Wooting keyboard profiles based on focused window"
4-
version = "1.5.0"
4+
version = "1.5.1"
55
authors = ["Shayne Hartford <shaybox@shaybox.com>"]
66
edition = "2021"
77
readme = "README.md"

tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "WootingProfileSwitcher",
11-
"version": "1.5.0"
11+
"version": "1.5.1"
1212
},
1313
"tauri": {
1414
"allowlist": {

0 commit comments

Comments
 (0)