From 6ca5b81f6de9ada87da2187397ed6a1f335b2205 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Sun, 14 Aug 2022 17:53:35 +0200 Subject: [PATCH 1/3] Fix: Font size on Android --- sources/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sources/main.cpp b/sources/main.cpp index fb66458..18ee8fc 100644 --- a/sources/main.cpp +++ b/sources/main.cpp @@ -33,6 +33,9 @@ int main(int argc, char *argv[]) QGuiApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); QGuiApplication app(argc, argv); + QFont f = app.font(); + f.setPixelSize(16); + app.setFont(f); // translation QString localeName = QLocale::system().bcp47Name(); -- 2.43.4 From 367807b90d21f02f729c2d83b6a43dbf49ed3545 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Sun, 14 Aug 2022 17:53:56 +0200 Subject: [PATCH 2/3] Chore: prepare release 0.7.0 --- CHANGELOG.md | 12 +++++++++++- android/AndroidManifest.xml | 2 +- blueROCK.pro | 4 ++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37f8c88..1171cbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -# [0.6.2] - UNRELEASED +# [0.7.0] - 2022-08-11 +### Added +- Startnumbers in speed flowchart + +### Fixed +- Sharing the poster on Android +- Rendering the speed flowchart when starting at 1/2-Final + +### Changed +- The qualification rank is now smaller and grayed out in the speed flowchart + ### Removed - URL handler for app.bluerock.dev, it is not needed diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml index 3c91ccd..0a1559b 100644 --- a/android/AndroidManifest.xml +++ b/android/AndroidManifest.xml @@ -1,5 +1,5 @@ - + diff --git a/blueROCK.pro b/blueROCK.pro index 86a5836..204d369 100644 --- a/blueROCK.pro +++ b/blueROCK.pro @@ -1,7 +1,7 @@ QT += quick qml quickcontrols2 purchasing CONFIG += c++11 -VERSION = 0.6.2 +VERSION = 0.7.0 TARGET = blueROCK # The following define makes your compiler emit warnings if you use @@ -89,7 +89,7 @@ android { ANDROID_VERSION_NAME = $$VERSION ANDROID_VERSION_CODE = $$droidVersionCode($$ANDROID_VERSION_NAME) - ANDROID_TARGET_SDK_VERSION = 29 + ANDROID_TARGET_SDK_VERSION = 30 ANDROID_HOME = $$(ANDROID_HOME) include($$ANDROID_HOME/android_openssl/openssl.pri) -- 2.43.4 From c13d108cff620760c1db3bada030bee5a78b85e1 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Sun, 14 Aug 2022 17:55:26 +0200 Subject: [PATCH 3/3] Chore: update release date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1171cbe..5e9853a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -# [0.7.0] - 2022-08-11 +# [0.7.0] - 2022-08-14 ### Added - Startnumbers in speed flowchart -- 2.43.4