Skip to content

Commit

Permalink
Reduce debounce duration, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
tranxuanthang committed Jun 29, 2024
1 parent b1abf8a commit a6af3d7
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
22 changes: 20 additions & 2 deletions src/components/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,29 @@
<div class="text-sm mb-6">
<label class="group-label mb-2">Donation</label>

<div class="mb-2">
<div class="mb-1">GitHub Sponsors (Recommended):</div>
<div>
<a href="https://github.com/sponsors/tranxuanthang" class="link" target="_blank">
https://github.com/sponsors/tranxuanthang
</a>
</div>
</div>

<div class="mb-2">
<div class="mb-1">Buy Me a Coffee:</div>
<div>
<a href="https://www.buymeacoffee.com/thangtran" target="_blank">
<img src="@/assets/buy-me-a-coffee.png" alt="Buy Me A Coffee" height="41" width="174">
<a href="https://www.buymeacoffee.com/thangtran" class="link" target="_blank">
https://www.buymeacoffee.com/thangtran
</a>
</div>
</div>

<div class="mb-2">
<div class="mb-1">Paypal:</div>
<div>
<a href="https://paypal.me/tranxuanthang98" class="link" target="_blank">
https://paypal.me/tranxuanthang98
</a>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/library/MiniSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const searchInput = ref('')
const debouncedSearch = _debounce(async () => {
searchValue.value = searchInput.value
}, 500)
}, 200)
watch(searchInput, debouncedSearch)
</script>

0 comments on commit a6af3d7

Please sign in to comment.