Skip to content

Commit

Permalink
Use JDK 21 in CI, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
VirtCode committed Aug 1, 2024
1 parent 897628c commit 98c89ac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: '17'
# if you change this - remember to announce that the build sdk has changed. see #20
java-version: '21'
distribution: 'temurin'

- name: Setup Gradle
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ android {
compileSdk 30
minSdk 28

versionCode 5
versionName "1.4.1"
versionCode 6
versionName "1.4.2"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@
<string name="dialog_add_request_setting_message">In order to see nearby devices, you must have location turn on. If you don\'t want to enable location, you can still add a device manually.</string>
<string name="dialog_add_request_setting_title">Enable Location</string>
<string name="title_about">About</string>
<string name="app_version" translatable="false">1.4.1</string>
<string name="app_version" translatable="false">1.4.2</string>
<string name="about_title_version">Version:&#160;</string>
<string name="about_title_date">Last updated at:&#160;</string>
<string name="app_date" translatable="false">14.02.24</string>
<string name="app_date" translatable="false">01.08.24</string>
<string name="about_explanation">This app tries to make your smartphone usable as a normal computer mouse. It estimates its the position of the Smartphone by processing accelerometer and gyroscope data in its custom sensor-fusion algorithm. However, this estimation is not always correct, which leads to different artifacts and wrong movements of the cursor. Because of that, this app is far from finished and should not be treated as a finished product.</string>
<string name="about_github">This app is open source and may be found on <a href="https://github.com/VirtCode/SmartMouse">GitHub</a>.</string>
<string name="connect_connecting_disclaimer">If this process is taking too long, you may restart the app and select another device.</string>
Expand Down

0 comments on commit 98c89ac

Please sign in to comment.