summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-10-15 22:25:42 +0200
committerCarl Hetherington <cth@carlh.net>2021-10-17 15:34:02 +0200
commit3896560ec6b32574092552e6807bfb413dcb2783 (patch)
tree8cc236ed9c2ab470f796c4763f1630286b96583e /wscript
parent04eb7ba1f2336375ce00fc8bc4dac4fec9a43162 (diff)
Basic and slightly inaccurate support for <Space> in subtitles (#2103).
Adding horizontal space to a Pango layout is hard, and I think this change probably gets it slightly wrong, but it's a step in the right direction.
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index fcfa8561d..db47ae274 100644
--- a/wscript
+++ b/wscript
@@ -35,8 +35,8 @@ except ImportError:
from waflib import Logs, Context
APPNAME = 'dcpomatic'
-libdcp_version = '1.8.2'
-libsub_version = '1.6.2'
+libdcp_version = '1.8.3'
+libsub_version = '1.6.3'
this_version = subprocess.Popen(shlex.split('git tag -l --points-at HEAD'), stdout=subprocess.PIPE).communicate()[0]
last_version = subprocess.Popen(shlex.split('git describe --tags --abbrev=0'), stdout=subprocess.PIPE).communicate()[0]