192 Commits

Author SHA1 Message Date
absidue
4d944b3383
Clean up many unused strings (#5891) 2024-10-21 12:46:25 -05:00
Grzegorz Wójcicki
976727aadd
Translated using Weblate (Polish)
Currently translated at 100.0% (888 of 888 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-10-16 20:16:29 +02:00
Grzegorz Wójcicki
be79c7afbd
Translated using Weblate (Polish)
Currently translated at 100.0% (884 of 884 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-10-10 23:15:47 +02:00
absidue
8e34d1997e
Change the Proxy Videos Through Invidious setting to only apply when using the Invidious API (#5758)
* Change the Proxy Videos Through Invidious setting to only apply when using the Invidious API

* Disable Proxy Videos Through Invidious switch when it cannot be used
2024-09-30 09:52:34 +08:00
Grzegorz Wójcicki
c423819c34
Translated using Weblate (Polish)
Currently translated at 100.0% (878 of 878 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-09-29 03:15:43 +02:00
Grzegorz Wójcicki
c90674d677
Translated using Weblate (Polish)
Currently translated at 100.0% (878 of 878 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-09-13 19:09:23 +02:00
absidue
d8703e84fb
Remove "Force Local Backend for Legacy Formats" setting (#5650) 2024-09-05 10:06:23 +02:00
Grzegorz Wójcicki
1f68475a18
Translated using Weblate (Polish)
Currently translated at 100.0% (875 of 875 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-09-03 04:09:25 +02:00
absidue
b3ff837468
Migrate video player from video.js to shaka-player (#4978)
* Migrate video player from video.js to shaka-player

* Fix syntax error introduced during cleanup

* Fix typo

Co-authored-by: ChunkyProgrammer <78101139+ChunkyProgrammer@users.noreply.github.com>

* Show bitrate in stats for Invidious legacy formats

* Sort legacy formats by bitrate instead of qualityLabel

* Use Invidious' newly added isPostLiveDvr property

* Invidious correctly returns the ratelimit for DASH manifests now

* Properly hide unsupported screenshot functionality outside of Electron

* Sort captions in data initialiser

* Update shaka-player to version 4.8.1

* Use textTrackLabelFormat configuration option

* Switch to manifestPreprocessorTXml

* Add support for VR videos that use equirectangular projection

* The AV1 video streams work okay for vr, so allow list them too

* Use woff2 (169 KB) Material Icons font instead of otf (390 KB)

* Use material icons for custom player elements

* Fix legacy formats exception

* Update shaka-player to version 4.8.3

* Sort default quality values the same as in the player

* Cleanup representations search in live subtitle fix

* Slightly speed up sortCaptions

* Fix setPositionState error when playback rate is 0

* Update shaka-player to version 4.8.4

* Fix playback rate changes getting overridden

* Fix current chapter index not updating

* Fix next video not automatically playing

* Fix volume changes not propagating to the mute button

* Reduce work done during UI config updates

* Fix UI customizations not applying after UI config changes

* Update shaka-player to version 4.8.5

* Replace non-reactive workaround with a Vue 3 friendly one

* Fix error when all sponsorblock segments are set to do nothing

* Add some guards to hopefully reduce errors during fast naviagtions

* Make SponsorBlock failure non-fatal

* Update shaka-player to version 4.8.6

* Update shaka-player to version 4.8.8

* Update shaka-player to version 4.9.0

* Update shaka-player to version 4.9.1

* Minor performance improvements

* Update shaka-player to version 4.9.6

* Update shaka-player to version 4.9.9

* Fix sponsor block markers not showing up

* Add some basic error messages for expired urls and ratelimits

* Add some basic error messages for 403s

* Cleanup code comments

* Migrate player to composition API for better performance

* Use reactive for stats instead of ref, as it never gets reassigned

* Update shaka-player to version 4.10.0

* Fix i18n import in custom player components

* Add chapter markers

* Move shaka-player CSS import into the Vue file

* Bump mpd_version from 5 to 7

* Apply suggestions from code review

Co-authored-by: ChunkyProgrammer <78101139+ChunkyProgrammer@users.noreply.github.com>

* Fix seeking with the arrow keys

* Update shaka-player to version 4.10.3

* Truncate long video titles to the screen width in the full screen overlay

* Fix mouse scroll handlers firing multiple times

* Cleanup unneeded code

* Update shaka-player to version 4.10.6

* Various small optimisations

* Move skipped sponsorblock segement messages to the top right corner

* Support prefers-reduced-transparency in overlays

* Fix stylelint errors

* Update shaka-player to version 4.10.7

* Update shaka-player to version 4.10.8

* Only use variants that are predicted to play smoothly

* Only set preferredDecodingAttributes for DASH playback

* Implement a custom audio track selector instead of using shaka-player's

* Move skipped sponsorblock segement messages to the bottom right corner

* Fix scrolling over the big play pause button not working

* Update shaka-player to version 4.10.9

* Fix some type issues

* Add support for secondary audio tracks

* Downgrade shaka-player to fix subtitle alignment

* Actually downgrade shaka-player

* Fix Invidious API error

* Update outdated comment

* Fix multiple audio track detection for Invidious

* Fix duplicate qualities with the Invidious API

* Use vp9 streams if the Invidious instance is running a new enough version

* When an error occurs with the thumbnails just log it

* Include the video ID in the error logs

* Gracefully handle the internet connection disappearing during playback

* Show a message while buffering if it was caused by the internet connection disappearing

* Fix the text color and RTL handling

* Cleanup the Invidious DASH manifest in builds without the local API

* Fix quality selection when switching from audio to DASH

Unfortunately shaka-player will still override the quality selections
with its ABR bug.

* Update shaka-player to version 4.10.10

* Fix position and alignment for auto-generated subtitles

* Update shaka-player to version 4.10.11

* Use the HLS manifests for live streams

The live DASH manifests are currently unusable on both API backends as
they return 403s after 1 minute of playback. Unfortunately this means we
lose the ability to seek and use the audio formats for live streams.

* Update shaka-player to version 4.10.12

---------

Co-authored-by: ChunkyProgrammer <78101139+ChunkyProgrammer@users.noreply.github.com>
2024-09-02 19:40:42 +00:00
ChunkyProgrammer
7c4e2de33f
Don't make requests when importing subscriptions (#5617)
* Don't make requests when importing subscriptions

* Remove unused string

* Fix SubscribedChannels page when thumbnail is missing

* Get thumbnail from parsed header when using local api for subscribedchannels view

* Remove unused async and unused computed properties

* filter freetube.db subs by id not name
2024-09-02 09:28:23 +08:00
Grzegorz Wójcicki
281985eb25
Translated using Weblate (Polish)
Currently translated at 100.0% (869 of 869 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-08-18 19:09:19 +02:00
Jaishree Singh
cafcaf8aa8
Feature: Rename the setting from Avoid Accidental Unsubscription to Confirm before unsubscribing (#5342)
* rename: Avoid Accidental Unsubscription to Confirm before unsubscribing

* rename: Confirm Before Unsubscribing
2024-06-27 05:39:42 +08:00
WaldiS
81cf8177ba
Translated using Weblate (Polish)
Currently translated at 100.0% (868 of 868 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-06-18 14:09:13 +00:00
Grzegorz Wójcicki
a5d0b02e1b
Translated using Weblate (Polish)
Currently translated at 100.0% (866 of 866 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-06-12 00:09:15 +02:00
Grzegorz Wójcicki
96d34e1361
Translated using Weblate (Polish)
Currently translated at 100.0% (865 of 865 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-06-06 18:09:28 +02:00
Grzegorz Wójcicki
87d067f75f
Translated using Weblate (Polish)
Currently translated at 100.0% (861 of 861 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-05-31 21:09:12 +02:00
Grzegorz Wójcicki
8381dea267
Translated using Weblate (Polish)
Currently translated at 100.0% (858 of 858 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-05-28 00:09:16 +02:00
Grzegorz Wójcicki
73b2247539
Translated using Weblate (Polish)
Currently translated at 100.0% (847 of 847 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-05-21 15:01:48 +02:00
Grzegorz Wójcicki
850bad4d14
Translated using Weblate (Polish)
Currently translated at 100.0% (845 of 845 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-05-09 22:07:11 +02:00
Grzegorz Wójcicki
1528303f0c
Translated using Weblate (Polish)
Currently translated at 100.0% (835 of 835 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-05-04 21:07:22 +02:00
Grzegorz Wójcicki
96faa9fdce
Translated using Weblate (Polish)
Currently translated at 99.6% (832 of 835 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-05-04 19:07:18 +02:00
Grzegorz Wójcicki
e9a32001b0
Translated using Weblate (Polish)
Currently translated at 100.0% (830 of 830 strings)

Co-authored-by: Grzegorz Wójcicki <terkaz@gmx.com>
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
Translation: FreeTube/Translations
2024-04-29 19:07:29 +02:00
Grzegorz Wójcicki
1e955ee545
Translated using Weblate (Polish)
Currently translated at 100.0% (829 of 829 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-04-21 13:07:15 +02:00
Grzegorz Wójcicki
31f0674910
Translated using Weblate (Polish)
Currently translated at 100.0% (819 of 819 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-04-17 00:02:00 +02:00
PikachuEXE
2b7c96eb97
Update most paginated places to auto load next page (except comments) (#4565)
* * Update most paginated places to auto load next page (except comments)

* * Make comment section auto load next pages too

* $ Use new component to dedup auto load code

* * Implement auto load next page for single playlist page

* * Remove comment auto load setting

* * Update tooltip text
2024-04-16 22:16:08 +02:00
WaldiS
559671fd24
Translated using Weblate (Polish)
Currently translated at 100.0% (818 of 818 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-04-11 22:02:01 +02:00
absidue
f7206ec7e8
Use blob URLs for storyboards instead of writing them to the file system (#4891) 2024-04-08 09:31:20 +08:00
ChunkyProgrammer
d8387b76d7
Add i18n-eslint-plugin (#4763)
* add i18n-eslint-plugin

* remove `FreeTube` `Invidious` and `YouTube` from locale files as those shouldn't be translated

* Remove testing code

* Uncomment code

* use separate getColorTranslations function

* make suggested changes

Co-Authored-By: absidue <48293849+absidue@users.noreply.github.com>

* Add back blank line between import & export

---------

Co-authored-by: absidue <48293849+absidue@users.noreply.github.com>
Co-authored-by: PikachuEXE <git@pikachuexe.net>
2024-04-07 14:58:15 +00:00
Grzegorz Wójcicki
41f158dd99
Translated using Weblate (Polish)
Currently translated at 100.0% (819 of 819 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-04-04 13:01:48 +02:00
Frey Luna
2c1bb491f9
Translated using Weblate (Polish)
Currently translated at 100.0% (819 of 819 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-03-18 00:01:49 +01:00
Grzegorz Wójcicki
4195751f8d
Translated using Weblate (Polish)
Currently translated at 100.0% (819 of 819 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-03-16 04:02:04 +01:00
Grzegorz Wójcicki
bda75d3740
Translated using Weblate (Polish)
Currently translated at 100.0% (818 of 818 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-03-08 03:01:49 +01:00
Grzegorz Wójcicki
68a0cb33cd
Translated using Weblate (Polish)
Currently translated at 100.0% (817 of 817 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-03-01 00:02:09 +01:00
Grzegorz Wójcicki
b965dc30bd
Translated using Weblate (Polish)
Currently translated at 100.0% (816 of 816 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-02-20 02:02:12 +01:00
Grzegorz Wójcicki
0f0e126066
Translated using Weblate (Polish)
Currently translated at 99.8% (815 of 816 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-02-18 21:01:58 +01:00
ChunkyProgrammer
6cbe6b5e9d
Fix some translation issues (#4674)
* fix some locale issues

* change local API to Local API

* update translation keys to `Falling back to Local API`

* fix translation key for local api in js files
2024-02-16 22:20:22 +01:00
Grzegorz Wójcicki
70cba2aea6
Translated using Weblate (Polish)
Currently translated at 100.0% (815 of 815 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-02-15 18:02:23 +01:00
Grzegorz Wójcicki
9cd347314a
Translated using Weblate (Polish)
Currently translated at 100.0% (815 of 815 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-02-04 06:01:49 +01:00
Grzegorz Wójcicki
8dccfe2bbe
Translated using Weblate (Polish)
Currently translated at 100.0% (814 of 814 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-01-26 22:01:50 +01:00
Grzegorz Wójcicki
2932fa3121
Translated using Weblate (Polish)
Currently translated at 100.0% (807 of 807 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-01-19 21:00:16 +01:00
Grzegorz Wójcicki
0a44bc1a78
Translated using Weblate (Polish)
Currently translated at 100.0% (799 of 799 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-01-16 01:06:23 +01:00
Grzegorz Wójcicki
00e676d5d9
Translated using Weblate (Polish)
Currently translated at 100.0% (796 of 796 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-01-14 13:30:31 +01:00
Grzegorz Wójcicki
b6b175076f
Translated using Weblate (Polish)
Currently translated at 100.0% (794 of 794 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-01-12 17:06:16 +01:00
Filip Gliszczyński
f6c7d62ada
Translated using Weblate (Polish)
Currently translated at 100.0% (794 of 794 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-01-12 01:06:12 +01:00
Grzegorz Wójcicki
20686c3d82
Translated using Weblate (Polish)
Currently translated at 100.0% (794 of 794 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2024-01-06 02:09:20 +01:00
Grzegorz Wójcicki
5c69523c5c
Translated using Weblate (Polish)
Currently translated at 100.0% (738 of 738 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2023-11-30 16:03:04 +01:00
WaldiS
07e2775098
Translated using Weblate (Polish)
Currently translated at 100.0% (733 of 733 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2023-11-22 23:09:57 +01:00
Grzegorz Wójcicki
ddf2fc59a6
Translated using Weblate (Polish)
Currently translated at 100.0% (726 of 726 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2023-11-12 08:01:46 +00:00
Grzegorz Wójcicki
494a938012
Translated using Weblate (Polish)
Currently translated at 100.0% (722 of 722 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2023-11-05 22:34:38 +01:00
Grzegorz Wójcicki
2cf90c0ef7
Translated using Weblate (Polish)
Currently translated at 100.0% (722 of 722 strings)

Translation: FreeTube/Translations
Translate-URL: https://hosted.weblate.org/projects/free-tube/translations/pl/
2023-09-24 05:00:22 +02:00