Skip to content

Commit b599fe8

Browse files
committed
bump to v0.4.10
1 parent 422164c commit b599fe8

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tap"
3-
version = "0.4.9"
3+
version = "0.4.10"
44
authors = ["Tim Dubbins <[email protected]>"]
55
description = "An audio player for the terminal with fuzzy-finder"
66
documentation = "https://github.com/timdubbins/tap"

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To open a player without the fuzzy-finder provide a `path` to an audio file or a
2626

2727
Option | Description
2828
--- |---
29-
`-a` `--automate` | Run an automated player without the TUI. Quit with `Ctrl` + `c`.
29+
`-a` `--automate` | Run an automated player without the TUI. Quit with `Enter`.
3030
`-d` `--default` | Run from the default directory, if set.
3131
`-p` `--print` | Print the path of the default directory, if set.
3232
`-s` `--set-default` | Set `path` as the default directory. This can significantly reduce the time it takes to load this directory. See [Notes](#notes).
@@ -120,7 +120,7 @@ You can install with <a href="https://brew.sh/">Homebrew</a>:
120120
```bash
121121
> brew install timdubbins/tap/tap
122122
> tap --version
123-
0.4.9
123+
0.4.10
124124
```
125125

126126
</details>
@@ -136,7 +136,7 @@ such as <a href="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/Jguer/yay">yay</a>:
136136
```bash
137137
> yay -S tap
138138
> tap --version
139-
0.4.9
139+
0.4.10
140140
```
141141
The AUR package is available <a href="https://aur.archlinux.org/packages/tap">here</a>.
142142
<br>
@@ -147,13 +147,13 @@ The AUR package is available <a href="https://aur.archlinux.org/packages/tap">he
147147
<summary><b>Debian</b> (or a Debian derivative, such as <b>Ubuntu</b>)</summary>
148148
<br>
149149

150-
You can install with a binary <code>.deb</code> file provided in each <a href="https://github.com/timdubbins/tap/releases/tag/v0.4.9">tap release</a>:
150+
You can install with a binary <code>.deb</code> file provided in each <a href="https://github.com/timdubbins/tap/releases/tag/v0.4.10">tap release</a>:
151151

152152
```bash
153-
> curl -LO https://github.com/timdubbins/tap/releases/download/v0.4.9/tap_0.4.9_amd64.deb
154-
> sudo dpkg -i tap_0.4.9_amd64.deb
153+
> curl -LO https://github.com/timdubbins/tap/releases/download/v0.4.10/tap_0.4.10.deb
154+
> sudo dpkg -i tap_0.4.10.deb
155155
> tap --version
156-
0.4.9
156+
0.4.10
157157
```
158158

159159
</details>
@@ -169,12 +169,12 @@ To compile from source, first you need a <a href="https://www.rust-lang.org/lear
169169
> cd tap
170170
> cargo install --path .
171171
> tap --version
172-
0.4.9
172+
0.4.10
173173
```
174174

175175
</details>
176176

177-
The binaries for each release are also available [here](https://github.com/timdubbins/tap/releases/tag/v0.4.9).
177+
The binaries for each release are also available [here](https://github.com/timdubbins/tap/releases/tag/v0.4.10).
178178

179179
## Notes
180180

src/args.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ pub enum Opts {
2525
#[command(
2626
author = "Tim Dubbins",
2727
about = "An audio player for the terminal with fuzzy-finder",
28-
version = "0.4.9"
28+
version = "0.4.10"
2929
)]
3030
pub struct Args {
3131
/// The path to play or search on. Defaults to the current working directory

0 commit comments

Comments
 (0)