Skip to content

Commit 0bd1657

Browse files
authored
Merge pull request jgilje#16 from Sound-Linux-More/master
0.20210505: updated changelog and docs.
2 parents 5711b99 + d965b03 commit 0bd1657

File tree

5 files changed

+24
-11
lines changed

5 files changed

+24
-11
lines changed

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
Farbrausch V2M player
33
SDL Port by github.com/jgilje
44

5+
0.20210505
6+
7+
removed 'force power size stdin buffer'
8+
add output gain
9+
reduced samplesize, helps playback on windows
10+
remove register storage
11+
remove asm from ronan
12+
fix https://bitbucket.org/zxtune/zxtune
13+
514
0.20200408
615

716
debian based packaging

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
cmake_minimum_required(VERSION 3.5)
22

33
set(MAJOR_VERSION 0)
4-
set(DATE_VERSION 20200408)
5-
set(V2M_MAN_DATE "08 Apr 2020")
4+
set(DATE_VERSION 20210505)
5+
set(V2M_MAN_DATE "05 May 2021")
66
set(V2M_VERSION ${MAJOR_VERSION}.${DATE_VERSION})
77
project(v2mplayer VERSION ${V2M_VERSION})
88

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
![GitHub release (latest by date)](https://img.shields.io/github/v/release/Sound-Linux-More/v2mplayer)
2+
![GitHub Release Date](https://img.shields.io/github/release-date/Sound-Linux-More/v2mplayer)
3+
![GitHub repo size](https://img.shields.io/github/repo-size/jgilje/v2m-player)
4+
![GitHub all releases](https://img.shields.io/github/downloads/Sound-Linux-More/v2mplayer/total)
5+
![GitHub](https://img.shields.io/github/license/jgilje/v2m-player)
6+
17
# v2m-player
28
Farbrausch V2M player
39

4-
![TinyPlayer](https://github.com/zvezdochiot/v2m-player/blob/master/doc/V2M-TinyPlayer.jpg)
10+
![TinyPlayer](./doc/V2M-TinyPlayer.jpg)
511

612
This is a quick port of the tinyplayer at https://github.com/farbrausch/fr_public/tree/master/v2 to SDL.
713

@@ -24,9 +30,7 @@ gzip -cdf v2m/Dafunk--breeze.v2mz | ./v2mplayer -o Dafunk--breeze.newest.v2m
2430

2531
## See also
2632

27-
```
28-
http://ftp.modland.com/
29-
```
33+
* [FTP modland.com](http://ftp.modland.com/)
3034

3135
---
32-
2020
36+
2021

man/man1/v2mplayer.1.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ v2mplayer
1313

1414
.SH OPTIONS
1515
.TP
16-
\fB-b\fP N
17-
force power size stdin buffer (int, optional, [0..10])
18-
.TP
1916
\fB-s\fP N.N
2017
start at position (float, optional, in s., default = 0.0)
2118
.TP
19+
\fB-g\fP N
20+
gain (float, optional, default = 1.0)
21+
.TP
2222
\fB-k\fP
2323
key/auto stop (bool, optional, default = false)
2424
.TP

src/tinyplayer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ static void V2mPlayerUsage()
3838
printf("Usage : v2mplayer [options] <input_file_v2m>\n\n");
3939
printf("options:\n");
4040
printf(" -s N.N start at position (float, optional, in s., default = 0.0)\n");
41-
printf(" -g N.N gain (float, optional, default = 0.0)\n");
41+
printf(" -g N.N gain (float, optional, default = 1.0)\n");
4242
printf(" -k key/auto stop (bool, optional, default = false)\n");
4343
printf(" -o str output v2m newest version (string, optional, default = none)\n");
4444
printf(" -h this help\n");

0 commit comments

Comments
 (0)