Skip to content

Commit

Permalink
chore: update README and prepare release 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeyls committed Dec 3, 2024
1 parent aa7d3c3 commit 74647c3
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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_
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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`).

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down

0 comments on commit 74647c3

Please sign in to comment.