diff options
author | Jesús <heckyel@hyperbola.info> | 2020-03-02 16:29:26 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-03-02 16:29:26 -0500 |
commit | bf796eb646a294915f0f8480ff2425c7a995fd4e (patch) | |
tree | fcc1763c784f70a8b8a9238c3755089d54612da3 | |
parent | 93c9e878023ce62b7abe7a58d3c73390939eca18 (diff) | |
download | fair-viewer-bf796eb646a294915f0f8480ff2425c7a995fd4e.tar.lz fair-viewer-bf796eb646a294915f0f8480ff2425c7a995fd4e.tar.xz fair-viewer-bf796eb646a294915f0f8480ff2425c7a995fd4e.zip |
Fix Non-ASCII character
-rwxr-xr-x | Build.PL | 2 | ||||
-rw-r--r-- | META.json | 2 | ||||
-rw-r--r-- | META.yml | 2 | ||||
-rwxr-xr-x | bin/fair-viewer | 5 | ||||
-rwxr-xr-x | bin/gtk-fair-viewer | 2 | ||||
-rw-r--r-- | lib/WWW/FairViewer.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/Activities.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/Authentication.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/Channels.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/CommentThreads.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/GetCaption.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/GuideCategories.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/Itags.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/ParseJSON.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/ParseXML.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/PlaylistItems.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/Playlists.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/RegularExpressions.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/Search.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/Subscriptions.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/Utils.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/VideoCategories.pm | 4 | ||||
-rw-r--r-- | lib/WWW/FairViewer/Videos.pm | 4 | ||||
-rw-r--r-- | share/gtk-fair-viewer.glade | 3 |
24 files changed, 43 insertions, 45 deletions
@@ -12,7 +12,7 @@ my $builder = Module::Build->new( module_name => 'WWW::FairViewer', license => 'perl', - dist_author => q{Jesús E. <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d>}, + dist_author => q{Jesus E. <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d>}, dist_version_from => 'lib/WWW/FairViewer.pm', release_status => 'stable', @@ -1,7 +1,7 @@ { "abstract" : "A lightweight application for searching and streaming videos from YouTube, using the Invidious API and hypervideo support.", "author" : [ - "Jesús E. <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d>" + "Jesus E. <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d>" ], "dynamic_config" : 1, "generated_by" : "Module::Build version 0.4231", @@ -1,7 +1,7 @@ --- abstract: 'A lightweight application for searching and streaming videos from YouTube, using the Invidious API and hypervideo support.' author: - - 'Jesús E. <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d>' + - 'Jesus E. <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d>' build_requires: Test::More: '0' configure_requires: diff --git a/bin/fair-viewer b/bin/fair-viewer index cf1839d..61bb755 100755 --- a/bin/fair-viewer +++ b/bin/fair-viewer @@ -1,6 +1,6 @@ #!/usr/bin/perl -# Copyright (C) 2020 Jesús E. <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d>. +# Copyright (C) 2020 Jesus E. <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d>. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -38,8 +38,7 @@ See: fair-viewer --help =head1 LICENSE AND COPYRIGHT -Copyright 2010-2020 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/bin/gtk-fair-viewer b/bin/gtk-fair-viewer index 7b4a0a9..5ffa9eb 100755 --- a/bin/gtk-fair-viewer +++ b/bin/gtk-fair-viewer @@ -1,6 +1,6 @@ #!/usr/bin/perl -# Copyright (C) 2020 Jesús E. <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d>. +# Copyright (C) 2020 Jesus E. <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d>. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer.pm b/lib/WWW/FairViewer.pm index fa64aa0..6339405 100644 --- a/lib/WWW/FairViewer.pm +++ b/lib/WWW/FairViewer.pm @@ -1067,7 +1067,7 @@ sub previous_page { =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SEE ALSO @@ -1075,7 +1075,7 @@ https://developers.google.com/youtube/v3/docs/ =head1 LICENSE AND COPYRIGHT -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/Activities.pm b/lib/WWW/FairViewer/Activities.pm index 759f16e..de75424 100644 --- a/lib/WWW/FairViewer/Activities.pm +++ b/lib/WWW/FairViewer/Activities.pm @@ -68,7 +68,7 @@ sub my_activities { =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -81,7 +81,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2013-2015 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/Authentication.pm b/lib/WWW/FairViewer/Authentication.pm index 2588899..d3d4aff 100644 --- a/lib/WWW/FairViewer/Authentication.pm +++ b/lib/WWW/FairViewer/Authentication.pm @@ -191,7 +191,7 @@ sub save_authentication_tokens { =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -204,7 +204,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2013-2015 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/Channels.pm b/lib/WWW/FairViewer/Channels.pm index c83a444..6b2f27f 100644 --- a/lib/WWW/FairViewer/Channels.pm +++ b/lib/WWW/FairViewer/Channels.pm @@ -175,7 +175,7 @@ sub channel_title_from_id { =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -188,7 +188,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2013-2015 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/CommentThreads.pm b/lib/WWW/FairViewer/CommentThreads.pm index fb8ae68..7987fbd 100644 --- a/lib/WWW/FairViewer/CommentThreads.pm +++ b/lib/WWW/FairViewer/CommentThreads.pm @@ -73,7 +73,7 @@ sub comment_to_video_id { =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -85,7 +85,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2015-2016 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/GetCaption.pm b/lib/WWW/FairViewer/GetCaption.pm index 2aa2dac..851dd81 100644 --- a/lib/WWW/FairViewer/GetCaption.pm +++ b/lib/WWW/FairViewer/GetCaption.pm @@ -255,7 +255,7 @@ sub save_caption { =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -268,7 +268,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2012-2015 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/GuideCategories.pm b/lib/WWW/FairViewer/GuideCategories.pm index 6906bc9..71626a9 100644 --- a/lib/WWW/FairViewer/GuideCategories.pm +++ b/lib/WWW/FairViewer/GuideCategories.pm @@ -60,7 +60,7 @@ Return info for a list of comma-separated category IDs. =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -72,7 +72,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2013-2015 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/Itags.pm b/lib/WWW/FairViewer/Itags.pm index b5a98b1..077606e 100644 --- a/lib/WWW/FairViewer/Itags.pm +++ b/lib/WWW/FairViewer/Itags.pm @@ -294,7 +294,7 @@ sub find_streaming_url { =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -307,7 +307,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2012-2015 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/ParseJSON.pm b/lib/WWW/FairViewer/ParseJSON.pm index 3e6316d..d03b17a 100644 --- a/lib/WWW/FairViewer/ParseJSON.pm +++ b/lib/WWW/FairViewer/ParseJSON.pm @@ -51,7 +51,7 @@ sub make_json_string { =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -64,7 +64,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2013-2015 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/ParseXML.pm b/lib/WWW/FairViewer/ParseXML.pm index 3f0b1ae..632288d 100644 --- a/lib/WWW/FairViewer/ParseXML.pm +++ b/lib/WWW/FairViewer/ParseXML.pm @@ -287,7 +287,7 @@ sub xml2hash { =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -299,7 +299,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2012-2015 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/PlaylistItems.pm b/lib/WWW/FairViewer/PlaylistItems.pm index d757f54..d0d71ba 100644 --- a/lib/WWW/FairViewer/PlaylistItems.pm +++ b/lib/WWW/FairViewer/PlaylistItems.pm @@ -121,7 +121,7 @@ Get the favorites, uploads and likes for a given YouTube username. =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -134,7 +134,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2013-2015 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/Playlists.pm b/lib/WWW/FairViewer/Playlists.pm index 6fbbc2c..04339dc 100644 --- a/lib/WWW/FairViewer/Playlists.pm +++ b/lib/WWW/FairViewer/Playlists.pm @@ -99,7 +99,7 @@ sub my_playlists { =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -112,7 +112,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2013-2015 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/RegularExpressions.pm b/lib/WWW/FairViewer/RegularExpressions.pm index f57c8c7..f94b2d5 100644 --- a/lib/WWW/FairViewer/RegularExpressions.pm +++ b/lib/WWW/FairViewer/RegularExpressions.pm @@ -64,7 +64,7 @@ our @EXPORT = qw( =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -77,7 +77,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2012-2013 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/Search.pm b/lib/WWW/FairViewer/Search.pm index cab09cb..4495799 100644 --- a/lib/WWW/FairViewer/Search.pm +++ b/lib/WWW/FairViewer/Search.pm @@ -150,7 +150,7 @@ sub related_to_videoID { =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -163,7 +163,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2013-2015 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/Subscriptions.pm b/lib/WWW/FairViewer/Subscriptions.pm index fc2ba65..81f2da8 100644 --- a/lib/WWW/FairViewer/Subscriptions.pm +++ b/lib/WWW/FairViewer/Subscriptions.pm @@ -247,7 +247,7 @@ Get details for the comma-separated subscriptionID(s). =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -260,7 +260,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2013-2015 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/Utils.pm b/lib/WWW/FairViewer/Utils.pm index a6c6a3a..e1e5762 100644 --- a/lib/WWW/FairViewer/Utils.pm +++ b/lib/WWW/FairViewer/Utils.pm @@ -776,7 +776,7 @@ sub period_to_date { =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -789,7 +789,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2012-2020 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/VideoCategories.pm b/lib/WWW/FairViewer/VideoCategories.pm index 1b07fbb..9a60643 100644 --- a/lib/WWW/FairViewer/VideoCategories.pm +++ b/lib/WWW/FairViewer/VideoCategories.pm @@ -72,7 +72,7 @@ sub video_category_id_info { =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -85,7 +85,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2013-2015 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/WWW/FairViewer/Videos.pm b/lib/WWW/FairViewer/Videos.pm index d4e02a9..0ac555e 100644 --- a/lib/WWW/FairViewer/Videos.pm +++ b/lib/WWW/FairViewer/Videos.pm @@ -205,7 +205,7 @@ with a HASH ref for each result. An example of the item array's content are show =head1 AUTHOR -Jesús, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> +Jesus, C<< <echo aGVja3llbEBoeXBlcmJvbGEuaW5mbw== | base64 -d> >> =head1 SUPPORT @@ -218,7 +218,7 @@ You can find documentation for this module with the perldoc command. =head1 LICENSE AND COPYRIGHT Copyright 2013-2015 Trizen. -Copyright 2020 Jesús E. +Copyright 2020 Jesus E. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/share/gtk-fair-viewer.glade b/share/gtk-fair-viewer.glade index 41135de..b4fff6f 100644 --- a/share/gtk-fair-viewer.glade +++ b/share/gtk-fair-viewer.glade @@ -1,8 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- Generated with glade 3.22.1 -Copyright (C) Copyright © 2010-2020 Trizen -Copyright (C) Copyright © 2020 Jesús E. +Copyright (C) Copyright © 2020 Jesus E. This file is part of GTK Fair Viewer. |