Skip to content

Latest commit

 

History

History
188 lines (151 loc) · 8.33 KB

CHANGELOG.md

File metadata and controls

188 lines (151 loc) · 8.33 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

0.5.3 - 2023-04-11

🛠️ Maintenance

  • build(deps): bump dependencies #115

Contributors

0.5.2 - 2022-10-07

🛠️ Maintenance

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

Contributors

0.5.1 - 2022-04-18

🛠️ 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

0.5.0 - 2021-12-09

✨ 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

0.4.10 - 2021-11-15

🛠️ Maintenance

Contributors

0.4.9 - 2021-05-07

🛠️ Maintenance

Contributors

0.4.8 - 2021-05-01

🛠️ Maintenance

Contributors

0.4.7 - 2021-03-14

🛠️ Maintenance

0.4.6 - 2021-03-05

🛠️ Maintenance

0.4.5 - 2021-01-09

🛠️ Maintenance

  • CHANGELOG.md follows now a new format
  • Refactored CI Pipeline for efficiency

Fixed

  • broken link in the CHANGELOG.md
  • outdated dependencies are now up2date

0.4.1 - 2020-09-23

✨ 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

[0.4.0] - 2020-09-23

Added

  • 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
  • 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

Changed

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

[0.3.2] - 2020-07-10

Added

  • Changelog based on conventional-commits

[0.3.1] - 2020-07-07

Added

  • Support for the legacy content version 2
  • Support for hiding multiple files at once
  • Benchmarks for image en/de-coding see cargo bench
  • More end to end test cases
  • Badges to README.md

Changed

  • Documentation of README.md is now better and more explicit
  • Reduce redundancies of properties that can be extracted from Cargo.toml

Fixed

  • Typos in cli output and descriptions