Commit graph

559 commits

Author SHA1 Message Date
Joseph Alves
5ebe1b4f54
Modify Portuguese locale to include pt-PT and pt-BR
Updated Portuguese locale entries to include specific regional variants.
2026-05-14 03:22:13 -03:00
Joseph Alves
e564e73912
i18n(pt-BR): add complete Brazilian Portuguese translation
- Translate strings for pt-BR locale
- Preserve all placeholders (%1\$s, %d), XML entities (&), and structure
- Align terminology with Brazilian streaming standards
- Validate XML well-formed and build success
2026-05-13 10:08:34 -03:00
tapframe
81d643b49b fix: update continue watching metadata 2026-05-12 23:33:39 +05:30
tapframe
8678660705 fix: remove duplicate episode title in horizontal cw card 2026-05-12 23:27:53 +05:30
tapframe
5bc00f9ffb chore: update coil version 2026-05-12 18:34:00 +05:30
tapframe
9056716c06 fix: update global index fallback logic
fixes #1027
2026-05-12 12:38:30 +05:30
tapframe
ee66440bf5 fix: adjust behaviour logic of streamlink caching
fixes #1034
2026-05-12 12:22:58 +05:30
tapframe
17c747e5c1 bump version 2026-05-10 14:05:22 +05:30
tapframe
95708b9b79 ref: publish search catalogs as they arrive 2026-05-10 13:55:24 +05:30
tapframe
5cdda57913 feat; option to hide catalog underline 2026-05-10 13:47:36 +05:30
tapframe
46a82dce9a Merge branch 'cmp-rewrite' of https://github.com/NuvioMedia/NuvioMobile into cmp-rewrite 2026-05-10 12:36:18 +05:30
tapframe
38c882980c feat: adding attributions page 2026-05-10 12:36:15 +05:30
Muhammed Nayif Rahman
cbac0cf75a
Merge pull request #994 from foXaCe/fix/coil-svg-decoder
fix(image): register SvgDecoder so SVG logos actually render
2026-05-10 12:34:53 +05:30
Muhammed Nayif Rahman
920a22631c
Merge pull request #1010 from Pupon11/cmp-rewrite
czech language
2026-05-10 12:34:03 +05:30
Muhammed Nayif Rahman
13ce89cb99
Merge pull request #1012 from guuilp/feat/continue-watching-sort-mode
feat(settings): add Continue Watching sort mode setting
2026-05-10 12:33:30 +05:30
tapframe
c477e7e217 ref: homescreen now treats collections as a valid content 2026-05-10 10:17:02 +05:30
tapframe
b3a1589296 feat: added hold, hover and release to select faeture in profile switch bubble 2026-05-10 10:11:51 +05:30
tapframe
c8c1dea761 ref: adjust trakt episode remapping 2026-05-10 09:36:49 +05:30
Guilherme Lima Pereira
5623cd99c2 fix(trakt): replace invalid RegexOption.DOT_MATCHES_ALL with inline flag
RegexOption.DOT_MATCHES_ALL is not available in Kotlin Common (KMP).
Replaced with inline (?s) flag to fix commonMain compilation.
2026-05-09 17:37:32 -03:00
Guilherme Lima Pereira
1fa8456979 feat(settings): add Continue Watching sort mode setting
Port of NuvioMedia/NuvioTV#1704.

Adds a Sort Order setting to the Continue Watching section with two modes:
- Default: sort all items by most recently watched
- Streaming Style: released/in-progress items first (by recency), unaired
  next-up items pushed to the end sorted by ascending air date
