From 5ba8a5f8fffc81265086422a165c06bfbbf87ade Mon Sep 17 00:00:00 2001 From: Fuwn Date: Mon, 28 Feb 2022 04:12:24 -0800 Subject: fix(action): asset name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Accidentally kept the [Divina](https://github.com/divinaland/Divina) asset name when copying over the workflow file… --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ccc046e..1896a80 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -46,5 +46,5 @@ jobs: with: upload_url: ${{ steps.create_release.outputs.upload_url }} asset_path: ./target/release/para - asset_name: divina + asset_name: para asset_content_type: application/x-elf # x-msdownload for Windows -- cgit v1.2.3 From dada969c6086b115b7998597726601053395f76d Mon Sep 17 00:00:00 2001 From: Fuwn Date: Mon, 28 Feb 2022 20:48:41 -0800 Subject: docs(readme): punctuation, grammar, sections --- README.rst | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 79931bb..15b6eb3 100644 --- a/README.rst +++ b/README.rst @@ -8,14 +8,14 @@ What? A decoder and utility for the Flipnote Studios :code:`.ppm` animation format. -Why this over that? -------------------- +Why this implementation over `the original `_? +------------------------------------------------------------------------------------------------- This implementation is -- `SIGNIFICANTLY faster <#speed>`_ -- implemented in safe Rust (a language with strict type-checking!) -- being actively updated +- `SIGNIFICANTLY faster <#speed>`_, +- implemented in safe Rust (a language with strict type-checking!), +- and being actively updated. Speed ^^^^^ @@ -32,6 +32,14 @@ while ppm-parser took an average of 358.2232 milliseconds. Rust versus Python isn't very fair, however, this benchmark shows the speed improvements that para brings to the table. +Things To Come +-------------- + +- Support for other formats (namely :code:`.kwz`) +- Optimizations here and there +- Friendlier CLI +- Possible GUI + Getting up and Running ---------------------- -- cgit v1.2.3