Browse Source

Now 0.1.3

Thomas Buck 10 years ago
parent
commit
8509d6bea4
4 changed files with 13 additions and 4 deletions
  1. 2
    1
      CMakeLists.txt
  2. 4
    2
      ChangeLog
  3. 1
    1
      include/Config.h.in
  4. 6
    0
      src/main.cpp

+ 2
- 1
CMakeLists.txt View File

@@ -4,11 +4,12 @@ project (OpenRaider)
4 4
 # Version Number
5 5
 set (OpenRaider_VERSION_MAJOR 0)
6 6
 set (OpenRaider_VERSION_MINOR 1)
7
-set (OpenRaider_VERSION_MICRO 2)
7
+set (OpenRaider_VERSION_MICRO 3)
8 8
 set (OpenRaider_VERSION_RELEASE -git)
9 9
 
10 10
 # Build Host
11 11
 set (OpenRaider_BUILD_HOST ${CMAKE_HOST_SYSTEM})
12
+site_name (OpenRaider_HOSTNAME)
12 13
 
13 14
 #################################################################
14 15
 

+ 4
- 2
ChangeLog View File

@@ -3,10 +3,12 @@
3 3
  ChangeLog 
4 4
  ==================================================================
5 5
 
6
- OpenRaider (0.1.2) xythobuz <xythobuz@xythobuz.de>
6
+ OpenRaider (0.1.3) xythobuz <xythobuz@xythobuz.de>
7 7
 
8 8
 	[ 20140314 ]
9
-	* Started complete re-write...
9
+	* Started more or less complete re-write...
10
+
11
+ OpenRaider (0.1.2) xythobuz <xythobuz@xythobuz.de>
10 12
 
11 13
 	[ 20140313 ]
12 14
 	* Removed unit tests. No unit tests are better then some half-assed

+ 1
- 1
include/Config.h.in View File

@@ -1,5 +1,5 @@
1 1
 #define VERSION "OpenRaider-@OpenRaider_VERSION_MAJOR@.@OpenRaider_VERSION_MINOR@.@OpenRaider_VERSION_MICRO@@OpenRaider_VERSION_RELEASE@ (@CMAKE_BUILD_TYPE@)"
2
-#define BUILD_HOST "@OpenRaider_BUILD_HOST@"
2
+#define BUILD_HOST "@OpenRaider_BUILD_HOST@ @OpenRaider_HOSTNAME@"
3 3
 
4 4
 #define DEFAULT_CONFIG_PATH "~/.OpenRaider/"
5 5
 #define DEFAULT_CONFIG_FILE "OpenRaider.init"

+ 6
- 0
src/main.cpp View File

@@ -18,6 +18,12 @@ OpenRaider *gOpenRaider = NULL;
18 18
 void cleanupHandler() {
19 19
     if (gOpenRaider)
20 20
         delete gOpenRaider;
21
+
22
+    printf("\nThanks for testing %s\n", VERSION);
23
+    printf("Build date: %s @ %s\n", __DATE__, __TIME__);
24
+    printf("Build host: %s\n", BUILD_HOST);
25
+    printf("Web site  : http://github.com/xythobuz/OpenRaider\n");
26
+    printf("Contact   : xythobuz@xythobuz.de\n");
21 27
 }
22 28
 
23 29
 int main(int argc, char *argv[]) {

Loading…
Cancel
Save