diff --git a/CHANGELOG.md b/CHANGELOG.md index 8def1a1..af1ee6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ 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.3] - 2023-05-02 +### Removed +- Im-App purchase on android + # [0.7.1] - 2022-08-22 ### Fixed - remove unused ACCESS_FINE_LOCATION permission diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml index 80a6986..58c8185 100644 --- a/android/AndroidManifest.xml +++ b/android/AndroidManifest.xml @@ -10,7 +10,7 @@ - + @@ -87,7 +87,7 @@ - + diff --git a/blueROCK.pro b/blueROCK.pro index e2435cf..a412723 100644 --- a/blueROCK.pro +++ b/blueROCK.pro @@ -1,7 +1,7 @@ -QT += quick qml quickcontrols2 purchasing +QT += quick qml quickcontrols2 CONFIG += c++11 -VERSION = 0.7.2 +VERSION = 0.7.4 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 = 30 + ANDROID_TARGET_SDK_VERSION = 31 ANDROID_HOME = $$(ANDROID_HOME) include($$ANDROID_HOME/android_openssl/openssl.pri) @@ -97,6 +97,7 @@ android { } ios { + QT += purchasing OBJECTIVE_SOURCES += sources/shareUtils/ios/iosshareutils.mm \ sources/iospermissionutils.mm \ sources/shareUtils/ios/docviewcontroller.mm diff --git a/resources/qml/Components/SpeedFlowChartPopup.qml b/resources/qml/Components/SpeedFlowChartPopup.qml index 3200d82..93d162f 100644 --- a/resources/qml/Components/SpeedFlowChartPopup.qml +++ b/resources/qml/Components/SpeedFlowChartPopup.qml @@ -9,7 +9,7 @@ Rectangle { // always unlock in debug mode //property bool unlocked: QT_DEBUG || appSettings.read("speedBackendPurchase") === "1" - property bool unlocked: appSettings.read("speedBackendPurchase") === "1" + property bool unlocked: Qt.platform.os !== "iso" || appSettings.read("speedBackendPurchase") === "1" Component.onCompleted: { console.warn("unlocked:", appSettings.read("speedBackendPurchase")) diff --git a/resources/qml/Pages/StartPage.qml b/resources/qml/Pages/StartPage.qml index 72dde86..06e416d 100644 --- a/resources/qml/Pages/StartPage.qml +++ b/resources/qml/Pages/StartPage.qml @@ -171,7 +171,7 @@ Page { id: aboutBluerockDisclaimerDialog Material.theme: root.Material.theme //% "privacy policy" - title: "blueROCK v" + APP_VERSION + "
By Itsblue Development, " + qsTrId("#privacyPolicy") + "" + title: "blueROCK v" + APP_VERSION + "
By Itsblue Development, " + qsTrId("#privacyPolicy") + "" //% "This app was built using the Qt Framework licensed under the GNU lgplV3 license.

This app is open source and licensed under the GNU agplV3 license, the source code can be found here.

Resultservice and rankings provided by digital ROCK." content: qsTrId("#aboutBluerockDisclaimer") }