From 6a3f3a163824b185d6c93f7db9aeaee45b8373a0 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 2 Oct 2012 16:20:08 +0100 Subject: Bump version --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wscript') diff --git a/wscript b/wscript index 7f6c3722f..ac226bfeb 100644 --- a/wscript +++ b/wscript @@ -3,7 +3,7 @@ import os import sys APPNAME = 'dvdomatic' -VERSION = '0.54pre' +VERSION = '0.54' def options(opt): opt.load('compiler_cxx') -- cgit v1.2.3 From 8090556101d03d07559bb5c71b5374e7f91883b8 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 2 Oct 2012 16:25:25 +0100 Subject: Bump version --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wscript') diff --git a/wscript b/wscript index ac226bfeb..7985d9419 100644 --- a/wscript +++ b/wscript @@ -3,7 +3,7 @@ import os import sys APPNAME = 'dvdomatic' -VERSION = '0.54' +VERSION = '0.55pre' def options(opt): opt.load('compiler_cxx') -- cgit v1.2.3 From 2f9e6bc1478d28f1b040ada6c901e6683ff7ac64 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 2 Oct 2012 22:08:41 +0100 Subject: Use version.cc contents instead of DVDOMATIC_VERSION. --- src/lib/film.cc | 3 ++- src/tools/dvdomatic.cc | 2 +- wscript | 1 - 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'wscript') diff --git a/src/lib/film.cc b/src/lib/film.cc index 90c410546..2db03f6a6 100644 --- a/src/lib/film.cc +++ b/src/lib/film.cc @@ -49,6 +49,7 @@ #include "decoder_factory.h" #include "config.h" #include "check_hashes_job.h" +#include "version.h" using namespace std; using namespace boost; @@ -483,7 +484,7 @@ Film::make_dcp (bool transcode, int freq) throw BadSettingError ("name", "cannot contain slashes"); } - log()->log (String::compose ("DVD-o-matic %1 using %2", DVDOMATIC_VERSION, dependency_version_summary())); + log()->log (String::compose ("DVD-o-matic %1 git %2 using %3", dvdomatic_version, dvdomatic_git_commit, dependency_version_summary())); { char buffer[128]; diff --git a/src/tools/dvdomatic.cc b/src/tools/dvdomatic.cc index 9ff2c1ddc..5f0028b75 100644 --- a/src/tools/dvdomatic.cc +++ b/src/tools/dvdomatic.cc @@ -350,7 +350,7 @@ public: { wxAboutDialogInfo info; info.SetName (_("DVD-o-matic")); - info.SetVersion (wxT (DVDOMATIC_VERSION)); + info.SetVersion (std_to_wx (String::compose ("DVD-o-matic version %1 git %2", dvdomatic_version, dvdomatic_git_commit))); info.SetDescription (_("Free, open-source DCP generation from almost anything.")); info.SetCopyright (_("(C) Carl Hetherington, Terrence Meiczinger, Paul Davis, Ole Laursen")); wxArrayString authors; diff --git a/wscript b/wscript index 7985d9419..cb284b126 100644 --- a/wscript +++ b/wscript @@ -20,7 +20,6 @@ def configure(conf): conf.load('winres') conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS', '-msse', '-mfpmath=sse', '-ffast-math', '-fno-strict-aliasing', '-Wall', '-Wno-attributes']) - conf.env.append_value('CXXFLAGS', ['-DDVDOMATIC_VERSION="%s"' % VERSION]) # Turn off player for now conf.options.disable_player = True -- cgit v1.2.3