diff options
-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 |