Skip to content

Commit

Permalink
Merge branch 'upgrade_deps_8' into T_symbol_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines committed Jun 4, 2023
2 parents aa89477 + 3bc6f6a commit 70641be
Show file tree
Hide file tree
Showing 11 changed files with 2,353 additions and 18 deletions.
8 changes: 4 additions & 4 deletions .woodpecker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ pipeline:
prettier_markdown_check:
image: tmknom/prettier
commands:
- prettier -c *.md
- prettier -c "*.md" "*.yml"

build_project:
image: cimg/android:2023.05
commands:
- sudo chown -R circleci:circleci .
- ./gradlew assembleDebug

notify_on_failure:
notify:
image: alpine:3
commands:
- apk add curl
- "curl -d'CI build failed: ${CI_BUILD_LINK}' ntfy.sh/thumbkey_ci"
- "curl -d'Thumb-Key build ${CI_BUILD_STATUS}: ${CI_BUILD_LINK}' ntfy.sh/thumbkey_ci"
when:
status: [failure]
status: [failure, success]
29 changes: 29 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
# Thumb-Key 1.5.0 (2023-05-29)

## What's Changed

- Update ThumbKeyIDv1Symbols.kt by @awandepan in https://github.com/dessalines/thumb-key/pull/248
- Adding French and Russian MessageEase Keyboards. by @dessalines in https://github.com/dessalines/thumb-key/pull/255

## New Contributors

- @awandepan made their first contribution in https://github.com/dessalines/thumb-key/pull/248

**Full Changelog**: https://github.com/dessalines/thumb-key/compare/1.4.1...1.5.0

# Thumb-Key 1.4.0 (2023-05-25)

## What's Changed

- MessageEaseENSymbols corrected by @FranciscoTrigo in https://github.com/dessalines/thumb-key/pull/239
- Add Georgian keyboard layout by @gvalson in https://github.com/dessalines/thumb-key/pull/240
- Adding indonesian keyboard. Fixes #241 by @dessalines in https://github.com/dessalines/thumb-key/pull/245
- Upgrade deps by @dessalines in https://github.com/dessalines/thumb-key/pull/246

## New Contributors

- @FranciscoTrigo made their first contribution in https://github.com/dessalines/thumb-key/pull/239
- @gvalson made their first contribution in https://github.com/dessalines/thumb-key/pull/240

**Full Changelog**: https://github.com/dessalines/thumb-key/compare/1.3.0...1.4.0

# Thumb-Key 1.3.0 (2023-05-21)

## What's Changed
Expand Down
20 changes: 10 additions & 10 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId "com.dessalines.thumbkey"
minSdk 21
targetSdk 33
versionCode 18
versionName "1.3.0"
versionCode 20
versionName "1.5.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down Expand Up @@ -65,7 +65,7 @@ android {

dependencies {
implementation "androidx.navigation:navigation-compose:2.5.3"
implementation 'com.github.alorma:compose-settings-ui-m3:0.26.0'
implementation 'com.github.alorma:compose-settings-ui-m3:0.27.0'

// To use Kotlin annotation processing tool
ksp "androidx.room:room-compiler:2.5.1"
Expand All @@ -83,17 +83,17 @@ dependencies {
implementation "androidx.room:room-paging:2.5.1"

// LiveData
implementation "androidx.compose.runtime:runtime-livedata:1.4.2"
implementation "androidx.compose.runtime:runtime-livedata:1.4.3"
implementation "androidx.lifecycle:lifecycle-runtime-compose:2.6.1"

implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.21'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation "androidx.compose.ui:ui:1.4.2"
implementation "androidx.compose.material3:material3:1.0.1"
implementation "androidx.compose.material:material-icons-extended:1.4.2"
implementation "androidx.compose.material3:material3-window-size-class:1.0.1"
implementation "androidx.compose.ui:ui-tooling:1.4.2"
implementation "androidx.activity:activity-compose:1.7.1"
implementation "androidx.compose.ui:ui:1.4.3"
implementation "androidx.compose.material3:material3:1.1.0"
implementation "androidx.compose.material:material-icons-extended:1.4.3"
implementation "androidx.compose.material3:material3-window-size-class:1.1.0"
implementation "androidx.compose.ui:ui-tooling:1.4.3"
implementation "androidx.activity:activity-compose:1.7.2"
implementation "com.louiscad.splitties:splitties-systemservices:3.0.0"
implementation "com.louiscad.splitties:splitties-views:3.0.0"
}
Loading

0 comments on commit 70641be

Please sign in to comment.