diff options
| author | Fuwn <[email protected]> | 2022-03-01 14:39:04 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-03-01 14:39:04 -0800 |
| commit | c2cb329612f0a16a1dc1d0641e91070274823db6 (patch) | |
| tree | cab415a21ec3581dec918152b3cc5300274751d2 | |
| parent | 2a8df03dc636d3ee385ac35116186b12345855fb (diff) | |
| parent | dada969c6086b115b7998597726601053395f76d (diff) | |
| download | para-c2cb329612f0a16a1dc1d0641e91070274823db6.tar.xz para-c2cb329612f0a16a1dc1d0641e91070274823db6.zip | |
Merge branch 'main' of github.com:Usugata/para
| -rw-r--r-- | .github/workflows/release.yaml | 2 | ||||
| -rw-r--r-- | README.rst | 18 |
2 files changed, 14 insertions, 6 deletions
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 @@ -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 <https://github.com/Flipnote-Collective/ppm-parser>`_? +------------------------------------------------------------------------------------------------- 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 ---------------------- |