diff options
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | bzipper-monochrome.svg | 11 | ||||
-rw-r--r-- | bzipper.svg | 14 | ||||
-rw-r--r-- | src/lib.rs | 2 |
5 files changed, 24 insertions, 12 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a561018..49dc848 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog This is the changelog of `bzipper`. +See `"README.md"` for more information. + +## 0.4.3 + +* Reformat changelog +* Update logo +* Add docs logo ## 0.4.2 @@ -1,6 +1,6 @@ [package] name = "bzipper" -version = "0.4.2" +version = "0.4.3" authors = ["Gabriel Bjørnager Jensen"] edition = "2021" description = "Binary (de)serialiser." diff --git a/bzipper-monochrome.svg b/bzipper-monochrome.svg new file mode 100644 index 0000000..904b7bd --- /dev/null +++ b/bzipper-monochrome.svg @@ -0,0 +1,11 @@ +<svg height="96" width="96" xmlns="http://www.w3.org/2000/svg"> + <mask id="z"> + <rect fill="white" height="100%" rx="8" width="100%" x="0" y="0" /> + + <polyline fill="none" points="20,28 20,20 76,20 36.970562748,76" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="8" /> + <polyline fill="none" points="76,68 76,76 20,76 59.029437252,20" stroke="black" stroke-linecap="round" stroke-linejoin="round" stroke-width="8" /> + </mask> + + <rect fill="#FFFFFF" height="100%" width="100%" x="0" y="0" /> + <rect fill="#B4202D" height="100%" mask="url(#z)" width="100%" x="0" y="0" /> +</svg> diff --git a/bzipper.svg b/bzipper.svg index 762e587..974c50b 100644 --- a/bzipper.svg +++ b/bzipper.svg @@ -1,17 +1,9 @@ <svg height="96" width="96" xmlns="http://www.w3.org/2000/svg"> - <!-- gradients: --> - - <!-- clips: --> - - <!-- masks: --> - <mask id="z"> - <polyline fill="none" points="20,28 20,20 78,20 36.970562748,76" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="8" /> + <polyline fill="none" points="20,28 20,20 76,20 36.970562748,76" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="8" /> <polyline fill="none" points="76,68 76,76 20,76 59.029437252,20" stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="8" /> </mask> - <!-- fills: --> - - <rect fill="#FFFFFF" mask="" height="96" width="96" x="0" y="0" /> - <rect fill="#B4202D" mask="url(#z)" height="96" width="96" x="0" y="0" /> + <rect fill="#FFFFFF" height="100%" width="100%" x="0" y="0" /> + <rect fill="#B4202D" height="100%" mask="url(#z)" width="100%" x="0" y="0" /> </svg> @@ -19,6 +19,8 @@ // er General Public License along with bzipper. If // not, see <https://www.gnu.org/licenses/>. +#![doc(html_logo_url = "https://gitlab.com/bjoernager/pollex/-/raw/master/bzipper-monochrome.svg?ref_type=heads")] + //! Binary (de)serialisation. //! //! Contrary to [Serde](https://crates.io/crates/serde/)/[Bincode](https://crates.io/crates/bincode/), the goal of `bzipper` is to serialise with a known size constraint. |