Skip to content

Commit

Permalink
Added README warnings and updated demo (to image). String mode for th…
Browse files Browse the repository at this point in the history
…e CLI now always produced a coloured output.
  • Loading branch information
SetKu committed Oct 14, 2024
1 parent 0f2d5df commit 715e8df
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,16 @@
![Rust](https://img.shields.io/badge/Rust-FA7343?style=for-the-badge&logo=rust&logoColor=white)
![Crates.io](https://img.shields.io/crates/v/wavefc?style=for-the-badge)

> [!WARNING]
> This project is no longer actively maintained. Beware of bugs.
> [!NOTE]
> In version 3.2.0, a massive performance improvement was introduced with the removal of randomized attempts. Now, only a single attempt is needed to perform a collapse. If you're using an older version, consider updating to take advantage.
## Character Map Demo

<div align="center">
<img alt="Character Map Demo" src="https://i.postimg.cc/8cMKf69Y/Trimmed-2.gif" width="85%" height="85%" style="border-radius:12px;"/>
<img alt="Character Map Demo" src="https://i.imgur.com/il2KnjV.png" width="80%" style="border-radius:12px;"/>
</div>

## Overview
Expand Down
2 changes: 1 addition & 1 deletion wavefc-cli/src/string_process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ pub fn handler(matches: &ArgMatches) -> Result<(), String> {
let c_dur = c_start.elapsed();

let result = wave.perfect_rep()?;
let string = reconstruct_string(result, &source_map, print, print);
let string = reconstruct_string(result, &source_map, true, print);
println!("{}", string);

if print {
Expand Down

0 comments on commit 715e8df

Please sign in to comment.