release: 0.7.0 #37
4 changed files with 17 additions and 4 deletions
12
CHANGELOG.md
12
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-14
|
||||
### 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
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0"?>
|
||||
<manifest package="com.itsblue.blueROCKtest" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="-- %%INSERT_VERSION_NAME%% --" android:versionCode="-- %%INSERT_VERSION_CODE%% --" android:installLocation="auto">
|
||||
<manifest package="com.itsblue.blueROCK" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="-- %%INSERT_VERSION_NAME%% --" android:versionCode="-- %%INSERT_VERSION_CODE%% --" android:installLocation="auto">
|
||||
<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
|
||||
Remove the comment if you do not require these default permissions. -->
|
||||
<!-- %%INSERT_PERMISSIONS -->
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue