Skip to content

Commit

Permalink
chore: add CHANGELOG, update README and prepare release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeyls committed Mar 2, 2024
1 parent 28fb48f commit 5709c28
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Change Log
==========

## Version 1.1.0

_2024-03-03_

- New feature: add support for Home Assistant MQTT Discovery (#2) (Credits to @rytilahti for the idea and initial implementation)
- Upgrade internal libraries.

## Version 1.0.0

_2023-11-11_

Initial release.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ After typing the command, it's recommended to restart the device to make sure th

As soon as the app configuration screen shows "Actively listening to MediaSessions" and the MQTT connection test was successful, you're good to go!

## Home Assistant MQTT Discovery

This app provides an integration for Home Assistant since version 1.1.0. Check the box "Enable Home Assistant integration" in the settings screen and the MQTT Discovery configuration will also be published, allowing Home Assistant to detect and configure MediaSession2MQTT as a new device automatically.

## The MQTT API

This application is designed to only push state messages and not listen to MQTT commands. The MQTT connection is kept open as long as possible and no keepalive packets are sent. If the connection gets interrupted for any reason, it will be automatically re-established lazily when the next MQTT message needs to be published.
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 = 2100100
versionName = "1.0.0"
versionCode = 2100110
versionName = "1.1.0"

resourceConfigurations += listOf("en")
vectorDrawables {
Expand Down

0 comments on commit 5709c28

Please sign in to comment.