diff options
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | README.md | 1 | ||||
-rwxr-xr-x | benoit.desktop | 5 | ||||
-rw-r--r-- | source/benoit/benoit.rs | 2 |
4 files changed, 12 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 56c5591..26a68fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 2.1.1 + +* Update readme +* Add desktop entry + # 2.1.0 * Refactor code structure @@ -12,6 +12,7 @@ benoit [path] Benoit makes use of the following external libraries: +* [ctor](https://crates.io/crates/ctor) and [enum-iterator](https://crates.io/crates/enum-iterator) for pre-calculating palettes * [PNG](https://crates.io/crates/png) for encoding PNG images * [Rayon](https://crates.io/crates/rayon) for threadpooling * [Rug](https://crates.io/crates/rug) for multi‐precision diff --git a/benoit.desktop b/benoit.desktop new file mode 100755 index 0000000..f5e948e --- /dev/null +++ b/benoit.desktop @@ -0,0 +1,5 @@ +[Desktop Entry] +Type=Application +Name=Benoit +Exec=/usr/bin/benoit +Icon=benoit diff --git a/source/benoit/benoit.rs b/source/benoit/benoit.rs index 1214d16..c384b5b 100644 --- a/source/benoit/benoit.rs +++ b/source/benoit/benoit.rs @@ -45,7 +45,7 @@ pub struct Version<T> { pub const VERSION: Version::<u32> = Version::<u32> { major: 0x2, minor: 0x1, - patch: 0x0, + patch: 0x1, }; pub const PRECISION: u32 = 0x80; |