From be814b92c7ee92dbc71c108d0f207f8a5bff8e13 Mon Sep 17 00:00:00 2001 From: Tom Dewey Date: Wed, 15 Nov 2023 15:16:16 +0000 Subject: [PATCH] meta: v1.8.2 --- debian/changelog | 15 +++++++++++++++ src/CMakeLists.txt | 4 ++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 1c57f77..3c21cdf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Thu, 15 Nov 2023 20:16:16 +0200 + rpi-imager (1.8.1) unstable; urgency=medium * Hide empty categories when filtering diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 97dff99..a1cadd4 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}.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)