Releases: SRGSSR/srgdataprovider-android
Releases · SRGSSR/srgdataprovider-android
0.10.1
What's Changed
- Dont add vector if already present in url. by @Loic-Dumas in #43
Full Changelog: 0.10.0...0.10.1
0.10.0
What's Changed
- Add missing fields to
Chapter
and updateTimeInterval
by @MGaetan89 in #41 - Update Gradle configuration and GitHub Action workflow by @MGaetan89 in #40
Full Changelog: 0.9.2...0.10.0
0.9.2
What's Changed
- Add the
JOURNALISTIC
blocking reason by @MGaetan89 in #39
New Contributors
- @MGaetan89 made their first contribution in #39
Full Changelog: 0.9.1...0.9.2
0.9.1
What's Changed
- Add link property to Section.Representation. by @Loic-Dumas in #38
Full Changelog: 0.9.0...0.9.1
0.9.0
What's Changed
Program.imageUrl
is nullable. by @Loic-Dumas in #35- Remove RTS workaround for
DefaultImageUrlDecorator
by @StaehliJ in #37
Full Changelog: 0.8.2...0.9.0
0.8.2
0.8.1
0.8.0
0.7.7
What's Changed
Refactoring service image.
- The new api allow to write with ease image url like required by SRG SSR. PR #25
- Examples:
val media: Media = ...
val imageUrlDecorator: ImageUrlDecorator = ...
media.imageUrl.decorated(imageUrlDecorator, 480)
// or use extension methods provided in ImageUrlExtensionKt.
media.imageUrl.decorated(ImageWidth.W1920)
media.imageUrl.decorated(ImageWidth.W1920, IlHost.Prod)
IlService changes
- Add missing
IlService.getPageForShow
. PR #29 - Add
RepresentationType
:TrendingShowsByTopic
and
AvailableEpisodes
. - Fix
ListResult
to be overridable again.