Skip to content

Commit 7a8a387

Browse files
committed
Small fixes
1 parent 2689e4b commit 7a8a387

File tree

5 files changed

+6
-13
lines changed

5 files changed

+6
-13
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ jobs:
2222
run: |
2323
sudo apt-get update
2424
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev
25-
2625
- name: Rust setup
2726
uses: dtolnay/rust-toolchain@stable
2827

@@ -48,7 +47,7 @@ jobs:
4847
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4948
with:
5049
tagName: ${{ github.ref_name }} # This only works if your workflow triggers on new tags.
51-
releaseName: 'App Name v__VERSION__' # tauri-action replaces \_\_VERSION\_\_ with the app version.
50+
releaseName: 'Spicetify GUI v__VERSION__' # tauri-action replaces \_\_VERSION\_\_ with the app version.
5251
releaseBody: 'See the assets to download and install this version.'
5352
releaseDraft: true
5453
prerelease: false

src-tauri/Cargo.lock

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

src-tauri/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ tauri-build = { version = "1.2", features = [] }
1717
serde_json = "1.0"
1818
serde = { version = "1.0", features = ["derive"] }
1919
tauri = { version = "1.2", features = ["app-all", "clipboard-read-text", "notification-all", "path-all", "process-all", "shell-all"] }
20-
powershell_script = "1.0.4"
2120
[features]
2221
# by default Tauri runs in production mode
2322
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL

src/App.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ const App = () => {
1818
setSelectedTab={setSelectedTab} />
1919
<Toaster position="bottom-right" toastOptions={{
2020
duration: 6000,
21-
className: "bg-grey-900 text-common-white"
21+
style: {
22+
backgroundColor: "rgb(33 33 33)",
23+
color: "rgb(255 255 255)"
24+
}
2225
}} />
2326
<main>
2427
<AnimatePresence mode="wait">

src/components/Home.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,7 @@ const CmdButton = ({
145145
};
146146
win.cmd_done = () => {
147147
toast.success("Finished Running Command!");
148-
if (notification)
149-
sendNotification({
148+
if (notification) sendNotification({
150149
title: "Spicetify",
151150
body: notification,
152151
});

0 commit comments

Comments
 (0)