diff --git a/CHANGELOG.md b/CHANGELOG.md index 0376cbb..4134a41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Change Log ========== +Version 2.0.11 *(2023-01-31)* +---------------------------- + +- Enable HDR mode by default on Camera Module 3. +- Added `--nohdr` option (only affects if Camera Module 3 is used). + Version 2.0.10 *(2023-01-30)* ---------------------------- diff --git a/README.md b/README.md index 285705b..feb541d 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.10/picam-2.0.10-`uname -m`.tar.xz -tar xvf picam-2.0.10-*.tar.xz -cp picam-2.0.10-*/picam ~/picam/ +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/ # Run picam cd ~/picam @@ -187,7 +187,7 @@ $ touch hooks/unmute #### Command options ```txt -picam version 2.0.10 +picam version 2.0.11 Usage: picam [options] Options: @@ -286,6 +286,7 @@ Options: --evcomp Set Exposure Value compensation (-8..8) (default: 0) --shutter Set shutter speed in microseconds (default: auto). Implies --vfr. + --nohdr Disable HDR mode. HDR is enabled by default on Camera Module 3. --roi Set region of interest (crop rect) in ratio (0.0-1.0). (default: 0,0,1,1) --roi affects performance and may reduce fps. diff --git a/picam_option/picam_option.hpp b/picam_option/picam_option.hpp index c48919a..3898f39 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.10" +#define PROGRAM_VERSION "2.0.11" typedef struct white_balance_option { const char *name;