From 74647c3515d56328148bf96d5bd55e820386aab1 Mon Sep 17 00:00:00 2001 From: Christophe Beyls Date: Tue, 3 Dec 2024 19:12:05 +0100 Subject: [PATCH] chore: update README and prepare release 1.1.2 --- CHANGELOG.md | 14 ++++++++++++++ README.md | 6 +++--- app/build.gradle.kts | 4 ++-- 3 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f933bd..08090e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,20 @@ Change Log ========== +## Version 1.1.2 + +_2024-12-03_ + +- Update code to properly handle version 0.4.8 of the KMQTT library. +- Upgrade internal libraries. + +## Version 1.1.1 + +_2024-10-07_ + +- Upgrade internal libraries +- Note: this version crashes due to an unhandled behavior change in the KMQTT library. Do not use it. + ## Version 1.1.0 _2024-03-03_ diff --git a/README.md b/README.md index 74ccdff..db44eb8 100644 --- a/README.md +++ b/README.md @@ -28,13 +28,13 @@ For ADB, you first need to enable ADB debugging in the developer options of the ``` adb connect [IP address of your TV] -adb install ./mediasession2mqtt-1.0.0.apk +adb install ./mediasession2mqtt-1.1.2.apk ``` or for an upgrade: ``` -adb install -r ./mediasession2mqtt-1.0.0.apk +adb install -r ./mediasession2mqtt-1.1.2.apk ``` ## Configuration @@ -47,7 +47,7 @@ In the configuration screen, start by entering your MQTT broker configuration (p Test your connection by clicking on "Test Connection". -Next, specify the QOS level you need for MQTT messsages (QOS 0 should be enough for most local connections). +Next, specify the QOS level you need for MQTT messages (QOS 0 should be enough for most local connections). Then, change the device id if you have more than one device connecting to the MQTT broker (default is `1`). diff --git a/app/build.gradle.kts b/app/build.gradle.kts index a1f84d3..549fc4e 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -12,8 +12,8 @@ android { applicationId = "be.digitalia.mediasession2mqtt" minSdk = 22 targetSdk = 34 - versionCode = 2100111 - versionName = "1.1.1" + versionCode = 2100112 + versionName = "1.1.2" resourceConfigurations += listOf("en") }