diff --git a/changelog.txt b/changelog.txt index b2b332d..04acda2 100644 --- a/changelog.txt +++ b/changelog.txt @@ -23,7 +23,11 @@ Lbre Media Server ChangeLog ******************************************************************************* -V 0.04: +V 0.04-2 + ++ Bugfix make thumbs script not launched. + +V 0.04-1: + GUI: added FPS counter + GUI: added FPS selector diff --git a/src/libremediaserver.cpp b/src/libremediaserver.cpp index 826d738..672b6ed 100644 --- a/src/libremediaserver.cpp +++ b/src/libremediaserver.cpp @@ -510,7 +510,12 @@ void libreMediaServer::makeThumbs() QProcess *script = new QProcess (); QStringList arguments; arguments << m_pathmedia; - script->execute("../scripts/make_thumbs.sh", arguments); + qDebug() << "Creating thumbs in " << arguments; + QString s = "Creating thumbs in "; + s.append(arguments.at(0)); + s.append("This operation can take some time..."); + ui.textEdit->appendPlainText(s); + script->execute("./scripts/make_thumbs.sh", arguments); } ///////////////////////////////////////////////////////////////////