2026-05-09 17:37:19 -03:00
Pupon11
f7cb75abb1
Update strings.xml
changed localization for "settings_playback_minutes_value", "settings_playback_threshold_percentage_value", and "settings_playback_timeout_seconds" to handle new rules better
2026-05-09 20:09:06 +02:00
Pupon11
d55269e8d3
Add Czech language support to AppLanguage enum 2026-05-09 18:44:03 +02:00
Pupon11
c8eb59cb13
Add Czech locale to locale_config.xml 2026-05-09 18:39:49 +02:00
Pupon11
5a8c6ccb82
Update print statement from 'Hello' to 'Goodbye' 2026-05-09 18:26:15 +02:00
tapframe
96d0b0703e bump version 2026-05-09 01:31:31 +05:30
tapframe
cf1bd1613b ref: adjust the search screen empty state ui 2026-05-09 01:27:40 +05:30
tapframe
1a0738551f ref: amoled to keep default surface theming 2026-05-09 01:20:36 +05:30
tapframe
daedf05ea5 feat: support for trakt library items removal from library screen
fixes #962
2026-05-09 01:18:21 +05:30
tapframe
951cb8f201 fix: search screen sticky header being clickable
fixes #969
2026-05-09 01:06:22 +05:30
tapframe
a6f8041c9e fix: volume/brightness gesture triggering when hold to speed is active
Fixes #992
2026-05-09 01:02:13 +05:30
tapframe
4ca66bc385 ref: remove account deletion button 2026-05-09 00:59:15 +05:30
tapframe
bbee95a0ff Merge branch 'collectionsettings' into cmp-rewrite 2026-05-09 00:56:42 +05:30
tapframe
a3c6f8603e fix: mobile collection changes overriding tv follow home layout setting 2026-05-09 00:50:02 +05:30
tapframe
c16711ebb8 feat: adding seperate preference key for collections 2026-05-09 00:46:55 +05:30
tapframe
0ce89650c2 fix: stripping off parameters after manifest.json 2026-05-09 00:28:36 +05:30
tapframe
d342959493 fix(ios): gif causing glithces in liquid glass bar 2026-05-09 00:28:06 +05:30
tapframe
7290158c53 fix(ios): trakt date parsing logic causing old shows to appear first cw section 2026-05-09 00:27:34 +05:30
Stéphane
d303ac48af fix(image): register SvgDecoder so SVG logos actually render
Adds the coil-svg KMP module dependency and registers SvgDecoder.Factory()
on the singleton ImageLoader in App.kt. coil-svg was never declared in
libs.versions.toml, so SVG payloads silently fell through Coil's decoder
chain and ended up as empty ImageDecoderException swallowed by AsyncImage.

Coil 3.x's coil-svg is a Kotlin Multiplatform module, so registering the
factory in commonMain covers Android and iOS in one place.

Affects:
- TMDB network/channel logos (TMDB serves a mix of PNG and SVG)
- Stremio addon manifests with an SVG `logo` field
- Custom artwork URLs in the collection editor that happen to be SVG

Mirrors the equivalent fix in NuvioTV (PR #1772).
2026-05-08 19:41:54 +02:00
tapframe
116ebfb510 Merge branch 'search' into cmp-rewrite 2026-05-08 20:16:04 +05:30
tapframe
2db039e249 feat: adding search option on settings screen 2026-05-08 20:15:43 +05:30
tapframe
24692a4d3a bump version 2026-05-07 18:39:40 +05:30
Muhammed Nayif Rahman
11a1cf7ba9
Merge pull request #961 from paregi12/master
feat: add followRedirects support to httpRequestRaw and PluginRuntime
2026-05-07 18:38:05 +05:30
Muhammed Nayif Rahman
abe43d2d8d
Merge pull request #968 from DeadGazeS/changes-to-next-episode-threshold-and-auto-select-timeout
Changes to next episode threshold & auto-select timeout settings
2026-05-07 18:37:51 +05:30
paregi12
b5b1afce8d
Merge branch 'NuvioMedia:cmp-rewrite' into master 2026-05-07 15:08:22 +05:30
tapframe
2fa918fe44 feat: add support for custom avatar url 2026-05-07 13:14:19 +05:30
tapframe
81babba3ed feat: episode ratings api 2026-05-07 02:01:11 +05:30
tapframe
1e75f416e4 feat: adding retry logic to library 2026-05-07 01:33:37 +05:30
Alex Schwemler
f9bc1e4572 feat: changed localization for "settings_playback_minutes_value", "settings_playback_threshold_percentage_value", and "settings_playback_timeout_seconds" to handle new rules better 2026-05-06 20:53:49 +02:00
Alex Schwemler
adfe46e3ed feat: changed thresholdPercentage & thresholdMinutesBeforeEnd values to be more aligned with Tv version + added 0 minutes & 0% option, so auto-select starts at the end of the episode 2026-05-06 20:53:32 +02:00
Alex Schwemler
7c0994d957 chore: changed "sliderVal" to "sliderValue" for better readability 2026-05-06 20:50:29 +02:00