Skip to content

Commit

Permalink
2 changes: --version check and room aliases allowed in credentials file
Browse files Browse the repository at this point in the history
- instead of 2 options: --version and --version-check there is now one combined one:
  --version [check]
- credentials file now allows alias for room, while allowed it is NOT recommended for
  performance reasons, it is an extra call to the server slowing down execution time
  • Loading branch information
8go committed Dec 3, 2022
1 parent eb131df commit 0fb2ba1
Show file tree
Hide file tree
Showing 7 changed files with 203 additions and 233 deletions.
14 changes: 7 additions & 7 deletions 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
Expand Up @@ -2,7 +2,7 @@

[package]
name = "matrix-commander"
version = "0.1.21"
version = "0.1.22"
edition = "2021"
description = "simple but convenient CLI-based Matrix client app for sending and receiving"
documentation = "https://docs.rs/matrix-commander"
Expand Down
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,15 @@ Usage: matrix-commander-rs [OPTIONS]
Options:
--contribute
Please contribute
-v, --version
Print version number
--version-check
Check if a newer version exists on crates.io. This connects to
https://crates.io and gets the version number of latest stable
release. There is no "calling home" on every run, only a "check
crates.io" upon request. Your privacy is protected. New release is
neither downloaded, nor installed. It just informs you
-v, --version [<CHECK>]
Print version number or check if a newer version exists on crates.io.
If used without an argument such as '--version' it will print the
version number. If 'check' is added ('--version check') then the
program connects to https://crates.io and gets the version number of
latest stable release. There is no "calling home" on every run, only
a "check crates.io" upon request. Your privacy is protected. New
release is neither downloaded, nor installed. It just informs you [possible
values: check]
-d, --debug...
Overwrite the default log level. If not used, then the default log
level set with environment variable 'RUST_LOG' will be used. If used,
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.21
0.1.22
17 changes: 9 additions & 8 deletions help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ Usage: matrix-commander-rs [OPTIONS]
Options:
--contribute
Please contribute
-v, --version
Print version number
--version-check
Check if a newer version exists on crates.io. This connects to
https://crates.io and gets the version number of latest stable
release. There is no "calling home" on every run, only a "check
crates.io" upon request. Your privacy is protected. New release is
neither downloaded, nor installed. It just informs you
-v, --version [<CHECK>]
Print version number or check if a newer version exists on crates.io.
If used without an argument such as '--version' it will print the
version number. If 'check' is added ('--version check') then the
program connects to https://crates.io and gets the version number of
latest stable release. There is no "calling home" on every run, only
a "check crates.io" upon request. Your privacy is protected. New
release is neither downloaded, nor installed. It just informs you [possible
values: check]
-d, --debug...
Overwrite the default log level. If not used, then the default log
level set with environment variable 'RUST_LOG' will be used. If used,
Expand Down
Loading

0 comments on commit 0fb2ba1

Please sign in to comment.