Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Commit 9158d17

Browse files
committed
v0.1.10
1 parent ca550e1 commit 9158d17

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ntf"
3-
version = "0.1.9"
3+
version = "0.1.10"
44
authors = ["Takanori Hirano <[email protected]>"]
55
edition = "2018"
66

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ However, support for the backend type is poorer than ntfy.
1616

1717
```sh
1818
$ # for linux
19-
$ sudo curl -L https://github.com/hrntknr/ntf/releases/download/v0.1.9/ntf-x86_64-unknown-linux-gnu -o /usr/local/bin/ntf
19+
$ sudo curl -L https://github.com/hrntknr/ntf/releases/download/v0.1.10/ntf-x86_64-unknown-linux-gnu -o /usr/local/bin/ntf
2020
$ # for mac
21-
$ # sudo curl -L https://github.com/hrntknr/ntf/releases/download/v0.1.9/ntf-x86_64-apple-darwin -o /usr/local/bin/ntf
21+
$ # sudo curl -L https://github.com/hrntknr/ntf/releases/download/v0.1.10/ntf-x86_64-apple-darwin -o /usr/local/bin/ntf
2222
$ sudo chmod +x /usr/local/bin/ntf
2323

2424
$ echo -e 'backends: ["pushover"]\npushover: {"user_key": "t0k3n"}' > ~/.ntf.yml

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ fn shell_integration(
320320
if !file.exists() {
321321
fs::write(file, include_str!("./ntf-shell-hook.sh"))?
322322
};
323-
println!("export ${{AUTO_NTF_DONE_LONGER_THAN:=10}}");
323+
println!("export AUTO_NTF_DONE_LONGER_THAN=${{AUTO_NTF_DONE_LONGER_THAN:=10}}");
324324
println!(
325325
"source {}/ntf/ntf-shell-hook.sh",
326326
dirs::data_local_dir()

0 commit comments

Comments
 (0)