From 8a018a484665a6c350b8a4dd62a95ceff56045c3 Mon Sep 17 00:00:00 2001 From: Vinzenz Schroeter Date: Sat, 12 Jul 2025 13:59:38 +0200 Subject: [PATCH] bump version, update readme --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 26 ++++++++++++++++++-------- 3 files changed, 20 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 86521f0..abb6812 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1526,7 +1526,7 @@ dependencies = [ [[package]] name = "servicepoint-simulator" -version = "0.2.3" +version = "0.2.4" dependencies = [ "clap", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index 7f923f2..a179ced 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "servicepoint-simulator" -version = "0.2.3" +version = "0.2.4" edition = "2021" publish = true license = "GPL-3.0-or-later" diff --git a/README.md b/README.md index 17d5be5..2610a25 100644 --- a/README.md +++ b/README.md @@ -42,14 +42,24 @@ Make sure to run a release build, because a debug build _way_ slower. Usage: servicepoint-simulator [OPTIONS] Options: - --bind address and port to bind to [default: 0.0.0.0:2342] - -f, --font The name of the font family to use. This defaults to the system monospace font. - -s, --spacers add spacers between tile rows to simulate gaps in real display - -r, --red 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. - -h, --help Print help + --bind + address and port to bind to [default: 0.0.0.0:2342] + -f, --font + The name of the font family to use. This defaults to the system monospace font. + -s, --spacers + add spacers between tile rows to simulate gaps in real display + -r, --red + 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.