Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrading deps. #588

Merged
merged 1 commit into from
Dec 13, 2023
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
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ android {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.4"
kotlinCompilerExtensionVersion = "1.5.6"
}
namespace 'com.dessalines.thumbkey'
}
Expand All @@ -73,7 +73,7 @@ dependencies {
implementation "com.github.jeziellago:compose-markdown:0.3.5"
implementation "com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.11"

implementation 'androidx.navigation:navigation-compose:2.7.5'
implementation 'androidx.navigation:navigation-compose:2.7.6'
implementation 'com.github.alorma:compose-settings-ui-m3:1.0.2'

// To use Kotlin annotation processing tool
Expand All @@ -95,14 +95,14 @@ dependencies {
implementation 'androidx.compose.runtime:runtime-livedata:1.5.4'
implementation "androidx.lifecycle:lifecycle-runtime-compose:2.6.2"

implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.20'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.21'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.compose.ui:ui:1.5.4'
implementation 'androidx.compose.material3:material3:1.1.2'
implementation 'androidx.compose.material:material-icons-extended:1.5.4'
implementation 'androidx.compose.material3:material3-window-size-class:1.1.2'
implementation 'androidx.compose.ui:ui-tooling:1.5.4'
implementation 'androidx.activity:activity-compose:1.8.1'
implementation 'androidx.activity:activity-compose:1.8.2'
implementation "com.louiscad.splitties:splitties-systemservices:3.0.0"
implementation "com.louiscad.splitties:splitties-views:3.0.0"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ fun ancom(): Pair<ColorScheme, ColorScheme> {
val md_theme_dark_inverseSurface = Color(0xFFE0E0E0)
val md_theme_dark_inversePrimary = Color(0xFF404040)
val md_theme_dark_shadow = Color(0xFF000000)
val md_theme_dark_surfaceTint = Color(0x000000)
val md_theme_dark_surfaceTint = Color(0xFF000000)
val md_theme_dark_outlineVariant = Color(0xFF404040)
val md_theme_dark_scrim = Color(0xFF000000)

Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/thumb_key_icon.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<vector android:autoMirrored="true"
android:height="300dp"
android:width="300dp"
android:height="200dp"
android:width="200dp"
android:viewportHeight="300"
android:viewportWidth="300"
xmlns:android="http://schemas.android.com/apk/res/android">
Expand Down
1 change: 0 additions & 1 deletion app/src/main/res/values-da/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
<string name="source_code">Kildekode</string>
<string name="source_code_subtitle">Tommeltast er libre open-source software, licenseret under GNU Affero General Public License v3.0</string>
<string name="look_and_feel">Udseende og tilpasning</string>
<string name="behavior"></string>
<string name="layouts">Tastaturer</string>
<string name="theme">Tema</string>
<string name="theme_color">Tema farve</string>
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ buildscript {
plugins {
id 'com.android.application' version '8.2.0' apply false
id 'com.android.library' version '8.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.9.20' apply false
id 'org.jetbrains.kotlin.android' version '1.9.21' apply false
id 'org.jmailen.kotlinter' version "4.1.0" apply false
id 'com.google.devtools.ksp' version "1.9.20-1.0.14" apply false
id 'com.google.devtools.ksp' version "1.9.21-1.0.15" apply false
}

subprojects {
Expand Down