Skip to content

Commit

Permalink
Merge pull request #25 from Sjord/version0.21
Browse files Browse the repository at this point in the history
Up version number to 0.21
  • Loading branch information
Sjord committed Jun 22, 2017
2 parents 2c66ba0 + 62e6a97 commit c876755
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
version 0.21
* Support the APE metadata tag format.
* Exit with the correct exit code.

version 0.20
* Merge two lookup tables into one in the layer 2 CRC length code.
* Fix issues when deleting multiple files in MP3 Checker.
Expand Down
4 changes: 4 additions & 0 deletions NEWS
@@ -1,5 +1,9 @@
mpck

0.21 (22-06-2017)
Finally support APE tags, which correctly identifies some files as OK
instead of broken.

0.20 (02-04-2017)
Got back to fixing some things after a quiet period of several years.

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.57)
AC_INIT([checkmate], [0.20], [sjoerd-mpck@linuxonly.nl])
AC_INIT([checkmate], [0.21], [sjoerd-mpck@linuxonly.nl])
AM_INIT_AUTOMAKE([foreign])
AM_CONFIG_HEADER(config.h)

Expand Down
14 changes: 7 additions & 7 deletions mp3checker/windows/mp3checker.rc
Expand Up @@ -28,10 +28,10 @@ IDD_ABOUT DIALOG 0, 0, 267, 170
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP
FONT 8, "MS Sans Serif"
BEGIN
CTEXT "Checkmate MP3 checker 0.20",IDC_STATIC,0,23,267,8,SS_CENTERIMAGE
CTEXT "Based on mpck 0.20",IDC_STATIC,0,34,267,8,SS_CENTERIMAGE
CTEXT "Checkmate MP3 checker 0.21",IDC_STATIC,0,23,267,8,SS_CENTERIMAGE
CTEXT "Based on mpck 0.21",IDC_STATIC,0,34,267,8,SS_CENTERIMAGE
CONTROL IDB_ABOUTLOGO,IDC_STATIC,"Static",SS_BITMAP,0,0,267,19
CTEXT "(C) 2006 Sjoerd Langkemper",IDC_STATIC,0,45,267,8,SS_CENTERIMAGE
CTEXT "(C) 2017 Sjoerd Langkemper",IDC_STATIC,0,45,267,8,SS_CENTERIMAGE
CTEXT "sjoerd-checkmate@linuxonly.nl",IDC_STATIC,0,56,267,8,SS_CENTERIMAGE
CTEXT "https://github.com/Sjord/checkmate",IDC_STATIC,0,67,267,8,SS_CENTERIMAGE
RTEXT "Enter",IDC_STATIC,44,85,63,8,SS_CENTERIMAGE
Expand Down Expand Up @@ -123,8 +123,8 @@ IDB_ABOUTLOGO BITMAP "mp3checker.bmp"
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,0,0,20
PRODUCTVERSION 0,0,0,20
FILEVERSION 0,0,0.21
PRODUCTVERSION 0,0,0.21
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -141,12 +141,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Sjoerd Langkemper"
VALUE "FileDescription", "Checkmate MP3 checker"
VALUE "FileVersion", "0, 0, 0, 20"
VALUE "FileVersion", "0, 0, 0, 21"
VALUE "InternalName", "Checkmate MP3 checker"
VALUE "LegalCopyright", "Copyright � 2017"
VALUE "OriginalFilename", "mp3checker.exe"
VALUE "ProductName", "Checkmate MP3 checker"
VALUE "ProductVersion", "0, 0, 0, 20"
VALUE "ProductVersion", "0, 0, 0, 21"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion mpck/mpck.h
Expand Up @@ -60,7 +60,7 @@
#ifdef PACKAGE_VERSION
#define VERSION PACKAGE_VERSION
#else
#define VERSION "0.20"
#define VERSION "0.21"
#endif /* PACKAGE_VERSION */
#endif /* VERSION */

Expand Down

0 comments on commit c876755

Please sign in to comment.