From e46c42e3c79a1b595398353b2934629586171912 Mon Sep 17 00:00:00 2001 From: zvezdochiot Date: Wed, 5 May 2021 01:03:31 +0300 Subject: [PATCH] 0.20210505: typo --- CHANGELOG | 9 +++++++++ CMakeLists.txt | 4 ++-- README.md | 4 +--- man/man1/v2mplayer.1.in | 8 ++++---- src/tinyplayer.cpp | 2 +- 5 files changed, 17 insertions(+), 10 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 5555188..c5074f4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,15 @@ Farbrausch V2M player SDL Port by github.com/jgilje +0.20210505 + + removed 'force power size stdin buffer' + add output gain + reduced samplesize, helps playback on windows + remove register storage + remove asm from ronan + fix https://bitbucket.org/zxtune/zxtune + 0.20200408 debian based packaging diff --git a/CMakeLists.txt b/CMakeLists.txt index 64243f0..de52047 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,8 +1,8 @@ cmake_minimum_required(VERSION 3.5) set(MAJOR_VERSION 0) -set(DATE_VERSION 20200408) -set(V2M_MAN_DATE "08 Apr 2020") +set(DATE_VERSION 20210505) +set(V2M_MAN_DATE "05 May 2021") set(V2M_VERSION ${MAJOR_VERSION}.${DATE_VERSION}) project(v2mplayer VERSION ${V2M_VERSION}) diff --git a/README.md b/README.md index 13a8f39..b344f2f 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,7 @@ gzip -cdf v2m/Dafunk--breeze.v2mz | ./v2mplayer -o Dafunk--breeze.newest.v2m ## See also -``` -http://ftp.modland.com/ -``` +* [FTP modland.com](http://ftp.modland.com/) --- 2020 diff --git a/man/man1/v2mplayer.1.in b/man/man1/v2mplayer.1.in index c0d0416..2e50c26 100644 --- a/man/man1/v2mplayer.1.in +++ b/man/man1/v2mplayer.1.in @@ -13,12 +13,12 @@ v2mplayer .SH OPTIONS .TP -\fB-b\fP N -force power size stdin buffer (int, optional, [0..10]) -.TP \fB-s\fP N.N start at position (float, optional, in s., default = 0.0) .TP +\fB-g\fP N +gain (float, optional, default = 1.0) +.TP \fB-k\fP key/auto stop (bool, optional, default = false) .TP @@ -30,7 +30,7 @@ help .SH EXAMPLE \fBv2mplayer\fP v2m/0test.v2m - zcat v2m/Dafunk--breeze.v2mz | \fBv2mplayer\fP + gzip -cdf v2m/Dafunk--breeze.v2mz | \fBv2mplayer\fP .SH COPYRIGHT Copyright 2016 Joakim L. Gilje. diff --git a/src/tinyplayer.cpp b/src/tinyplayer.cpp index d06785f..5ac3f21 100644 --- a/src/tinyplayer.cpp +++ b/src/tinyplayer.cpp @@ -38,7 +38,7 @@ static void V2mPlayerUsage() printf("Usage : v2mplayer [options] \n\n"); printf("options:\n"); printf(" -s N.N start at position (float, optional, in s., default = 0.0)\n"); - printf(" -g N.N gain (float, optional, default = 0.0)\n"); + printf(" -g N.N gain (float, optional, default = 1.0)\n"); printf(" -k key/auto stop (bool, optional, default = false)\n"); printf(" -o str output v2m newest version (string, optional, default = none)\n"); printf(" -h this help\n");