diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-03-02 20:12:50 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-03-02 20:12:50 +0000 |
| commit | 0b6652b491ffe7544a6f4a14fe968615d4481594 (patch) | |
| tree | 4cd9a96740503231b3e19b8af5164d817eb23485 | |
| parent | a1603e2f6b432f5f32a3b735eafdfda571fd56fb (diff) | |
| parent | 044ae60c8c0da7dc1a6b667b657d342aa770c42b (diff) | |
Merge master.
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | debian/changelog | 6 | ||||
| -rw-r--r-- | src/wx/film_editor.cc | 4 | ||||
| -rw-r--r-- | wscript | 2 |
4 files changed, 15 insertions, 4 deletions
@@ -8,6 +8,13 @@ 2013-03-01 Carl Hetherington <cth@carlh.net> + * Version 0.76beta2 released. + +2013-03-01 Carl Hetherington <cth@carlh.net> + + * Add primitive feature to plot graphs + of the soundtrack (#67). + * Version 0.76beta1 released. 2013-02-27 Carl Hetherington <cth@carlh.net> diff --git a/debian/changelog b/debian/changelog index 1889c62b8..dea380364 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +dvdomatic (0.76beta2-1) UNRELEASED; urgency=low + + * New upstream release. + + -- Carl Hetherington <carl@houllier.lan> Fri, 01 Mar 2013 18:32:16 +0000 + dvdomatic (0.76beta1-1) UNRELEASED; urgency=low * New upstream release. diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index a97562b98..a19d2fff1 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -1067,9 +1067,7 @@ FilmEditor::setup_formats () vector<Format const *> fmt = Format::all (); for (vector<Format const *>::iterator i = fmt.begin(); i != fmt.end(); ++i) { - if (c == VIDEO && dynamic_cast<FixedFormat const *> (*i)) { - _formats.push_back (*i); - } else if (c == STILL && dynamic_cast<VariableFormat const *> (*i)) { + if (c == VIDEO || (c == STILL && dynamic_cast<VariableFormat const *> (*i))) { _formats.push_back (*i); } } @@ -3,7 +3,7 @@ import os import sys APPNAME = 'dvdomatic' -VERSION = '0.76beta1' +VERSION = '0.76beta2' def options(opt): opt.load('compiler_cxx') |
