Merge pull request #725 from tdewey-rpi/release/1.8.2

meta: v1.8.2
This commit is contained in:
maxnet 2023-11-15 22:05:32 +01:00 committed by GitHub
commit c8135c4b1d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 2 deletions

15
debian/changelog vendored
View file

@ -1,3 +1,18 @@
rpi-imager (1.8.2) unstable; urgency=medium
* Home: Device filtering reworked to download OS list eagerly
* OS List: Fixed 'Recommended' tag annotation
* i18n: Added zh-TW Traditional Chinese translation
* i18n: Updated Korean, German, Ukranian, translations
* build: Linux: Fix libdrm dependency requirement on non-embedded
build.
* Commmon: Disable QML caching entirely
* OS customisation: Allow use if only cloudinit payload available
* OS customisation: Allow empty PSK for 'Open' WiFi networks.
* OS List: Use ImageList v4 URL
-- Floris Bos <bos@je-eigen-domein.nl> Thu, 15 Nov 2023 20:16:16 +0200
rpi-imager (1.8.1) unstable; urgency=medium
* Hide empty categories when filtering

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}.1")
set(IMAGER_VERSION_CSV "${IMAGER_VERSION_MAJOR},${IMAGER_VERSION_MINOR},1,0")
set(IMAGER_VERSION_STR "${IMAGER_VERSION_MAJOR}.${IMAGER_VERSION_MINOR}.2")
set(IMAGER_VERSION_CSV "${IMAGER_VERSION_MAJOR},${IMAGER_VERSION_MINOR},2,0")
add_definitions(-DIMAGER_VERSION_STR="${IMAGER_VERSION_STR}")
add_definitions(-DIMAGER_VERSION_CSV=${IMAGER_VERSION_CSV})
set(CMAKE_INCLUDE_CURRENT_DIR ON)