diff --git a/README.md b/README.md index 04da83f..d819b98 100644 --- a/README.md +++ b/README.md @@ -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
- Character Map Demo + Character Map Demo
## Overview diff --git a/wavefc-cli/src/string_process.rs b/wavefc-cli/src/string_process.rs index 0a82aea..92c388b 100644 --- a/wavefc-cli/src/string_process.rs +++ b/wavefc-cli/src/string_process.rs @@ -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 {