Skip to content

Commit

Permalink
Automatic merge branch 'current-stable' into 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Auto CI committed Feb 20, 2025
2 parents a3b3805 + 176a7d8 commit 2dfd914
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:installLocation="auto"
android:versionCode="846"
android:versionName="5.0.846">
android:versionCode="847"
android:versionName="5.0.847">

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" android:minSdkVersion="24"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="28" />
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/net/bible/service/cloudsync/CloudSync.kt
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ enum class CloudAdapters(val isEnabled: Boolean = true) {
val allEnabled: List<CloudAdapters> get() = CloudAdapters.entries.filter { it.isEnabled }
var current: CloudAdapters
get() {
val adapterStr = CommonUtils.settings.getString("sync_adapter", "GOOGLE_DRIVE")!!
return CloudAdapters.valueOf(adapterStr)
val adapterStr = CommonUtils.settings.getString("sync_adapter")
return adapterStr?.let { CloudAdapters.valueOf(it) }?: allEnabled.first()
}
set(value) {
CommonUtils.settings.setString("sync_adapter", value.name)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:8.8.0")
classpath("com.android.tools.build:gradle:8.8.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21")
classpath("org.jetbrains.kotlin:kotlin-serialization:$kotlinVersion")

Expand Down
19 changes: 19 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/5.0.847.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
- NextCloud support for Device Synchronization
- Add page number text option
- Settings & improvements for e-ink devices like Onyx Boox (#3354):
1) Setting to turn off animations
2) Setting to set app to monochrome mode
3) Setting to set a font multiplier
4) Setting to adjust swipe action in bible view

5.0
"What's new" video: https://youtu.be/bf33j4tLbxQ

Highlights:
- Support for EPUB electronic book format
- Bookmarks for non-bible documents
- Cloud synchronize (via Google drive currently)
- MyBible / MySword modules

See new AndBible website & blog: https://andbible.org
Support development financially: https://shop.andbible.org/

0 comments on commit 2dfd914

Please sign in to comment.