Skip to content

Commit

Permalink
v0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
hrntknr committed Mar 20, 2022
1 parent ca550e1 commit 9158d17
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntf"
version = "0.1.9"
version = "0.1.10"
authors = ["Takanori Hirano <[email protected]>"]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ However, support for the backend type is poorer than ntfy.

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

$ echo -e 'backends: ["pushover"]\npushover: {"user_key": "t0k3n"}' > ~/.ntf.yml
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ fn shell_integration(
if !file.exists() {
fs::write(file, include_str!("./ntf-shell-hook.sh"))?
};
println!("export ${{AUTO_NTF_DONE_LONGER_THAN:=10}}");
println!("export AUTO_NTF_DONE_LONGER_THAN=${{AUTO_NTF_DONE_LONGER_THAN:=10}}");
println!(
"source {}/ntf/ntf-shell-hook.sh",
dirs::data_local_dir()
Expand Down

0 comments on commit 9158d17

Please sign in to comment.