forked from EuFlo/sacd-ripper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3769bd6
commit b905580
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* SACD Ripper - http://code.google.com/p/sacd-ripper/ | ||
* | ||
* Copyright (c) 2010-2011 by respective authors. | ||
* Copyright (c) 2010-2012 by respective authors. | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
@@ -22,16 +22,16 @@ | |
#ifndef VERSION_H_INCLUDED | ||
#define VERSION_H_INCLUDED | ||
|
||
#define SACD_RIPPER_VERSION 00305 | ||
#define SACD_RIPPER_VERSION_STRING "0.35" | ||
#define SACD_RIPPER_VERSION 00306 | ||
#define SACD_RIPPER_VERSION_STRING "0.36" | ||
|
||
#define SACD_RIPPER_VERSION_REVISION (SACD_RIPPER_VERSION / 100000) | ||
#define SACD_RIPPER_VERSION_MAJOR (SACD_RIPPER_VERSION / 100 % 1000) | ||
#define SACD_RIPPER_VERSION_MINOR (SACD_RIPPER_VERSION % 100) | ||
|
||
#define SACD_RIPPER_VERSION_INFO \ | ||
"SACD Ripper release " SACD_RIPPER_VERSION_STRING " " \ | ||
"Copyright (c) 2010-2011 by respective authors.\n\n" \ | ||
"Copyright (c) 2010-2012 by respective authors.\n\n" \ | ||
"Report bugs to [email protected]\n" | ||
|
||
#endif /* VERSION_H_INCLUDED */ |