diff options
| -rw-r--r-- | ChangeLog | 9 | ||||
| -rw-r--r-- | debian/changelog | 5 | ||||
| -rw-r--r-- | src/lib/ratio.cc | 6 | ||||
| -rw-r--r-- | wscript | 2 |
4 files changed, 15 insertions, 7 deletions
@@ -1,7 +1,14 @@ +2014-01-13 Carl Hetherington <cth@carlh.net> + + * Change 4:3 and 5:3 ratios to be precise rather than 1.33:1 and 1.66:1, and + also tweak 1.19:1 (#306). + + * Version 1.63.0 released. + 2014-01-12 Carl Hetherington <cth@carlh.net> * Fix crashes when using -3dB options in locales with a , decimal separator. - + * Version 1.62.3 released. 2014-01-11 Carl Hetherington <cth@carlh.net> diff --git a/debian/changelog b/debian/changelog index 96cbe3938..fe5f126f0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -dcpomatic (1.62.3-1) UNRELEASED; urgency=low +dcpomatic (1.63.0-1) UNRELEASED; urgency=low * New upstream release. * New upstream release. @@ -71,8 +71,9 @@ dcpomatic (1.62.3-1) UNRELEASED; urgency=low * New upstream release. * New upstream release. * New upstream release. + * New upstream release. - -- Carl Hetherington <carl@d1stkfactory> Sat, 11 Jan 2014 18:38:13 +0000 + -- Carl Hetherington <carl@d1stkfactory> Mon, 13 Jan 2014 00:14:08 +0000 dcpomatic (0.87-1) UNRELEASED; urgency=low diff --git a/src/lib/ratio.cc b/src/lib/ratio.cc index 41abbb760..a47b2101e 100644 --- a/src/lib/ratio.cc +++ b/src/lib/ratio.cc @@ -32,11 +32,11 @@ vector<Ratio const *> Ratio::_ratios; void Ratio::setup_ratios () { - _ratios.push_back (new Ratio (float(1285) / 1080, "119", _("1.19"), "F")); - _ratios.push_back (new Ratio (float(1436) / 1080, "133", _("4:3"), "F")); + _ratios.push_back (new Ratio (float(1290) / 1080, "119", _("1.19"), "F")); + _ratios.push_back (new Ratio (float(1440) / 1080, "133", _("4:3"), "F")); _ratios.push_back (new Ratio (float(1480) / 1080, "137", _("Academy"), "F")); _ratios.push_back (new Ratio (float(1485) / 1080, "138", _("1.375"), "F")); - _ratios.push_back (new Ratio (float(1793) / 1080, "166", _("1.66"), "F")); + _ratios.push_back (new Ratio (float(1800) / 1080, "166", _("1.66"), "F")); _ratios.push_back (new Ratio (float(1920) / 1080, "178", _("16:9"), "F")); _ratios.push_back (new Ratio (float(1998) / 1080, "185", _("Flat"), "F")); _ratios.push_back (new Ratio (float(2048) / 858, "239", _("Scope"), "S")); @@ -3,7 +3,7 @@ import os import sys APPNAME = 'dcpomatic' -VERSION = '1.62.3devel' +VERSION = '1.63.0devel' def options(opt): opt.load('compiler_cxx') |
