Skip to content

Commit

Permalink
Version 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
trizen committed Nov 30, 2022
1 parent 5c73b65 commit d1d3bc2
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@

[CHANGELOG]

Version 0.4.4

- CLI: added the `--shorts=s` and `--popular-shorts=s` command-line options.
- CLI: added the `:shorts=i` and `:popular-shorts=i` STDIN options.
- CLI: added the `--streams=s` and `--popular-streams=s` command-line options.
- CLI: added the `:streams=i` and `:popular-streams=i` STDIN options.
- CLI: added the `get_subscriptions_in_parallel` config-option (disabled by default)
- GUI: Added the `Author -> {Streams, Shorts, Popular streams}`.
- GUI: added the `Copy YouTube URL` right-click menu entry.
- Added support for the new format of YouTube usernames starting with `@`.

Version 0.4.3

- Added basic GET cache in `lwp_get()`.
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: 12 November 2022
# Edit: 30 November 2022
# https://github.com/trizen/pipe-viewer
#-------------------------------------------------------

Expand All @@ -34,7 +34,7 @@ use Cwd qw(abs_path);
my $DEVEL;
use if ($DEVEL = -w __FILE__), lib => abs_path(__FILE__ . '/../../lib');

use WWW::PipeViewer v0.4.3;
use WWW::PipeViewer v0.4.4;
use WWW::PipeViewer::DiskCache;
use WWW::PipeViewer::ParseJSON;
use WWW::PipeViewer::RegularExpressions;
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: 12 November 2022
# Edit: 30 November 2022
# https://github.com/trizen/pipe-viewer
#-------------------------------------------------------

Expand Down Expand Up @@ -49,7 +49,7 @@ use Cwd qw(abs_path);
my $DEVEL;
use if ($DEVEL = -w __FILE__), lib => abs_path(__FILE__ . '/../../lib');

use WWW::PipeViewer v0.4.3;
use WWW::PipeViewer v0.4.4;
use WWW::PipeViewer::ParseJSON;
use WWW::PipeViewer::RegularExpressions;

Expand Down
2 changes: 1 addition & 1 deletion lib/WWW/PipeViewer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ WWW::PipeViewer - A simple interface to YouTube.
=cut

our $VERSION = '0.4.3';
our $VERSION = '0.4.4';

=head1 SYNOPSIS
Expand Down

0 comments on commit d1d3bc2

Please sign in to comment.