diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c8bdba9..5673215 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -71,6 +71,12 @@ To build a debug APK: ./gradlew assembleDebug ``` +### Snapshot Builds +Automatic snapshot release builds are available in the [release workflow](https://github.com/usetrmnl/trmnl-android/actions/workflows/android-release.yml) artifacts. + +trmnl-artifacts-light +trmnl-artifacts-dark + ## Issues - For bug reports, include steps to reproduce, expected behavior, and actual behavior diff --git a/README.md b/README.md index 6a7936e..b604746 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,6 @@ The TRMNL Display Mirror app serves as a digital display mirror for TRMNL e-ink - [x] Automatic periodic image refresh from the server - [x] Adaptive refresh rate based on server response config - [x] Manual refresh capabilities -- [x] Image caching for offline viewing - [x] Refresh history logging for tracking & validation diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 642deec..318adaf 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -17,8 +17,8 @@ android { applicationId = "ink.trmnl.android" minSdk = 30 targetSdk = 35 - versionCode = 3 - versionName = "1.2.0" + versionCode = 4 + versionName = "1.3.0" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" }