meta: Release 1.8.4

This commit is contained in:
Tom Dewey 2023-12-22 15:37:02 +00:00
parent ffeadef654
commit 30433d512f
2 changed files with 14 additions and 2 deletions

12
debian/changelog vendored
View file

@ -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 <bos@je-eigen-domein.nl> Fri, 22 Dec 2023 16:00:00 +0200
rpi-imager (1.8.3) unstable; urgency=medium
* Home: Fixed "No filtering" option

View file

@ -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)