Skip to content

Commit 8117300

Browse files
committed
Fix app name in task switcher: Cmdr, not cmdr
1 parent 4f6d63c commit 8117300

3 files changed

Lines changed: 17 additions & 2 deletions

File tree

apps/desktop/src-tauri/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ description = "A blazing fast, keyboard-driven, two-pane file manager built, Rus
55
authors = ["David Veszelovszki <veszelovszki@gmail.com>"]
66
edition = "2024"
77
license = "LicenseRef-BSL-1.1"
8-
default-run = "cmdr"
8+
default-run = "Cmdr"
9+
10+
[[bin]]
11+
name = "Cmdr"
12+
path = "src/main.rs"
913

1014
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1115

apps/desktop/src-tauri/Info.plist

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleName</key>
6+
<string>Cmdr</string>
7+
</dict>
8+
</plist>

apps/desktop/src-tauri/tauri.conf.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
"icons/128x128@2x.png",
4343
"icons/icon.icns",
4444
"icons/icon.ico"
45-
]
45+
],
46+
"macOS": {
47+
"bundleName": "Cmdr"
48+
}
4649
}
4750
}

0 commit comments

Comments
 (0)