Skip to content

Commit 0fc91fa

Browse files
committed
Fix macOS app icon and release v0.1.3
1 parent f218cac commit 0fc91fa

8 files changed

Lines changed: 15 additions & 8 deletions

File tree

.github/workflows/release-desktop.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ jobs:
5050
targets: ${{ matrix.rust-targets }}
5151
- name: Install frontend dependencies
5252
run: npm ci
53+
- name: Regenerate macOS app icon
54+
if: runner.os == 'macOS'
55+
run: |
56+
if [ -d src-tauri/icons/icon.iconset ]; then
57+
iconutil -c icns src-tauri/icons/icon.iconset -o src-tauri/icons/icon.icns
58+
fi
59+
5360
- name: Build Tauri app
5461
uses: tauri-apps/tauri-action@v0
5562
env:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ https://github.com/TerminallyLazy/misconducting/releases/latest
1010

1111
Current locally built release assets are Linux ARM64:
1212

13-
- `Symphony Console_0.1.2_aarch64.AppImage`
14-
- `Symphony Console_0.1.2_arm64.deb`
13+
- `Symphony Console_0.1.3_aarch64.AppImage`
14+
- `Symphony Console_0.1.3_arm64.deb`
1515

1616
The GitHub Actions workflow `.github/workflows/release-desktop.yml` is configured to build macOS, Windows, Linux x86_64, and Linux ARM64 packages from release tags.
1717

RELEASE_WORKFLOW_NOTE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ It builds:
99
- Linux x86_64 AppImage/DEB
1010
- Linux ARM64 AppImage/DEB
1111

12-
Push tag `v0.1.2` or run the workflow manually from GitHub Actions to produce release artifacts.
12+
Push tag `v0.1.3` or run the workflow manually from GitHub Actions to produce release artifacts.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "symphony-desktop",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"private": true,
55
"type": "module",
66
"scripts": {

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "symphony_desktop"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55

66
[build-dependencies]

src-tauri/icons/icon.icns

-16.5 KB
Binary file not shown.

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"productName": "Symphony Console",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"identifier": "dev.symphony.console",
55
"build": {
66
"beforeDevCommand": "npm run dev",

0 commit comments

Comments
 (0)