Release 3.23

master
dinkypumpkin 2019-11-29 19:35:40 +00:00
parent f790908702
commit f42a299c6d
4 changed files with 11 additions and 12 deletions

View File

@ -6,6 +6,7 @@ Bill Boughton
Caius Durling
Chris Reed, BBR
Crispin Flowerday
David Llewellyn-Jones
David Woodhouse
Edward Betts
HenderHobbit
@ -36,6 +37,7 @@ Will Elwood
dinkypumpkin
fs ck
fsck
hintswen
linuxcentrenet
notnac
wiehe

View File

@ -24,8 +24,8 @@
#
#
package main;
my $version = 3.22;
my $version_text = "3.23-dev";
my $version = 3.23;
my $version_text;
$version_text = sprintf("v%.2f", $version) unless $version_text;
#
# Help:
@ -2488,7 +2488,7 @@ sub usage {
'This applies even if the base option name already begins with "no-", e.g., --no-no-tag or --no-no-artwork',
);
push @man,
'.TH GET_IPLAYER "1" "August 2019" "Phil Lewis" "get_iplayer Manual"',
'.TH GET_IPLAYER "1" "November 2019" "Phil Lewis" "get_iplayer Manual"',
'.SH NAME', 'get_iplayer - Stream Recording tool and PVR for BBC iPlayer',
'.SH SYNOPSIS',
'\fBget_iplayer\fR [<options>] [<regex|index> ...]',

View File

@ -1,4 +1,4 @@
.TH GET_IPLAYER "1" "August 2019" "Phil Lewis" "get_iplayer Manual"
.TH GET_IPLAYER "1" "November 2019" "Phil Lewis" "get_iplayer Manual"
.SH NAME
get_iplayer \- Stream Recording tool and PVR for BBC iPlayer
.SH SYNOPSIS
@ -188,9 +188,6 @@ Start recording matching programmes. Search terms required.
\fB\-\-hash
Show recording progress as hashes
.TP
\fB\-\-hls\-lq\-audio
Use default lower\-quality audio for 'hvf' modes (TV only). Instead of 320k audio, output file will contain 128k or 96k audio, depending on the stream downloaded.
.TP
\fB\-\-include\-supplier <supplier>,<supplier>,...
Comma\-separated list of media stream suppliers to use if not included by default. Possible values: akamai,limelight,bidi
.TP
@ -306,10 +303,10 @@ Do not sanitise output file and directory names. Implies \-\-whitespace. Invalid
\fB\-\-output, \-o <dir>
Recording output directory
.TP
\fB\-\-outputradio <dir>
\fB\-\-output\-radio <dir>
Output directory for radio recordings (overrides \-\-output)
.TP
\fB\-\-outputtv <dir>
\fB\-\-output\-tv <dir>
Output directory for tv recordings (overrides \-\-output)
.TP
\fB\-\-raw
@ -577,7 +574,7 @@ get_iplayer was written by Phil Lewis <iplayer2 (at sign) linuxcentre.net> and i
.PP
This manual page was originally written by Jonathan Wiltshire <jmw@debian.org> for the Debian project (but may be used by others).
.SH COPYRIGHT NOTICE
get_iplayer v3.22, Copyright (C) 2008\-2010 Phil Lewis
get_iplayer v3.23, Copyright (C) 2008\-2010 Phil Lewis
This program comes with ABSOLUTELY NO WARRANTY; for details use \-\-warranty.
This is free software, and you are welcome to redistribute it under certain
conditions; use \-\-conditions for details.

View File

@ -24,8 +24,8 @@
# License: GPLv3 (see LICENSE.txt)
#
my $VERSION = 3.22;
my $VERSION_TEXT = "3.23-dev";
my $VERSION = 3.23;
my $VERSION_TEXT;
$VERSION_TEXT = sprintf("v%.2f", $VERSION) unless $VERSION_TEXT;
use CGI qw(-utf8 :all);