diff --git a/CHANGELOG.md b/CHANGELOG.md index bf8352ff8..2b5e5da6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [2.32.12] - 2025-02-23 + +### Fixed +- Fix problem where irrelevant traffic is shown in the moving map. (#497) + + ## [2.32.11] - 2025-02-22 ### Fixed diff --git a/CMakeLists.txt b/CMakeLists.txt index 3eb0e85d4..17adcdde3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ option(QTDEPLOY "Generate and run Qt deployment scripts" OFF) # Project data # -project(enroute VERSION 2.32.11) +project(enroute VERSION 2.32.12) set(APP_ID de.akaflieg_freiburg.enroute) set(DISPLAY_NAME "Enroute") math(EXPR PROJECT_VERSION_CODE 10000*${PROJECT_VERSION_MAJOR}+100*${PROJECT_VERSION_MINOR}+${PROJECT_VERSION_PATCH}) diff --git a/src/qml/items/Traffic.qml b/src/qml/items/Traffic.qml index 7021e9260..74d68ea48 100644 --- a/src/qml/items/Traffic.qml +++ b/src/qml/items/Traffic.qml @@ -37,7 +37,7 @@ MapQuickItem { enabled: trafficInfo.animate } - visible: trafficInfo.valid + visible: trafficInfo.relevant Connections { // This is a workaround against a bug in Qt 5.15.2. The position of the MapQuickItem