Skip to content

Commit 94a10d8

Browse files
committed
feat: bump version to 1.5.4 in package.json
1 parent a85d33b commit 94a10d8

4 files changed

Lines changed: 44 additions & 4 deletions

File tree

.github/workflows/update-homebrew-cask.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
update-cask:
2323
runs-on: ubuntu-latest
2424
# Запускаем только при создании тегов с префиксом app-v
25-
if: startsWith(github.ref, 'refs/tags/app-v')
25+
if: contains(github.ref, 'app-v') == false
2626

2727
steps:
2828
- name: Checkout SwitchShuttle repository

README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,46 @@ switch-shuttle --search "git"
9797
switch-shuttle -s "docker"
9898
```
9999

100+
### Running CLI on Different Operating Systems
101+
102+
#### macOS
103+
```bash
104+
# If installed via Homebrew
105+
switch-shuttle --list
106+
107+
# If installed manually
108+
/Applications/switch-shuttle.app/Contents/MacOS/SwitchShuttle --list
109+
110+
# Create an alias for easier access
111+
echo 'alias switch-shuttle="/Applications/switch-shuttle.app/Contents/MacOS/SwitchShuttle"' >> ~/.zshrc
112+
source ~/.zshrc
113+
```
114+
115+
#### Windows
116+
```bash
117+
# If installed via installer
118+
"C:\Program Files\SwitchShuttle\switch-shuttle.exe" --list
119+
120+
# If installed via winget or chocolatey
121+
switch-shuttle --list
122+
123+
# Add to PATH for easier access
124+
# Add "C:\Program Files\SwitchShuttle" to your system PATH
125+
```
126+
127+
#### Linux
128+
```bash
129+
# If installed via package manager
130+
switch-shuttle --list
131+
132+
# If installed manually
133+
./switch-shuttle --list
134+
135+
# Make executable and add to PATH
136+
chmod +x switch-shuttle
137+
sudo mv switch-shuttle /usr/local/bin/
138+
```
139+
100140
### CLI Examples
101141

102142
```bash

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "switchshuttle",
3-
"version": "1.5.3",
3+
"version": "1.5.4",
44
"description": "SwitchShuttle is a cross-platform system tray application that allows users to run predefined commands in various terminal applications. It supports macOS, Windows, and Linux, offering a simple and customizable way to manage and execute your frequently used commands.",
55
"type": "module",
66
"scripts": {

src-tauri/tauri.conf.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"productName": "switch-shuttle",
3030
"version": "../package.json",
31-
"identifier": "com.SwitchShuttle.app",
31+
"identifier": "com.SwitchShuttle",
3232
"plugins": {
3333
"cli": {
3434
"description": "SwitchShuttle - Cross-platform terminal command manager",
@@ -54,7 +54,7 @@
5454
},
5555
"deep-link": {
5656
"mobile": [
57-
{ "host": "com.SwitchShuttle.app" }
57+
{ "host": "com.SwitchShuttle" }
5858
],
5959
"desktop": {
6060
"schemes": ["switchshuttle", "switch-shuttle"]

0 commit comments

Comments
 (0)