diff --git a/Changes b/Changes index e87aff3..db62c04 100644 --- a/Changes +++ b/Changes @@ -5,6 +5,12 @@ [CHANGELOG] +Version 0.1.0 + +- GUI: added "Backward" and "Forward" buttons for navigating the history. +- Fixed the downloading of videos with very long titles. +- Other minor fixes. + Version 0.0.9 - CLI: added basic support for Android, for playing videos with the VLC player. diff --git a/README.md b/README.md index e006f69..68db074 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ After installing, you can find documentation with the following commands: ### LICENSE AND COPYRIGHT -Copyright (C) 2012-2023 Trizen +Copyright (C) 2012-2024 Trizen This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published diff --git a/bin/gtk-lbry-viewer b/bin/gtk-lbry-viewer index 44b5f65..04dc49a 100755 --- a/bin/gtk-lbry-viewer +++ b/bin/gtk-lbry-viewer @@ -1,6 +1,6 @@ #!/usr/bin/perl -# Copyright (C) 2010-2023 Trizen . +# Copyright (C) 2010-2024 Trizen . # # This program is free software; you can redistribute it and/or modify it # under the terms of either: the GNU General Public License as published @@ -15,7 +15,7 @@ #------------------------------------------------------- # GTK Lbry Viewer # Fork: 27 May 2022 -# Edit: 06 March 2023 +# Edit: 12 May 2024 # https://github.com/trizen/lbry-viewer #------------------------------------------------------- @@ -53,7 +53,7 @@ sub devel_path { use if $DEVEL, lib => $DEVEL && catdir(devel_path(), 'lib'); -use WWW::LbryViewer v0.0.9; +use WWW::LbryViewer v0.1.0; use WWW::LbryViewer::RegularExpressions; binmode(STDOUT, ':utf8'); @@ -190,13 +190,13 @@ my %CONFIG = ( cmd => q{vlc}, srt => q{--sub-file=*SUB*}, fs => q{--fullscreen}, - arg => q{--quiet --play-and-exit --no-video-title-show --input-title-format=*TITLE*}, + arg => q{--quiet --play-and-exit --no-video-title-show --input-title-format=*TITLE* *URL*}, }, mpv => { cmd => q{mpv}, srt => q{--sub-file=*SUB*}, fs => q{--fullscreen}, - arg => q{--really-quiet --force-media-title=*TITLE* --no-terminal}, + arg => q{--really-quiet --force-media-title=*TITLE* --no-terminal *URL*}, }, }, video_player_selected => undef, # autodetect it later diff --git a/bin/lbry-viewer b/bin/lbry-viewer index ef3413e..5daeef6 100755 --- a/bin/lbry-viewer +++ b/bin/lbry-viewer @@ -1,6 +1,6 @@ #!/usr/bin/perl -# Copyright (C) 2010-2023 Trizen . +# Copyright (C) 2010-2024 Trizen . # # This program is free software; you can redistribute it and/or modify it # under the terms of either: the GNU General Public License as published @@ -15,7 +15,7 @@ #------------------------------------------------------- # lbry-viewer # Fork: 27 May 2022 -# Edit: 06 March 2023 +# Edit: 12 May 2024 # https://github.com/trizen/lbry-viewer #------------------------------------------------------- @@ -67,7 +67,7 @@ sub devel_path { use if $DEVEL, lib => $DEVEL && catdir(devel_path(), 'lib'); -use WWW::LbryViewer v0.0.9; +use WWW::LbryViewer v0.1.0; use WWW::LbryViewer::RegularExpressions; binmode(STDOUT, ':utf8'); @@ -190,7 +190,7 @@ my %CONFIG = ( cmd => q{vlc}, srt => q{--sub-file=*SUB*}, fs => q{--fullscreen}, - arg => q{--quiet --play-and-exit --no-video-title-show --input-title-format=*TITLE*}, + arg => q{--quiet --play-and-exit --no-video-title-show --input-title-format=*TITLE* *URL*}, novideo => q{--intf=dummy --novideo}, } ) @@ -200,7 +200,7 @@ my %CONFIG = ( cmd => q{mpv}, srt => q{--sub-file=*SUB*}, fs => q{--fullscreen}, - arg => q{--really-quiet --force-media-title=*TITLE*}, + arg => q{--really-quiet --force-media-title=*TITLE* *URL*}, novideo => q{--no-video}, }, }, @@ -4711,7 +4711,7 @@ https://github.com/trizen/lbry-viewer =head1 LICENSE AND COPYRIGHT -Copyright 2010-2023 Trizen. +Copyright 2010-2024 Trizen. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published diff --git a/lib/WWW/LbryViewer.pm b/lib/WWW/LbryViewer.pm index 4c801ce..8b78691 100644 --- a/lib/WWW/LbryViewer.pm +++ b/lib/WWW/LbryViewer.pm @@ -35,7 +35,7 @@ WWW::LbryViewer - A simple interface to YouTube. =cut -our $VERSION = '0.0.9'; +our $VERSION = '0.1.0'; =head1 SYNOPSIS diff --git a/share/gtk-lbry-viewer.glade b/share/gtk-lbry-viewer.glade index 92633f6..5d227b3 100644 --- a/share/gtk-lbry-viewer.glade +++ b/share/gtk-lbry-viewer.glade @@ -1,7 +1,7 @@ - - + 1 @@ -2204,7 +2204,7 @@ When the specified resolution is not found, the best available resolution is use normal __MAIN__ GTK Lbry Viewer - Copyright © 2010-2023 Trizen + Copyright © 2010-2024 Trizen Written in Perl, Gtk3 and Glade. https://github.com/trizen/lbry-viewer https://github.com/trizen/lbry-viewer