vlp-15 Set version to 3.1. Replaced hardcoded strings with generated ones.
authorRafał Długołęcki <kontakt@dlugolecki.net.pl>
Wed, 7 Aug 2013 06:22:24 +0000 (08:22 +0200)
committerRafał Długołęcki <kontakt@dlugolecki.net.pl>
Wed, 7 Aug 2013 06:22:24 +0000 (08:22 +0200)
configure.ac
src/kernel/kernel.cpp

index 65e94cf83f1fafff6910a6b625a41720e0e67895..db2329cef84eae9a786d3e6b119c3621dacc3f0b 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([Virtual Loglan Processor], [2.6], [bugz@dlugolecki.net.pl], [vlp], [http://dlugolecki.net.pl/software/vlp/])
+AC_INIT([Virtual Loglan Processor], [3.1], [bugz@dlugolecki.net.pl], [vlp], [http://dlugolecki.net.pl/software/vlp/])
 AC_PREREQ([2.59])
 AM_INIT_AUTOMAKE([1.10 no-define])
 AC_CONFIG_HEADERS([config.h])
index 333a555a331382512665764575327d78cd9dc72b..16bda4f4ed2546a6526d2367b966c5ec947a69be 100644 (file)
@@ -73,6 +73,9 @@
 
 #include <libconfig.h>
 
+/* File resides in top directory (where are Makefiles)*/
+#include "../../config.h"
+
 #define GPATH "loggr"
 #define IPATH "logi"
 #define NPATH "logn"
@@ -244,7 +247,7 @@ QKernel::QKernel()
        info_messages = TRUE;
        wait_for_info = FALSE;
 
-       setCaption("Virtual LOGLAN Processor");
+       setCaption(PACKAGE_NAME);
        setBackgroundColor(white);
 
        bar = new QMenuBar(this);
@@ -1231,7 +1234,7 @@ void QKernel::UnlockConsole()
  */
 void QKernel::InitMessage()
 {
-       WriteMessage("\n Virtual LOGLAN Processor - ver 1.9: READY \n");
+       WriteMessage("\n " PACKAGE_STRING ": READY \n");
 }
 
 /**