[kdenlive] [Bug 384197] Project autosave causes dropped frames in clip preview

2017-09-05 Thread Jean-Baptiste Mardelle
https://bugs.kde.org/show_bug.cgi?id=384197

Jean-Baptiste Mardelle  changed:

   What|Removed |Added

  Latest Commit|https://commits.kde.org/kde |https://commits.kde.org/kde
   |nlive/67c4958b65a296cbdf076 |nlive/a90c755dd8ee5923af546
   |3d1540ee08d33ff0e91 |aa1255804d92d8afb29

--- Comment #5 from Jean-Baptiste Mardelle  ---
Git commit a90c755dd8ee5923af546aa1255804d92d8afb29 by Jean-Baptiste Mardelle.
Committed on 05/09/2017 at 17:11.
Pushed by mardelle into branch 'refactoring_timeline'.

Allow disabling autosave until we improve it

M  +1-1src/doc/kdenlivedoc.cpp
M  +4-1src/kdenlivesettings.kcfg
M  +83   -76   src/ui/configmisc_ui.ui

https://commits.kde.org/kdenlive/a90c755dd8ee5923af546aa1255804d92d8afb29

-- 
You are receiving this mail because:
You are watching all bug changes.

[kdenlive] [Bug 384197] Project autosave causes dropped frames in clip preview

2017-09-03 Thread Jean-Baptiste Mardelle
https://bugs.kde.org/show_bug.cgi?id=384197

Jean-Baptiste Mardelle  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED
  Latest Commit||https://commits.kde.org/kde
   ||nlive/67c4958b65a296cbdf076
   ||3d1540ee08d33ff0e91

--- Comment #4 from Jean-Baptiste Mardelle  ---
Git commit 67c4958b65a296cbdf0763d1540ee08d33ff0e91 by Jean-Baptiste Mardelle.
Committed on 03/09/2017 at 06:12.
Pushed by mardelle into branch 'Applications/17.08'.

Allow disabling autosave until we improve it

M  +1-1src/doc/kdenlivedoc.cpp
M  +4-1src/kdenlivesettings.kcfg
M  +83   -76   src/ui/configmisc_ui.ui

https://commits.kde.org/kdenlive/67c4958b65a296cbdf0763d1540ee08d33ff0e91

-- 
You are receiving this mail because:
You are watching all bug changes.

[kdenlive] [Bug 384197] Project autosave causes dropped frames in clip preview

2017-08-30 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=384197

--- Comment #3 from mikko.rap...@iki.fi ---
Plain revert of d9ecb0751bcd82592506e5ebf18743ac56624d24 is not enough so I
ended up with:

--- a/src/doc/kdenlivedoc.cpp
+++ b/src/doc/kdenlivedoc.cpp
@@ -902,8 +902,9 @@ void KdenliveDoc::slotModified()
 void KdenliveDoc::setModified(bool mod)
 {
 // fix mantis#3160: The document may have an empty URL if not saved yet,
bu
t should have a m_autosave in any case
-if (m_autosave && mod) {
-emit startAutoSave();
+if (m_autosave && mod && KdenliveSettings::crashrecovery()) {
+// disabled, causes playback glitches too much
+// emit startAutoSave();
 }
 if (mod == m_modified) {
 return;

With this, the in and out point modifications are not affecting clip playback,
and I can continue weeding out my clip archive in preparation for the time line
edit.

Need to remember to ctrl-s every minute though :)

-- 
You are receiving this mail because:
You are watching all bug changes.

[kdenlive] [Bug 384197] Project autosave causes dropped frames in clip preview

2017-08-30 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=384197

--- Comment #2 from mikko.rap...@iki.fi ---
(In reply to mikko.rapeli from comment #1)
> Would be nice to have a way to disable autosave. I could live without for
> now.
> It seems kdenlive settings and project settings don't allow disabling it
> anymore..

Ah, it has been removed from GUI options in
d9ecb0751bcd82592506e5ebf18743ac56624d24 and made a mandatory default.

I will revert this change and disable autosave now for me now as a workaround.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kdenlive] [Bug 384197] Project autosave causes dropped frames in clip preview

2017-08-30 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=384197

--- Comment #1 from mikko.rap...@iki.fi ---
Would be nice to have a way to disable autosave. I could live without for now.
It seems kdenlive settings and project settings don't allow disabling it
anymore..

-- 
You are receiving this mail because:
You are watching all bug changes.