diff options
author | Jesús <heckyel@hyperbola.info> | 2021-07-09 16:36:00 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-07-09 16:36:00 -0500 |
commit | 687126996a35afe7d033aac2be543367817eae55 (patch) | |
tree | 4d6136f8fc1a7c6460ab9b7a059006f4615d0e12 | |
parent | d93bbee5e3d99f4d35603f39d20cf8b2e6cd7ccf (diff) | |
download | fair-viewer-687126996a35afe7d033aac2be543367817eae55.tar.lz fair-viewer-687126996a35afe7d033aac2be543367817eae55.tar.xz fair-viewer-687126996a35afe7d033aac2be543367817eae55.zip |
version 1.1.0
-rw-r--r-- | Changes | 17 | ||||
-rwxr-xr-x | bin/fair-viewer | 2 | ||||
-rwxr-xr-x | bin/gtk-fair-viewer | 2 | ||||
-rw-r--r-- | lib/WWW/FairViewer.pm | 2 |
4 files changed, 19 insertions, 4 deletions
@@ -2,12 +2,27 @@ # Only the most important changes and features are included here. # For all changes, check out the release notes at: -# https://framagit.org/heckyel/fair-viewer +# https://git.conocimientoslibres.ga/software/fair-viewer.git [CHANGELOG] Version <unreleased> +Version 1.1.0 + +- Fixed the support for related videos. +- Temporary fix for the `404 Error` on `get_video_info`. +- Added fallback code for retrieving closed-caption URLs with `hypervideo`. +- CLI: added support for saving channel IDs (and listing them). +- CLI/GUI: added support for subscription videos, playlists (like/favorite/dislike), watch history. +- Auto-set proxy for .onion invidious instances (if not already set). +- Workaround for EU consent YouTube cookie. +- gtk3: added the "144p" resolution entry. +- gtk3: use emoji instead of asciii symbols. +- gtk3: added the right-click "Author -> Save channel" menu entry. +- gtk3: added the right-click "Show more details" for playlist results. +- Bug-fixes and improvements. + Version 1.0.6 - Ensure that a randomly selected invidious instance actually works. diff --git a/bin/fair-viewer b/bin/fair-viewer index 127f1fe..1df1ccb 100755 --- a/bin/fair-viewer +++ b/bin/fair-viewer @@ -48,7 +48,7 @@ no warnings 'once'; my $DEVEL; # true in devel mode use if ($DEVEL = -w __FILE__), lib => qw(../lib); # devel mode -use WWW::FairViewer v1.0.6; +use WWW::FairViewer v1.1.0; use WWW::FairViewer::RegularExpressions; require Storable; diff --git a/bin/gtk-fair-viewer b/bin/gtk-fair-viewer index 3cba73a..d924359 100755 --- a/bin/gtk-fair-viewer +++ b/bin/gtk-fair-viewer @@ -32,7 +32,7 @@ no warnings 'once'; my $DEVEL; # true in devel mode use if ($DEVEL = -w __FILE__), lib => qw(../lib); # devel only -use WWW::FairViewer v1.0.6; +use WWW::FairViewer v1.1.0; use WWW::FairViewer::RegularExpressions; use Gtk3 qw(-init); diff --git a/lib/WWW/FairViewer.pm b/lib/WWW/FairViewer.pm index dff63f4..3e7b7cf 100644 --- a/lib/WWW/FairViewer.pm +++ b/lib/WWW/FairViewer.pm @@ -33,7 +33,7 @@ WWW::FairViewer - A very easy interface to YouTube, using the API of invidious. =cut -our $VERSION = '1.0.6'; +our $VERSION = '1.1.0'; =head1 SYNOPSIS |