aboutsummaryrefslogtreecommitdiffstats
path: root/bin/gtk-fair-viewer
Commit message (Collapse)AuthorAgeFilesLines
* version 1.1.1HEADmasterJesús2021-07-091-1/+1
|
* update icons gtkJesús2021-07-091-4/+4
|
* version 1.1.0Jesús2021-07-091-1/+1
|
* upstreamJesús2021-07-091-513/+996
|
* version 1.0.6Jesús2020-12-161-1/+1
|
* gtk: added the boolean `autoscroll_to_end` option (disabled by default).trizen2020-12-151-0/+10
| | | | | | When enabled, the treeview list will be scrolled to the end after clicking "next page". Signed-off-by: Jesús <heckyel@hyperbola.info>
* - Workaround for non-existent extra thumbnails in "video details" window.trizen2020-12-151-1/+23
| | | | Signed-off-by: Jesús <heckyel@hyperbola.info>
* Allow setting the video title to *ID* or *URL* in the configuration file and ↵Jesús2020-12-021-9/+3
| | | | | | remove smplayer support. (https://github.com/trizen/youtube-viewer/issues/348)
* version 1.0.5Jesús2020-11-111-1/+1
|
* Pick and set a random invidious instance when the current instance is down.trizen2020-11-091-1/+1
| | | | Signed-off-by: Jesús <heckyel@hyperbola.info>
* - Extended right-click "Play as audio" to support playlists.trizen2020-11-091-3/+7
| | | | Signed-off-by: Jesús <heckyel@hyperbola.info>
* - Mention "pipe-viewer" in README. - Allow channel usernames in YouTube URLs ↵trizen2020-11-091-16/+20
| | | | | | to contain encoded characters of the form "%FF". - Removed some dead code. Signed-off-by: Jesús <heckyel@hyperbola.info>
* gtk: added the "Video License" combobox.trizen2020-11-091-10/+19
| | | | | | | | | It allows searching only for videos with Creative-Commons license. - Added tooltips for the comboboxes in the gtk version. - Several internal improvements. Signed-off-by: Jesús <heckyel@hyperbola.info>
* gtk: added the right-click "Play as audio" entry.trizen2020-11-091-8/+24
| | | | | | Will play the selected video as audio with CLI fair-viewer in a new terminal. Signed-off-by: Jesús <heckyel@hyperbola.info>
* - Replaced "--title" with "--force-media-title" for `mpv` player. ↵trizen2020-11-091-1/+1
| | | | | | (https://github.com/trizen/youtube-viewer/issues/342) Signed-off-by: Jesús <heckyel@hyperbola.info>
* Update from upstreamJesús2020-11-091-5/+6
| | | | | Updated "determine_image_format()" to detect WEBP. Although, at the moment, the PixbufLoader doesn't recognize the WEBP format.
* Update from upstreamJesús2020-11-091-12/+2
| | | | | | | | - Documented the configuration options in `man fair-viewer`. - Fixed the `--page=i` option. - Added the `--dimension=3d` option. - Added the `--license=creative_commons` option. - Some code clean-up.
* - Implemented support for trending categories.trizen2020-11-091-83/+18
| | | | | | | | | | | | | | Example: fair-viewer --trending # trending videos fair-viewer --trending=music # trending music videos fair-viewer -c # list trending categories In the Gtk version, the trending categories are listed in the "Categories" tab. - Several internal code tweaks and improvements. Signed-off-by: Jesús <heckyel@hyperbola.info>
* - Added the "ignore_av1" config-option. (disabled by default)trizen2020-11-091-15/+13
| | | | | | When enabled, videos in AV1 format will be ignored. It's recommended to be enabled on slow hardware. Signed-off-by: Jesús <heckyel@hyperbola.info>
* update from upstreamJesús2020-11-091-3/+19
|
* - Implemented `sort_by` and `date` parameters for `/search`. ↵trizen2020-09-281-188/+165
| | | | | | | | | | | | | | | (https://github.com/iv-org/invidious/wiki/API#get-apiv1search) In the CLI version, we have: --order=s # valid values: relevance rating upload_date view_count --date=s # valid values: hour today week month year In the GTK3 version, this is implemented in the "Order by" and "Published within" comboboxes. Also implemented the `--hd`, `--captions` and `--region=s` options. Signed-off-by: Jesús <heckyel@hyperbola.info>
* gtk: fixed the detection of "no results" vs "api down"trizen2020-09-141-5/+5
| | | | Signed-off-by: Jesús <heckyel@hyperbola.info>
* Suggest trying "--api=auto" when the current invidious instance fails.trizen2020-09-141-16/+20
| | | | Signed-off-by: Jesús <heckyel@hyperbola.info>
* Reuse the "WWW::FairViewer" in "WWW::FairViewer::GetCaption".trizen2020-09-141-0/+1
| | | | Signed-off-by: Jesús <heckyel@hyperbola.info>
* - Added support for loading cookies from a file.trizen2020-09-141-7/+13
| | | | | | | | | | | | The file must be a "# Netscape HTTP Cookie File"; same format as "hypervideo" requires. The "cookies.txt" extension can be used for exporting the cookies from the browser. This helps with the "429: Too Many Requests" issue. See also: https://github.com/ytdl-org/hypervideo#how-do-i-pass-cookies-to-hypervideo Signed-off-by: Jesús <heckyel@hyperbola.info>
* - Added support for automatically picking an invidious instance.trizen2020-09-141-2/+2
| | | | | | | | | | | | | | | | Provided via: fair-viewer --api=auto or by setting in the configuration file: api_host => "auto", The list of instances ("instances.json") is cached locally and updated automatically every hour. In order to distribute the load evenly across the invidious instances, when "api_host" is set to "auto", fair-viewer will pick a random instance every time the program is started. Signed-off-by: Jesús <heckyel@hyperbola.info>
* When the current API host is down, suggest `invidious.13ad.de` instead of ↵trizen2020-08-141-1/+1
| | | | | | `yewtu.be`. Signed-off-by: Jesús <heckyel@hyperbola.info>
* gtk: display an helpful message when the API instance fails.trizen2020-08-141-7/+14
| | | | Signed-off-by: Jesús <heckyel@hyperbola.info>
* - Changed the default API host to `invidious.snopyta.org`.trizen2020-08-141-1/+1
| | | | | | The instance `invidio.us` seems to be down at the moment. Signed-off-by: Jesús <heckyel@hyperbola.info>
* update editJesús2020-07-271-1/+1
|
* - Added support for ignoring high frame rate (HFR) videos.trizen2020-07-271-0/+2
| | | | | | | | | | | | Implemented via the `hfr` config-option. When set to "0", HFR videos will be ignored. Also available as a command-line option: $ fair-viewer --no-hfr By default, `hfr` is set to "1". Signed-off-by: Jesús <heckyel@hyperbola.info>
* Version 1.0.4Jesús2020-06-241-1/+1
|
* Ignore harmless errors.trizen2020-06-231-6/+10
| | | | Signed-off-by: Jesús <heckyel@hyperbola.info>
* gtk: append next page entry only when URL is defined.trizen2020-06-071-0/+2
| | | | Signed-off-by: Jesús <heckyel@hyperbola.info>
* - Added a fallback method for extracting video information. - Decode ↵trizen2020-06-061-6/+3
| | | | | | internal YouTube URLs in description. - Various fixes and improvements. Signed-off-by: Jesús <heckyel@hyperbola.info>
* Removed the arguments-fix for `mpv 0.32`.trizen2020-06-061-8/+0
| | | | | | Hopefully, everyone now has the fix. (closes https://github.com/trizen/straw-viewer/issues/14) Signed-off-by: Jesús <heckyel@hyperbola.info>
* Changed the default cache direction from /tmp/fair-viewer to ↵trizen2020-05-201-4/+3
| | | | | | | | ~/.cache/fair-viewer. (fixes https://github.com/trizen/fair-viewer/issues/11) Also removed the `captions_dir` config-option. Closed-captions are now downloaded inside the cache directory. Signed-off-by: Jesús <heckyel@hyperbola.info>
* Version 1.0.3Jesús2020-03-241-1/+1
|
* Removed the `mplayer` video player entry, as it seems to cause issues.Jesús2020-03-101-9/+3
| | | | Signed-off-by: Jesús <heckyel@hyperbola.info>
* - Support for next pages of playlists from username. - Better detection for ↵trizen2020-03-071-5/+10
| | | | | | the last page of results. Signed-off-by: Jesús <heckyel@hyperbola.info>
* - Implemented support for playlists from username.trizen2020-03-071-1/+11
|
* Version 1.0.2Jesús2020-03-031-1/+1
|
* Keep dual licenses GPLv3 or later and Artistic 2.0Jesús2020-03-031-8/+5
|
* Version 1.0.1Jesús2020-03-031-1/+1
|
* Fix CopyrightJesús2020-03-031-0/+1
|
* [bin/gtk-fair-viewer] fix nameJesús2020-03-021-1/+1
|
* Fix Non-ASCII characterJesús2020-03-021-1/+1
|
* Fix versionJesús2020-03-021-1/+1
|
* Fix license files and change URL donationsJesús2020-03-021-7/+10
|
* [gtk-fair-viewer] set mpv player for defaultJesús2020-03-021-1/+1
|