Skip to content

Commit

Permalink
Merge pull request #258 from HelloVolla/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
wurzer authored Aug 18, 2024
2 parents 0ab560e + 7703698 commit c4f237b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions AppGrid.qml
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,11 @@ LauncherPage {
"be.sncbnmbs.b2cmobapp": qsTr("De Trein"),
"be.nexuzhealth.mobile.mynexuz": qsTr("Mynexuzhealth"),
"com.codesynd.cashfree": qsTr("Bonsai"),
"be.introlution.myonlinecalendar": qsTr("MijnOnlineAgenda"),
"com.facebook.lite": qsTr("Facebook"),
"org.mozilla.fennec_fdroid": qsTr("Browser"),
"com.google.android.gm" : qsTr("Mail"),
"eu.faircode.email" : qsTr("Mail"),
"com.fsck.k9": qsTr("Mail"),
"at.bitfire.davdroid": qsTr("Sync"),
"hideme.android.vpn.noPlayStore": qsTr("VPN"),
Expand Down
2 changes: 1 addition & 1 deletion android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<manifest package="com.volla.launcher" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="2.4.17" android:versionCode="314" android:installLocation="auto">
<manifest package="com.volla.launcher" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="2.4.18" android:versionCode="315" android:installLocation="auto">
<uses-sdk android:minSdkVersion="28" android:targetSdkVersion="29"/>

<!-- The following comment will be replaced upon deployment with default permissions based on the dependencies of the application.
Expand Down
10 changes: 5 additions & 5 deletions main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -1109,6 +1109,11 @@ ApplicationWindow {
Component.onCompleted: {
checkCustomParameters()

if (Universal.theme !== settings.theme) {
mainView.switchTheme(settings.theme, firstStart)
} else {
AN.SystemDispatcher.dispatch("volla.launcher.colorAction", { "value": theme, "updateLockScreen": firstStart})
}
if (settings.firstStart) {
console.debug("AppWindow | ", "Will start tutorial")
var component = Qt.createComponent("/OnBoarding.qml")
Expand All @@ -1125,11 +1130,6 @@ ApplicationWindow {
settings.sttChecked = true
AN.SystemDispatcher.dispatch("volla.launcher.checkSttAvailability", {})
}
if (Universal.theme !== settings.theme) {
mainView.switchTheme(settings.theme, firstStart)
} else {
AN.SystemDispatcher.dispatch("volla.launcher.colorAction", { "value": theme, "updateLockScreen": firstStart})
}
if (fullscreen) {
appWindow.visibility = 5
}
Expand Down

0 comments on commit c4f237b

Please sign in to comment.