Skip to content

Commit 550e09f

Browse files
committed
Release v0.6.3
1 parent 3bd0a90 commit 550e09f

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

app/src/main/kotlin/com/looker/droidify/ui/settings/SettingsFragment.kt

+2-3
Original file line numberDiff line numberDiff line change
@@ -312,9 +312,7 @@ class SettingsFragment : Fragment() {
312312
}
313313
launch {
314314
viewModel.backgroundTask.collect {
315-
if (it) {
316-
binding.allowBackgroundWork.root.visibility = View.GONE
317-
}
315+
binding.allowBackgroundWork.root.isVisible = !it
318316
}
319317
}
320318
}
@@ -386,6 +384,7 @@ class SettingsFragment : Fragment() {
386384

387385
private fun updateSettings(settings: Settings) {
388386
with(binding) {
387+
allowBackgroundWork.root.isVisible = settings.autoSync != AutoSync.NEVER
389388
val allowProxies = settings.proxy.type != ProxyType.DIRECT
390389
proxyHost.root.isVisible = allowProxies
391390
proxyPort.root.isVisible = allowProxies

build-logic/structure/src/main/kotlin/DefaultConfig.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ object DefaultConfig {
44
const val appId = "com.looker.droidify"
55
const val compileSdk = 34
66
const val minSdk = 23
7-
const val versionCode = 620
8-
const val versionName = "0.6.2"
7+
const val versionCode = 630
8+
const val versionName = "0.6.3"
99
}

metadata/en-US/changelogs/630.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Fixed:
2+
- Repeated asking for background permission
3+
4+
Changed:
5+
- Move permission to settings page
6+
- Don't ask for permission if auto sync is off

0 commit comments

Comments
 (0)