aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Changes14
-rw-r--r--META.json4
-rw-r--r--META.yml4
-rw-r--r--Makefile4
-rwxr-xr-xbin/fair-viewer2
-rwxr-xr-xbin/gtk-fair-viewer2
-rw-r--r--lib/WWW/FairViewer.pm2
7 files changed, 23 insertions, 9 deletions
diff --git a/Changes b/Changes
index b585c0f..94095ab 100644
--- a/Changes
+++ b/Changes
@@ -8,6 +8,20 @@
Version <unreleased>
+
+Version 1.0.5
+
+- gtk: added the right-click "Play as audio" entry.
+- Better detection for HFR (High Frame Rate) videos.
+- Better selection of invidious instances.
+- Added the "ignore_av1" config-option.
+- Implemented `sort_by` and `date` parameters for `/search`.
+- Implemented the `--hd`, `--captions` and `--region=s` options.
+- Implemented support for popular videos.
+- Implemented support for searching for videos from a specific channel.
+- Implemented support for trending categories.
+- Support for changing the hypervideo command.
+- Support for disabling the use of hypervideo.
- Added the `--hfr!` option for prefering/ignoring High Frame Rate (HFR) videos.
Version 1.0.4
diff --git a/META.json b/META.json
index 75980cc..73850be 100644
--- a/META.json
+++ b/META.json
@@ -58,7 +58,7 @@
"provides" : {
"WWW::FairViewer" : {
"file" : "lib/WWW/FairViewer.pm",
- "version" : "v1.0.4"
+ "version" : "v1.0.5"
},
"WWW::FairViewer::Activities" : {
"file" : "lib/WWW/FairViewer/Activities.pm"
@@ -119,6 +119,6 @@
"https://www.gnu.org/licenses/gpl-3.0.html"
]
},
- "version" : "v1.0.4",
+ "version" : "v1.0.5",
"x_serialization_backend" : "JSON::PP version 4.04"
}
diff --git a/META.yml b/META.yml
index 268bf53..127e266 100644
--- a/META.yml
+++ b/META.yml
@@ -17,7 +17,7 @@ name: WWW-FairViewer
provides:
WWW::FairViewer:
file: lib/WWW/FairViewer.pm
- version: v1.0.4
+ version: v1.0.5
WWW::FairViewer::Activities:
file: lib/WWW/FairViewer/Activities.pm
WWW::FairViewer::Authentication:
@@ -81,5 +81,5 @@ resources:
license:
- http://dev.perl.org/licenses/
- https://www.gnu.org/licenses/gpl-3.0.html
-version: v1.0.4
+version: v1.0.5
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/Makefile b/Makefile
index cbe727e..6756b03 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
all: clean update generate
-O_VERSION=1.0.3
-C_VERSION=1.0.4
+O_VERSION=1.0.4
+C_VERSION=1.0.5
clean:
rm -rf _build/ Build fair-viewer-*.tar.gz MYMETA.{yml,json}
diff --git a/bin/fair-viewer b/bin/fair-viewer
index 089c328..7f0d55f 100755
--- a/bin/fair-viewer
+++ b/bin/fair-viewer
@@ -62,7 +62,7 @@ no warnings 'once';
my $DEVEL; # true in devel mode
use if ($DEVEL = 0), lib => qw(../lib); # devel mode
-use WWW::FairViewer v1.0.4;
+use WWW::FairViewer v1.0.5;
use WWW::FairViewer::RegularExpressions;
use File::Spec::Functions qw(
diff --git a/bin/gtk-fair-viewer b/bin/gtk-fair-viewer
index 36f029d..f136ac0 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 = 0), lib => qw(../lib); # devel only
-use WWW::FairViewer v1.0.4;
+use WWW::FairViewer v1.0.5;
use WWW::FairViewer::RegularExpressions;
use Gtk3 qw(-init);
diff --git a/lib/WWW/FairViewer.pm b/lib/WWW/FairViewer.pm
index 78fe59f..349d6a4 100644
--- a/lib/WWW/FairViewer.pm
+++ b/lib/WWW/FairViewer.pm
@@ -31,7 +31,7 @@ WWW::FairViewer - A very easy interface to YouTube, using the API of invidio.us.
=cut
-our $VERSION = '1.0.4';
+our $VERSION = '1.0.5';
=head1 SYNOPSIS