Skip to content

Releases: steganogram/stegano-rs

Release 0.5.3

12 Apr 07:41
fb7c831
Compare
Choose a tag to compare

🛠️ Maintenance

  • build(deps): bump dependencies #115

Contributors

Release 0.5.2

06 Oct 23:18
Compare
Choose a tag to compare

🛠️ Maintenance

  • chore(clippy): make clippy happy and bump dependencies #90

Contributors

Release 0.5.1

18 Apr 16:46
cc8c460
Compare
Choose a tag to compare

🛠️ Maintenance

  • chore(clippy): make clippy happy #69
  • build(deps): bump clap from 2.34.0 to 3.1.8 #69
  • build(deps): bump bitstream-io from 1.2.0 to 1.3.0 #69
  • build(deps): bump zip from 0.5.13 to 0.6.0 #69
  • build(deps): bump image from 0.23.14 to 0.24.1 #69
  • build(deps): bump tempfile from 3.2.0 to 3.3.0 #69

Contributors

Release 0.5.0

09 Dec 21:08
Compare
Choose a tag to compare

✨ Features

  • image color channel step customization
    introducing a new experimental cli argument --x-color-step-increment <number> that allows for custom increments
    that decide which color channels to take.
    For example ``--x-color-step-increment 2` would take the 0, the 2nc, the 4th, the 6th and so on color channel
    when iterating over pixels. Note that > 4 is the 2nd pixel, > 8 the 3rd pixel and so on.

Contributors

Release 0.4.10

15 Nov 22:59
Compare
Choose a tag to compare

🛠️ Maintenance

Contributors

Release 0.4.9

07 May 22:53
Compare
Choose a tag to compare

🛠️ Maintenance

Contributors

Release 0.4.8

Release 0.4.7

14 Mar 19:12
Compare
Choose a tag to compare

Release 0.4.6

WAV Audio media file support

22 Sep 23:11
Compare
Choose a tag to compare
  • ✨ Features

    • Add WAV Audio media file support - by sassman, pull/6

      stegano has now support for input and output wav audio files (*.wav). This means that hiding secret messages and files are now not only possible for png image media files but also wav audio files in the same way. For example like this:

      ❯ stegano hide \
        -i resources/plain/carrier-audio.wav \
        -d resources/secrets/Blah.txt \
           resources/secrets/Blah-2.txt \
        -o secret.wav
    • Add Arch Linux packages - by orhun, pull/10

      stegano can now be installed from available AUR packages using an AUR helper. For example like this:

      ❯ yay -S stegano
  • 🛠️ Maintenance

    • Update stegano-core to latest dependencies - by sassman, [pull/2]