# HG changeset patch # User insilmaril # Date 1171886514 0 # Node ID f001beefdec247e3ac89b044ae57e155426bc98d # Parent 69a4c16bd85b6703664037b994e9b381946a7e7a 1.8.67 Bugfixes diff -r 69a4c16bd85b -r f001beefdec2 demos/todo.vym Binary file demos/todo.vym has changed diff -r 69a4c16bd85b -r f001beefdec2 tex/vym.changelog --- a/tex/vym.changelog Mon Feb 19 12:01:52 2007 +0000 +++ b/tex/vym.changelog Mon Feb 19 12:01:54 2007 +0000 @@ -1,3 +1,14 @@ +------------------------------------------------------------------- +Mon Feb 17 16:32:53 CET 2007 - uwedr + +- Version: 1.8.67 +- Feature: Unscroll all now only affects selected subtree +- Bugfix: Drawing error when temporary linking subtrees +- Bugfix: Import of KDE Bookmarks +- Bugfix: Export to KDE Bookmarks +- Bugfix: Export to XHTML +- Bugfix: Drag and Drop of URLs now only creates one branch + ------------------------------------------------------------------- Wed Feb 07 17:27:31 CET 2007 - uwedr diff -r 69a4c16bd85b -r f001beefdec2 version.h --- a/version.h Mon Feb 19 12:01:52 2007 +0000 +++ b/version.h Mon Feb 19 12:01:54 2007 +0000 @@ -4,8 +4,8 @@ #include #define __VYM_NAME "VYM" -#define __VYM_VERSION "1.8.66" -#define __VYM_BUILD_DATE "February 07, 2007" +#define __VYM_VERSION "1.8.67" +#define __VYM_BUILD_DATE "February 17, 2007" bool checkVersion(const QString &); diff -r 69a4c16bd85b -r f001beefdec2 warningdialog.cpp --- a/warningdialog.cpp Mon Feb 19 12:01:52 2007 +0000 +++ b/warningdialog.cpp Mon Feb 19 12:01:54 2007 +0000 @@ -25,7 +25,7 @@ ui.cancelButton->hide(); } -void WarningDialog::setShowAgainName (const QString &s) +void WarningDialog::setShowAgainName (const QString &s) //FIXME not implemented yet { /* showAgainName=s; @@ -41,5 +41,5 @@ void WarningDialog::setCaption(const QString &s) { - setCaption("VYM - "+s); + QDialog::setCaption("VYM - "+s); } diff -r 69a4c16bd85b -r f001beefdec2 xsltproc.cpp --- a/xsltproc.cpp Mon Feb 19 12:01:52 2007 +0000 +++ b/xsltproc.cpp Mon Feb 19 12:01:54 2007 +0000 @@ -65,7 +65,9 @@ args << outputFile; args << xslFile; args << inputFile; - dia.append ("vym is executing: \n" + xsltprocessor+" "+args.join(" ") ); + QString com=xsltprocessor+" "+args.join(" "); + //cout <start(xsltprocessor,args); if (!xsltProc->waitForStarted() ) { @@ -73,8 +75,7 @@ QObject::tr("Could not start %1").arg(xsltprocessor) ); } else { - xsltProc->waitFinished(); - if (xsltProc->exitStatus()!=QProcess::NormalExit ) + if (!xsltProc->waitForFinished()) QMessageBox::critical( 0, QObject::tr( "Critical Error" ), QObject::tr("%1 didn't exit normally").arg(xsltprocessor) + xsltProc->getErrout() );