diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 0f2121e..82d7ede 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1893,7 +1893,7 @@ dependencies = [ [[package]] name = "lrcget" -version = "0.3.2" +version = "0.4.0" dependencies = [ "anyhow", "collapse", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 032fa94..b56f3dd 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lrcget" -version = "0.3.2" +version = "0.4.0" description = "Utility for mass-downloading LRC synced lyrics for your offline music library." authors = ["tranxuanthang"] license = "MIT" diff --git a/src/components/About.vue b/src/components/About.vue index 782e41b..6833997 100644 --- a/src/components/About.vue +++ b/src/components/About.vue @@ -36,11 +36,29 @@
+
+
GitHub Sponsors (Recommended):
+
+ + https://github.com/sponsors/tranxuanthang + +
+
+
Buy Me a Coffee:
- - Buy Me A Coffee + + https://www.buymeacoffee.com/thangtran + +
+
+ +
+
Paypal:
+
+ + https://paypal.me/tranxuanthang98
diff --git a/src/components/library/MiniSearch.vue b/src/components/library/MiniSearch.vue index dc424fd..497d28c 100644 --- a/src/components/library/MiniSearch.vue +++ b/src/components/library/MiniSearch.vue @@ -22,7 +22,7 @@ const searchInput = ref('') const debouncedSearch = _debounce(async () => { searchValue.value = searchInput.value -}, 500) +}, 200) watch(searchInput, debouncedSearch)