Commit Graph
188 Commits
Author SHA1 Message Date
copilot-swe-agent[bot]andDoezer 8cef2d9cb0 Translate untranslated strings across all languages
- Swedish (SV): Translated 29 strings including video controls and accessibility labels
- Dutch (NL): Translated 36 strings including video controls, auth, and navigation
- Italian (IT): Translated 32 strings including video controls and discover section
- Chinese (ZH): Translated 29 strings with complete video player UI localization
- German (DE): Already well-translated, verified existing translations

Total: 126 strings translated across all languages
Remaining untranslated strings are intentional (brand names, technical terms, format strings)

Co-authored-by: Doezer <11655673+Doezer@users.noreply.github.com>
2025-11-19 20:41:52 +00:00
edde746 37b0cf65b2 fix: https required servers issue 2025-11-18 20:47:31 +01:00
Jamal ad3f26de30 Update german translation 2025-11-18 19:48:08 +01:00
edde746 f23ab5b96e fix: media card playlist compatibility 2025-11-18 19:03:17 +01:00
edde746 f4c52f4069 Merge branch 'accessibility' 2025-11-18 14:44:30 +01:00
edde746 9af87d2e02 refactor: wrap buttons in semantics 2025-11-18 14:44:00 +01:00
edde746 61817ed14e fix: subtitle cropping adjustments 2025-11-18 13:38:08 +01:00
Manuel Cortez 6417a37366 Added semantics to app bar's back button. Fixed conflicts 2025-11-17 23:12:42 -06:00
Manuel Cortez e519304f2e added translation for 'tap to play' hint on media cards 2025-11-17 22:42:11 -06:00
Manuel Cortez d0bfcb107d Enhance semantic labels to hero section on discover screen 2025-11-17 22:30:49 -06:00
Manuel Cortez 2f307ee613 added proper semantic labels to media cards 2025-11-17 22:29:08 -06:00
edde746 e7a4220765 Merge branch 'main' into copilot/add-loading-spinner-video 2025-11-17 00:33:09 +01:00
edde746 3030bac32b refactor: fix warnings 2025-11-17 00:29:12 +01:00
edde746 1e12897c8a refactor: deduplicate 2025-11-17 00:21:57 +01:00
edde746 9501831691 refactor: format 2025-11-16 23:57:32 +01:00
edde746 a6927f0edf refactor: consolidate duration format 2025-11-16 23:53:11 +01:00
edde746 a952ab0a00 refactor: deduplicate & other code quality fixes 2025-11-16 22:42:04 +01:00
edde746 0c23de9ede feat: library overhaul
add collections, library specific home screen, and more
2025-11-16 20:53:59 +01:00
edde746 080907c813 fix: don't fallback on HTTP errors 2025-11-16 11:04:39 +01:00
Manuel Cortez e23f248427 Merge branch 'main' into accessibility 2025-11-15 22:36:14 -06:00
Manuel Cortez c6bd1ef867 Added missing translation file 2025-11-15 22:22:24 -06:00
Manuel Cortez 931bc9b931 Added semantic labels to media player controls 2025-11-15 22:17:04 -06:00
Manuel Cortez 3f4d5c2923 video_control_button: sets a semantic label properly for IconButtons 2025-11-15 22:07:30 -06:00
Manuel Cortez 1220dca88e Prepared translation files with new addition for accessibility enhancements 2025-11-15 22:05:41 -06:00
edde746 be69d16948 fix(android): working mpv builds 2025-11-16 03:08:56 +01:00
Jamal 8ee2b7cfe1 Added more missing translations 2025-11-15 12:51:57 +01:00
edde746 f14ed7d762 chore: format 2025-11-15 04:08:57 +01:00
edde746 2324590175 feat: playlists 2025-11-15 04:07:08 +01:00
edde746 ed478d1ed0 i18n(zh): translate 2 new strings 2025-11-15 01:13:09 +01:00
edde746 efa7f1f724 chore: generate strings 2025-11-15 01:10:26 +01:00
edde746 449c5b055f Merge pull request #102 from ulovecode/main
add zh i18n
2025-11-15 01:09:07 +01:00
Jovan a38513db56 fix code 2025-11-15 08:08:03 +08:00
edde746 c9b4a08072 Merge pull request #105 from jamal2362/main
Add german translation
2025-11-15 00:45:23 +01:00
edde746 e6b699c976 fix: better connection selection 2025-11-15 00:42:45 +01:00
edde746 831552d5b8 refactor: better log redaction 2025-11-15 00:30:04 +01:00
Jamal 9bb9879dc4 Add german translation 2025-11-14 23:46:34 +01:00
edde746 0101dbde71 fix: make media controls follow app lifecycle 2025-11-14 23:10:05 +01:00
edde746 a618218828 feat: respect per media language preference 2025-11-14 22:27:12 +01:00
edde746 0b9998ddff fix: don't crop subtitles 2025-11-14 19:26:04 +01:00
Jovan 415cb90af2 fix 2025-11-14 23:37:25 +08:00
Jovan 0da4b11f17 rename file 2025-11-14 23:34:42 +08:00
Jovan 6c41e09214 i18n(zh): minor fixes 2025-11-14 23:32:17 +08:00
Jovan d37195e01e add zh i18n 2025-11-14 23:27:21 +08:00
copilot-swe-agent[bot]andDoezer ed7c47b3db Add buffering spinner to video player
Co-authored-by: Doezer <11655673+Doezer@users.noreply.github.com>
2025-11-14 07:57:37 +01:00
Doezer 3366ed02f5 Ran dart format using this pwsh command
$FILES = Get-ChildItem -Path lib, test -Recurse -Filter "*.dart" -File -ErrorAction SilentlyContinue | Where-Object { $_.Name -notmatch '\.(g|freezed)\.dart$' } | Select-Object -ExpandProperty FullName; if (-not $FILES) { Write-Host "No Dart files found to format"; exit 0 } else { dart format --output=write --set-exit-if-changed $FILES }
2025-11-13 22:53:31 +01:00
Doezer 29bfb70cc9 Add NL translations for remove from continue watching 2025-11-13 22:37:28 +01:00
Doezer b25ab0da8d Merge branch 'main' into doezer/remove-from-continue-watching 2025-11-13 19:25:17 +01:00
copilot-swe-agent[bot]Doezercopilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
9be219ce15 feat: Add functionality to remove items from Continue Watching
- Updated the DiscoverScreen to include a callback for removing items from Continue Watching.
- Enhanced MediaCard to accept a new callback for removing items from Continue Watching.
- Modified MediaContextMenu to handle the removal of items from Continue Watching without affecting their watched status or progress.
- Updated dependencies in pubspec.lock to their latest versions.

Co-authored-by: Doezer <11655673+Doezer@users.noreply.github.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
2025-11-13 19:07:31 +01:00
Tazio 5fbdbe3595 fix: search screen translations 2025-11-13 09:03:09 +01:00
Tazio 0d5873171b feat: Dutch translations 2025-11-13 08:54:12 +01:00