Bug 358033 - loading project from 0.9.10 into 15.12.1 garbles title clip
Summary: loading project from 0.9.10 into 15.12.1 garbles title clip
Status: RESOLVED FIXED
Alias: None
Product: kdenlive
Classification: Applications
Component: Rendering & Export (show other bugs)
Version: unspecified
Platform: openSUSE Linux
: NOR normal
Target Milestone: ---
Assignee: Jean-Baptiste Mardelle
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-01-15 16:27 UTC by Martin Koller
Modified: 2016-01-15 19:04 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In: 15.12.2
Sentry Crash Report:


Attachments
title clip as seen in 0.9.10 (20.90 KB, image/png)
2016-01-15 16:28 UTC, Martin Koller
Details
title clip as seen in 15.12.1 (19.07 KB, image/png)
2016-01-15 16:28 UTC, Martin Koller
Details
project file (27.01 KB, application/xml)
2016-01-15 16:29 UTC, Martin Koller
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Koller 2016-01-15 16:27:52 UTC
I have made the tutorial project with kdenlive 0.9.10 and added a title clip which contains 3 lines of text.
Loading the same project into kdenlive 15.12.1 did move all 3 lines in the title clip to the top border overlapping each other.

See attached screenshots and project file.

Reproducible: Always
Comment 1 Martin Koller 2016-01-15 16:28:33 UTC
Created attachment 96662 [details]
title clip as seen in 0.9.10
Comment 2 Martin Koller 2016-01-15 16:28:55 UTC
Created attachment 96663 [details]
title clip as seen in 15.12.1
Comment 3 Martin Koller 2016-01-15 16:29:19 UTC
Created attachment 96664 [details]
project file
Comment 4 Jean-Baptiste Mardelle 2016-01-15 18:52:35 UTC
Git commit b93fcee53693d23fe4a53a1e9e9f3bb8205323c1 by Jean-Baptiste Mardelle.
Committed on 15/01/2016 at 18:52.
Pushed by mardelle into branch 'master'.

Fix titles from 0.9.x kdenlive versions broken on locales with comma separator
Don't block opening project on missing font
Fix error in importing old project files that was not processing all clips

M  +1    -2    src/doc/documentchecker.cpp
M  +55   -1    src/doc/documentvalidator.cpp
M  +2    -0    src/doc/documentvalidator.h

http://commits.kde.org/kdenlive/b93fcee53693d23fe4a53a1e9e9f3bb8205323c1
Comment 5 Jean-Baptiste Mardelle 2016-01-15 18:58:13 UTC
Git commit a98aac413302602505f632e895ea682e0f903c5f by Jean-Baptiste Mardelle.
Committed on 15/01/2016 at 18:57.
Pushed by mardelle into branch 'Applications/15.12'.

Fix titles from 0.9.x kdenlive versions broken on locales with comma separator
Don't block opening project on missing font
Fix error in importing old project files that was not processing all clips

M  +1    -2    src/doc/documentchecker.cpp
M  +55   -1    src/doc/documentvalidator.cpp
M  +2    -0    src/doc/documentvalidator.h

http://commits.kde.org/kdenlive/a98aac413302602505f632e895ea682e0f903c5f
Comment 6 Jean-Baptiste Mardelle 2016-01-15 19:04:17 UTC
Thanks a lot for your report and attached file. 
I have just fixed the problem in git and it will be in Kdenlive 15.12.2.
As a workaround, you can edit the .kdenlive file in a text editor, and look for the "position" in the document.

You will see that there are several lines like this:

position x="149" y="526,0259348637516"

The x and y values should not contain comma. So changing it to:

position x="149" y="526"

will fix the problem. This is now done automatically in git.