diff --git a/CHANGELOG.md b/CHANGELOG.md index c71a7da..2b763c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [v0.1.12] - 2024-11-08 +### 🔖 Version Tag + +- 🚀 **New Features**: support custom dither params, support 1 to 30 levels. 1 is the best level. +- 🔄 **Version Bump**: Version was bumped to 0.1.12 to reflect the updates and improvements. + ## [v0.1.11] - 2024-05-01 ### 🔖 Version Tag diff --git a/Cargo.toml b/Cargo.toml index 4192b4d..511f52d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icu_tool" -version = "0.1.11-1" +version = "0.1.12" edition = "2021" authors = ["Benign X", "W-Mai"] homepage = "https://github.com/W-Mai/icu" diff --git a/README.md b/README.md index 5c096be..db53777 100644 --- a/README.md +++ b/README.md @@ -35,13 +35,13 @@ brew install icu_tool - **PowerShell** ```powershell -powershell -c "irm https://github.com/W-Mai/icu/releases/download/v0.1.11/icu_tool-installer.ps1 | iex" +powershell -c "irm https://github.com/W-Mai/icu/releases/download/v0.1.12/icu_tool-installer.ps1 | iex" ``` - **Shell** ```shell -curl --proto '=https' --tlsv1.2 -LsSf https://github.com/W-Mai/icu/releases/download/v0.1.11/icu_tool-installer.sh | sh +curl --proto '=https' --tlsv1.2 -LsSf https://github.com/W-Mai/icu/releases/download/v0.1.12/icu_tool-installer.sh | sh ``` - **Windows MSI Installer** @@ -162,8 +162,8 @@ Options: stride of the output image [default: 1] -C, --output-color-format output color formats [possible values: rgb565, rgb565a8, rgb888, argb8888, xrgb8888, a1, a2, a4, a8, l8, i1, i2, i4, i8] - --dither - dither the output image so that it will look better on screens with low color depth + --dither + dither the output image so that it will look better on screens with low color depth 1 to 30, 1 is the best quality and 30 is the worst quality. 10 is recommended --lvgl-version LVGL Version, needed if [`ImageFormats`] is [`ImageFormats::LVGL`] [default: v9] [possible values: v9, v8] -h, --help diff --git a/icu_lib/Cargo.toml b/icu_lib/Cargo.toml index dfba465..2bcfa08 100644 --- a/icu_lib/Cargo.toml +++ b/icu_lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icu_lib" -version = "0.1.11" +version = "0.1.12" edition = "2021" authors = ["Benign X", "W-Mai"] homepage = "https://github.com/W-Mai/icu"