Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ jobs:
name: release-artifacts
path: |
app/build/outputs/aar/*
~/.m2/repository/com/github/yinnho/UPnPCast/1.1.2/*
~/.m2/repository/com/github/yinnho/UPnPCast/1.2.0/*
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to the UPnPCast library will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.2.0] - 2026-09-02

### ✨ Added
- **Live playback state**: `DLNACast.getPlaybackState()` queries the device via GetTransportInfo, so remote pauses/stops are reflected; `getState()` now reports the last observed transport state instead of always `PLAYING` while connected
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ android {
minSdk = 24

// Version information setting
version = "1.1.2"
version = "1.2.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

Expand Down Expand Up @@ -128,7 +128,7 @@ afterEvaluate {

groupId = "com.yinnho.upnpcast"
artifactId = "upnpcast"
version = "1.1.2"
version = "1.2.0"

pom {
name.set("UPnPCast")
Expand Down
Loading