Merge branch 'master' into content-rework-take5
authorCarl Hetherington <cth@carlh.net>
Mon, 1 Apr 2013 21:49:33 +0000 (22:49 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 1 Apr 2013 21:49:33 +0000 (22:49 +0100)
ChangeLog
debian/changelog
i18n.py
wscript

index 9dba8fedeaddd6cd05595a43948067197ff384fe..9240556b8f6cb4e004b53a9e16a8078e692bd029 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2013-03-28  Carl Hetherington  <cth@carlh.net>
+
+       * Version 0.78beta16 released.
+
+2013-03-28  Carl Hetherington  <cth@carlh.net>
+
+       * Version 0.78beta15 released.
+
 2013-03-28  Carl Hetherington  <cth@carlh.net>
 
        * Version 0.78beta14 released.
index 4109e5c3bbf4af50db39c039e925a4d91150a4d2..bf02c7a4f120c8ca768b49a8769c952cf2680877 100644 (file)
@@ -1,3 +1,15 @@
+dvdomatic (0.78beta16-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- Carl Hetherington <carl@houllier.lan>  Thu, 28 Mar 2013 16:28:05 +0000
+
+dvdomatic (0.78beta15-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- Carl Hetherington <carl@houllier.lan>  Thu, 28 Mar 2013 14:25:56 +0000
+
 dvdomatic (0.78beta14-1) UNRELEASED; urgency=low
 
   * New upstream release.
diff --git a/i18n.py b/i18n.py
index ce28d25e99d1e6d359132a8fcba6ebeabbf1a78a..807aedda6b6d92444df48dabe63498a2cef1e4d4 100644 (file)
--- a/i18n.py
+++ b/i18n.py
@@ -32,5 +32,5 @@ def po_to_mo(dir, name, bld):
         po = os.path.join('po', '%s.po' % lang)
         mo = os.path.join('mo', lang, '%s.mo' % name)
 
-        bld(rule = 'msgfmt ${SRC} -o ${TGT}', source = bld.path.make_node(po), target = bld.path.get_bld().make_node(mo))
+        bld(rule = 'msgfmt -f ${SRC} -o ${TGT}', source = bld.path.make_node(po), target = bld.path.get_bld().make_node(mo))
         bld.install_files(os.path.join('${PREFIX}', 'share', 'locale', lang, 'LC_MESSAGES'), mo)
diff --git a/wscript b/wscript
index 9040738fb87227a045705ec9abc93e9dd3f8bab9..9914b3292f4ebf74f73baf304591ba3dbe36583f 100644 (file)
--- a/wscript
+++ b/wscript
@@ -3,7 +3,7 @@ import os
 import sys
 
 APPNAME = 'dvdomatic'
-VERSION = '0.78beta14'
+VERSION = '0.78beta16'
 
 def options(opt):
     opt.load('compiler_cxx')