Skip to content

Commit

Permalink
0.20210505: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zvezdochiot committed May 4, 2021
1 parent 5711b99 commit e46c42e
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 10 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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})

Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
8 changes: 4 additions & 4 deletions man/man1/v2mplayer.1.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/tinyplayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ static void V2mPlayerUsage()
printf("Usage : v2mplayer [options] <input_file_v2m>\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");
Expand Down

0 comments on commit e46c42e

Please sign in to comment.