Skip to content

Commit

Permalink
Fix #497
Browse files Browse the repository at this point in the history
  • Loading branch information
kebekus committed Feb 23, 2025
1 parent a87be28 commit 25f2518
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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})
Expand Down
2 changes: 1 addition & 1 deletion src/qml/items/Traffic.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 25f2518

Please sign in to comment.