bump version, update readme
All checks were successful
Rust / build (pull_request) Successful in 6m26s
All checks were successful
Rust / build (pull_request) Successful in 6m26s
This commit is contained in:
parent
5dcdd0f311
commit
8a018a4846
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1526,7 +1526,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "servicepoint-simulator"
|
name = "servicepoint-simulator"
|
||||||
version = "0.2.3"
|
version = "0.2.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"env_logger",
|
"env_logger",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "servicepoint-simulator"
|
name = "servicepoint-simulator"
|
||||||
version = "0.2.3"
|
version = "0.2.4"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
publish = true
|
publish = true
|
||||||
license = "GPL-3.0-or-later"
|
license = "GPL-3.0-or-later"
|
||||||
|
|
26
README.md
26
README.md
|
@ -42,14 +42,24 @@ Make sure to run a release build, because a debug build _way_ slower.
|
||||||
Usage: servicepoint-simulator [OPTIONS]
|
Usage: servicepoint-simulator [OPTIONS]
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
--bind <BIND> address and port to bind to [default: 0.0.0.0:2342]
|
--bind <BIND>
|
||||||
-f, --font <FONT> The name of the font family to use. This defaults to the system monospace font.
|
address and port to bind to [default: 0.0.0.0:2342]
|
||||||
-s, --spacers add spacers between tile rows to simulate gaps in real display
|
-f, --font <FONT>
|
||||||
-r, --red Use the red color channel
|
The name of the font family to use. This defaults to the system monospace font.
|
||||||
-g, --green Use the green color channel
|
-s, --spacers
|
||||||
-b, --blue Use the blue color channel
|
add spacers between tile rows to simulate gaps in real display
|
||||||
-v, --verbose Set default log level lower. You can also change this via the RUST_LOG environment variable.
|
-r, --red
|
||||||
-h, --help Print help
|
Use the red color channel
|
||||||
|
-g, --green
|
||||||
|
Use the green color channel
|
||||||
|
-b, --blue
|
||||||
|
Use the blue color channel
|
||||||
|
-v, --verbose
|
||||||
|
Set default log level lower. You can also change this via the RUST_LOG environment variable.
|
||||||
|
--experimental-null-char-handling
|
||||||
|
When receiving a null byte as a char in the CharGridCommand, do not overwrite any pixels instead of clearing all pixels.
|
||||||
|
-h, --help
|
||||||
|
Print help
|
||||||
```
|
```
|
||||||
|
|
||||||
See [env_logger](https://docs.rs/env_logger/latest/env_logger/) to configure logging.
|
See [env_logger](https://docs.rs/env_logger/latest/env_logger/) to configure logging.
|
||||||
|
|
Loading…
Reference in a new issue