Skip to content

Commit

Permalink
Fix a startup crash and UI rendering on old devices
Browse files Browse the repository at this point in the history
Affects: #22
Affects: #20
  • Loading branch information
io7m committed Oct 12, 2024
1 parent 60b103f commit 0abf68f
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 5 deletions.
16 changes: 13 additions & 3 deletions README-CHANGES.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<c:change date="2024-09-25T00:00:00+00:00" summary="Add release signing for F-Droid."/>
</c:changes>
</c:release>
<c:release date="2024-10-08T21:04:03+00:00" is-open="true" ticket-system="com.github.io7m.exfilac" version="1.1.0">
<c:release date="2024-10-12T11:24:07+00:00" is-open="true" ticket-system="com.github.io7m.exfilac" version="1.1.0">
<c:changes>
<c:change date="2024-10-08T00:00:00+00:00" summary="Fix status screen text on small screens.">
<c:tickets>
Expand All @@ -57,12 +57,22 @@
<c:ticket id="16"/>
</c:tickets>
</c:change>
<c:change date="2024-10-08T00:00:00+00:00" summary="Add more upload schedules.">
<c:change date="2024-10-08T00:00:00+00:00" summary="Add more upload schedules. Thanks @ArtieFuzzz!">
<c:tickets>
<c:ticket id="19"/>
</c:tickets>
</c:change>
<c:change date="2024-10-08T21:04:03+00:00" summary="Allow for more prompt cancellation behaviour."/>
<c:change date="2024-10-08T00:00:00+00:00" summary="Allow for more prompt cancellation behaviour."/>
<c:change date="2024-10-12T00:00:00+00:00" summary="Fix a startup crash due to a missing JDK method. Thanks @kri164!.">
<c:tickets>
<c:ticket id="20"/>
</c:tickets>
</c:change>
<c:change date="2024-10-12T11:24:07+00:00" summary="Fix UI brokenness on Android 9+ devices.">
<c:tickets>
<c:ticket id="22"/>
</c:tickets>
</c:change>
</c:changes>
</c:release>
</c:releases>
Expand Down
1 change: 1 addition & 0 deletions com.io7m.exfilac.main/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ dependencies {
this.implementation(libs.androidx.tracing)
this.implementation(libs.androidx.vectordrawable)
this.implementation(libs.androidx.vectordrawable.animated)
this.implementation(libs.androidx.versionedparcelable)
this.implementation(libs.androidx.viewpager)
this.implementation(libs.androidx.viewpager2)

Expand Down
1 change: 1 addition & 0 deletions com.io7m.exfilac.main/src/main/res/layout/main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="?android:windowBackground"
android:layout_width="match_parent"
android:layout_height="match_parent">

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="?android:windowBackground"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
Expand Down
1 change: 1 addition & 0 deletions com.io7m.exfilac.main/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<style name="Exfilac.TabLayout" parent="Widget.Material3.TabLayout">
<item name="materialThemeOverlay">@style/Exfilac.Overlay.TabLayout</item>
<item name="tabRippleColor">@color/primary3</item>
<item name="android:background">#ffffff</item>
</style>

<style name="Exfilac.Overlay.TabLayout" parent="">
Expand Down
4 changes: 2 additions & 2 deletions libraries.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
amazon_aws = "2.27.8"
anethum = "1.1.1"
blackthorne = "2.0.2"
darco = "2.0.0"
darco = "2.0.1"
ervilla = "1.0.0"
jade = "1.0.3"
jlexing = "3.2.0"
Expand All @@ -11,7 +11,7 @@ junit_platform = "1.11.0"
junreachable = "4.0.2"
jxe = "2.0.0"
logback_android = "3.0.0"
opentelemetry = "1.41.0"
opentelemetry = "1.43.0"
slf4j = "2.0.16"
sqlite = "3.46.1.0"
trasco = "3.0.0"
Expand Down

0 comments on commit 0abf68f

Please sign in to comment.