diff --git a/debian/changelog b/debian/changelog index 37fb4a2..27946ea 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +rpi-imager (1.8.4) unstable; urgency=medium + + * OS customisation: Fixed #531, which caused password entry + to drop the first character + * OS customisation: Impose character limits on usernames & + hostnames + * i18n: Added Polish translation + * i18n: Updated Catalan, Japanese translations + * cli: Fixed local file passing via --repo + + -- Floris Bos Fri, 22 Dec 2023 16:00:00 +0200 + rpi-imager (1.8.3) unstable; urgency=medium * Home: Fixed "No filtering" option diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 16356b7..2c67cd4 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -8,8 +8,8 @@ OPTION (ENABLE_TELEMETRY "Enable sending telemetry" ON) project(rpi-imager LANGUAGES CXX C) set(IMAGER_VERSION_MAJOR 1) set(IMAGER_VERSION_MINOR 8) -set(IMAGER_VERSION_STR "${IMAGER_VERSION_MAJOR}.${IMAGER_VERSION_MINOR}.3") -set(IMAGER_VERSION_CSV "${IMAGER_VERSION_MAJOR},${IMAGER_VERSION_MINOR},3,0") +set(IMAGER_VERSION_STR "${IMAGER_VERSION_MAJOR}.${IMAGER_VERSION_MINOR}.4") +set(IMAGER_VERSION_CSV "${IMAGER_VERSION_MAJOR},${IMAGER_VERSION_MINOR},4,0") add_definitions(-DIMAGER_VERSION_STR="${IMAGER_VERSION_STR}") add_definitions(-DIMAGER_VERSION_CSV=${IMAGER_VERSION_CSV}) set(CMAKE_INCLUDE_CURRENT_DIR ON)