Skip to content

Commit

Permalink
Version 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
trizen committed Sep 2, 2021
1 parent 8676a62 commit c999250
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@

[CHANGELOG]

Version 0.1.4

- Extended the `get_video_id_re` regular expression to support URI-encoded YouTube URLs.
- GUI: update the list of saved and subscribed channels on-demand, in order to prevent data loss.

Version 0.1.3

- Added basic support for age-restricted videos.
Expand Down
4 changes: 2 additions & 2 deletions bin/gtk-pipe-viewer
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#-------------------------------------------------------
# GTK Pipe Viewer
# Fork: 30 October 2020
# Edit: 04 August 2021
# Edit: 02 September 2021
# https://github.com/trizen/pipe-viewer
#-------------------------------------------------------

Expand All @@ -31,7 +31,7 @@ no warnings 'once';
my $DEVEL; # true in devel mode
use if ($DEVEL = -w __FILE__), lib => qw(../lib); # devel only

use WWW::PipeViewer v0.1.3;
use WWW::PipeViewer v0.1.4;
use WWW::PipeViewer::RegularExpressions;

use Gtk3 qw(-init);
Expand Down
4 changes: 2 additions & 2 deletions bin/pipe-viewer
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#-------------------------------------------------------
# pipe-viewer
# Fork: 30 October 2020
# Edit: 04 August 2021
# Edit: 02 September 2021
# https://github.com/trizen/pipe-viewer
#-------------------------------------------------------

Expand Down Expand Up @@ -46,7 +46,7 @@ no warnings 'once';
my $DEVEL; # true in devel mode
use if ($DEVEL = -w __FILE__), lib => qw(../lib); # devel mode

use WWW::PipeViewer v0.1.3;
use WWW::PipeViewer v0.1.4;
use WWW::PipeViewer::RegularExpressions;

require Storable;
Expand Down
2 changes: 1 addition & 1 deletion lib/WWW/PipeViewer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ WWW::PipeViewer - A very easy interface to YouTube, using the API of invidious.
=cut

our $VERSION = '0.1.3';
our $VERSION = '0.1.4';

=head1 SYNOPSIS
Expand Down

0 comments on commit c999250

Please sign in to comment.