Arch Linux with gcc 13.1.1 and cmake 3.26.3.
The AF Fine Tune value for Olympus can be extracted by adding this line to extract_af_tune() in src/gui/exiv2_property.cc: case OLYMPUS: return extract_property(QString("Exif.OlympusCs.AFFineTuneAdj")).section(" ", 0, 0); The exif tag contains three values and this code extracts only the first one. Not sure if it works the same way for all cameras and lenses, but on my E-M1 II, the first value is the value in use for the current image based on the lens and zoom focal length. The second value is the...
I was getting an error trying to build the latest with GCC. The problem is in CMakeLists.txt here: if(CMAKE_COMPILER_IS_GNUCXX) message(STATUS "Using a g++ compiler variant --- additional compiler warnings turned on") add_definitions(-Wall -W -Wno-unused-local-typedefs -std=c++11) endif(CMAKE_COMPILER_IS_GNUCXX) Removing -std=c++11 fixes it.