Skip to content

Commit

Permalink
Add first version of a ChangeLog file
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandro-bugatti committed Feb 7, 2020
1 parent 8e0bac2 commit 729af49
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions ChangesLog.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
07 February 2020
released version 0.1.131 of vsgl2

Change log:
-Added: Add hide/show functionality for the mouse cursor

24 changes: 12 additions & 12 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,32 @@
#define VERSION_H

namespace AutoVersion{

//Date Version Types
static const char DATE[] = "07";
static const char MONTH[] = "02";
static const char YEAR[] = "2020";
static const char UBUNTU_VERSION_STYLE[] = "20.02";

//Software Status
static const char STATUS[] = "Alpha";
static const char STATUS_SHORT[] = "a";

//Standard Version Type
static const long MAJOR = 0;
static const long MINOR = 1;
static const long BUILD = 129;
static const long REVISION = 678;

static const long BUILD = 131;
static const long REVISION = 682;
//Miscellaneous Version Types
static const long BUILDS_COUNT = 269;
#define RC_FILEVERSION 0,1,129,678
#define RC_FILEVERSION_STRING "0, 1, 129, 678\0"
static const char FULLVERSION_STRING [] = "0.1.129.678";

static const long BUILDS_COUNT = 275;
#define RC_FILEVERSION 0,1,131,682
#define RC_FILEVERSION_STRING "0, 1, 131, 682\0"
static const char FULLVERSION_STRING [] = "0.1.131.682";
//These values are to keep track of your versioning state, don't modify them.
static const long BUILD_HISTORY = 29;


}
#endif //VERSION_H

0 comments on commit 729af49

Please sign in to comment.