Releases: AspireOne/Text-Compression
Releases · AspireOne/Text-Compression
Text Compression
-
Fixed speed bottlenecks in both compression and decompression, resulting in extreme speed improvement (5 minutes vs 5 seconds in a file with 6mb of text).
-
Decreased program's size by 55% (as if it wasn't already ridiculously small lol)
Text Compression
- Every file is now processed on it's own thread.
Text Compression
- The amount of bits used for representing the characters' codes length is now dynamic, choosing between 3-6 bits. The previous, hard-coded value was 4 bits. This means
- a bit better compression in smaller files
- increase of the maximal code length from 2^4 - 1 = 15 to 2^6 - 1 = 63. This means that the compression is now able to compress files with much more characters, and it's very unlikely that any ordinary text would exceed that value.
- Removed some methods meant for debugging purposes
Text Compression
- first release