Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ android {
applicationId = "com.github.livingwithhippos.unchained"
minSdk = 27
targetSdk = 36
versionCode = 53
versionName = "1.4.0"
versionCode = 54
versionName = "1.4.1"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,15 @@ object ApiFactory {
InetAddress.getByName("8.8.8.8"),
InetAddress.getByName("8.8.4.4"),
)
// we noticed ipv6 was checked first and then failed for a plugin
.includeIPv6(false)
.build()
"cloudflare" ->
DnsOverHttps.Builder()
.client(bootstrapClient)
.url("https://cloudflare-dns.com/dns-query".toHttpUrl())
.bootstrapDnsHosts(InetAddress.getByName("1.1.1.1"))
.includeIPv6(false)
.build()
"quad9" ->
DnsOverHttps.Builder()
Expand All @@ -175,12 +178,14 @@ object ApiFactory {
InetAddress.getByName("9.9.9.9"),
InetAddress.getByName("149.112.112.112"),
)
.includeIPv6(false)
.build()
"mullvad" ->
DnsOverHttps.Builder()
.client(bootstrapClient)
.url("https://dns.mullvad.net/dns-query".toHttpUrl())
.bootstrapDnsHosts(InetAddress.getByName("194.242.2.2"))
.includeIPv6(false)
.build()
else ->
DnsOverHttps.Builder()
Expand All @@ -190,6 +195,7 @@ object ApiFactory {
InetAddress.getByName("9.9.9.9"),
InetAddress.getByName("149.112.112.112"),
)
.includeIPv6(false)
.build()
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3571,7 +3571,7 @@ class TestTorrentFileParser {
"speed": 1141000,
"seeders": 4
}
"""
"""
.trimIndent()
val item: TorrentItem = jsonAdapter.fromJson(json)!!

Expand Down Expand Up @@ -7176,7 +7176,7 @@ class TestTorrentFileParser {
"speed": 1141000,
"seeders": 4
}
"""
"""
.trimIndent()
val item: TorrentItem = jsonAdapter.fromJson(json)!!

Expand Down
23 changes: 11 additions & 12 deletions app/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,41 +1,40 @@
[versions]
android_gradle_plugin = "8.13.0"
android_gradle_plugin = "8.13.1"
appcompat = "1.7.1"
constraint_layout = "2.2.1"
coil = "2.7.0"
core_ktx = "1.17.0"
coroutines = "1.10.2"
# non compliant with new Play Store but it's not used in production
countly = "25.4.4"
countly = "25.4.6"
dagger = "2.57.2"
datetime = "0.7.1"
espresso = "3.7.0"
datastore = "1.1.7"
flexbox = "3.0.0"
fragment = "1.8.9"
hilt_navigation = "1.3.0"
jackson = "2.20.0"
jackson = "2.20.1"
jakarta_xml = "4.0.4"
jsoup = "1.21.2"
junit = "4.13.2"
kotlin = "2.2.20"
ktfmt = "0.24.0"
ksp = "2.2.20-2.0.4"
kotlin = "2.2.21"
ktfmt = "0.25.0"
ksp = "2.3.2"
lifecycle = "2.9.4"
material_three = "1.13.0"
moshi = "1.15.2"
navigation = "2.9.5"
# 5.1.0 has some issues
okhttp = "5.2.1"
navigation = "2.9.6"
okhttp = "5.3.1"
paging = "3.3.6"
protobuf = "4.32.1"
protobuf = "4.33.1"
protobuf_plugin = "0.9.5"
preference = "1.2.1"
recyclerview = "1.4.0"
recyclerview_selection = "1.2.0"
retrofit = "3.0.0"
robolectric = "4.16"
room = "2.8.2"
room = "2.8.3"
statemachine = "0.2.0"
stax = "1.0-2"
swiperefresh = "1.1.0"
Expand All @@ -46,7 +45,7 @@ test_junit = "1.3.0"
timber = "5.0.1"
viewpager2 = "1.1.0"
woodstox = "7.1.1"
work = "2.10.5"
work = "2.11.0"
documentfile = "1.1.0"

[libraries]
Expand Down