diff --git a/CHANGELOG.md b/CHANGELOG.md index 4134a41..c9dcf2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Change Log ========== +Version 2.0.12 *(2023-02-16)* +---------------------------- + +- Added Noise Gate feature (`--ngate` option). (by @francescovannini) + Version 2.0.11 *(2023-01-31)* ---------------------------- diff --git a/README.md b/README.md index 7bf525a..dec16fe 100644 --- a/README.md +++ b/README.md @@ -64,9 +64,9 @@ chmod +x make_dirs.sh alsamixer # Install picam binary -wget https://github.com/iizukanao/picam/releases/download/v2.0.11/picam-2.0.11-`uname -m`.tar.xz -tar xvf picam-2.0.11-*.tar.xz -cp picam-2.0.11-*/picam ~/picam/ +wget https://github.com/iizukanao/picam/releases/download/v2.0.12/picam-2.0.12-`uname -m`.tar.xz +tar xvf picam-2.0.12-*.tar.xz +cp picam-2.0.12-*/picam ~/picam/ # Run picam cd ~/picam @@ -187,7 +187,7 @@ $ touch hooks/unmute #### Command options ```txt -picam version 2.0.11 +picam version 2.0.12 Usage: picam [options] Options: diff --git a/picam_option/picam_option.hpp b/picam_option/picam_option.hpp index dabdf1a..606c163 100644 --- a/picam_option/picam_option.hpp +++ b/picam_option/picam_option.hpp @@ -11,7 +11,7 @@ extern "C" { #include "text/text.h" #define PROGRAM_NAME "picam" -#define PROGRAM_VERSION "2.0.11" +#define PROGRAM_VERSION "2.0.12" typedef struct white_balance_option { const char *name;