Skip to content

Commit 0c3c0a5

Browse files
committed
0.2.1 release
1 parent 525f219 commit 0c3c0a5

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
### Version 0.2.1
44

5+
- Overloaded `Nxx` for Game Gear stereo control
56
- Channels no longer reduce to zero volume when the mixed volume is less than 0 (to match 0CC-FT's 5B behaviour)
67
- Fixed arpeggio on noise channel now maps 0 to `L-#` and 2 to `H-#` **(backward-incompatible change, modify your modules accordingly)**
78
- Fixed VGM logs putting 0 in the sample count fields

FamiTracker.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -389,8 +389,8 @@ END
389389
//
390390

391391
VS_VERSION_INFO VERSIONINFO
392-
FILEVERSION 0,1,0,0
393-
PRODUCTVERSION 0,1,0,0
392+
FILEVERSION 0,2,1,0
393+
PRODUCTVERSION 0,2,1,0
394394
FILEFLAGSMASK 0x3fL
395395
#ifdef _DEBUG
396396
FILEFLAGS 0x1L
@@ -407,12 +407,12 @@ BEGIN
407407
BEGIN
408408
VALUE "CompanyName", "HertzDevil"
409409
VALUE "FileDescription", "SnevenTracker, SN76489 sound tracker"
410-
VALUE "FileVersion", "0.1.0.0"
410+
VALUE "FileVersion", "0.2.1.0"
411411
VALUE "InternalName", "SnevenTracker.exe"
412412
VALUE "LegalCopyright", " (c) HertzDevil 2016 All rights reserved."
413413
VALUE "OriginalFilename", "SnevenTracker.exe"
414414
VALUE "ProductName", "SnevenTracker"
415-
VALUE "ProductVersion", "0.1.0.0"
415+
VALUE "ProductVersion", "0.2.1.0"
416416
END
417417
END
418418
BLOCK "VarFileInfo"

version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
// Version info
3030
#define VERSION_MAJ 0
31-
#define VERSION_MIN 1
32-
#define VERSION_REV 0
31+
#define VERSION_MIN 2
32+
#define VERSION_REV 1
3333

3434
#define VERSION_WIP 0
3535

0 commit comments

Comments
 (0)