Skip to content

Releases: AspireOne/Text-Compression

Text Compression

29 Oct 23:02
Compare
Choose a tag to compare
  • 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

23 May 15:13
Compare
Choose a tag to compare
  • Every file is now processed on it's own thread.

Text Compression

19 May 22:37
5894dc4
Compare
Choose a tag to compare
  • 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
  1. a bit better compression in smaller files
  2. 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

19 May 14:29
Compare
Choose a tag to compare
  • first release