-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAIN: Add AGPLv3 info and source URL to --version
Bump to 1.0.1
- Loading branch information
Showing
6 changed files
with
32 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
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
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 |
---|---|---|
|
@@ -35,9 +35,12 @@ | |
#endif | ||
|
||
#ifndef PACKAGE_VERSION | ||
#define PACKAGE_VERSION "1.0.0" | ||
#define PACKAGE_VERSION "1.0.1" | ||
#endif | ||
|
||
const char *ADL2VGM_NAME = PACKAGE_NAME; | ||
const char *ADL2VGM_VERSION = PACKAGE_VERSION; | ||
const char *ADL2VGM_NAMEVERSION = PACKAGE_NAME " " PACKAGE_VERSION; | ||
const char *ADL2VGM_COPYRIGHTYEAR = "2014"; | ||
const char *ADL2VGM_COPYRIGHTAUTHOR = "Sven Hesse (DrMcCoy) <[email protected]>"; | ||
const char *ADL2VGM_URL = "https://github.com/DrMcCoy/CoktelADL2VGM"; |
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 |
---|---|---|
|
@@ -34,4 +34,13 @@ extern const char *ADL2VGM_VERSION; | |
// "CoktelADL2VGM 0.0.0" | ||
extern const char *ADL2VGM_NAMEVERSION; | ||
|
||
// "2014" | ||
extern const char *ADL2VGM_COPYRIGHTYEAR; | ||
|
||
// "Sven Hesse (DrMcCoy) <[email protected]>" | ||
extern const char *ADL2VGM_COPYRIGHTAUTHOR; | ||
|
||
// "https://..." | ||
extern const char *ADL2VGM_URL; | ||
|
||
#endif // COMMON_VERSION_HPP |