# HG changeset patch # User Chris Cannam # Date 1289920457 0 # Node ID 4557da8bdee6bd33c45cf528ad0c0630ebfe4b61 # Parent 8af90d05760917fb7ccfe0d0ff11dc9c93b0dda2 * minor updates diff -r 8af90d057609 -r 4557da8bdee6 common.h --- a/common.h Tue Nov 16 14:32:51 2010 +0000 +++ b/common.h Tue Nov 16 15:14:17 2010 +0000 @@ -20,8 +20,8 @@ #include -#define APPNAME "HgExplorer" -#define APPVERSION "0.7.2" +#define APPNAME "EasyMercurial" +#define APPVERSION "0.8" #define MY_ICON_SIZE 32 #define REPOMENU_TITLE "Repository actions" #define WORKFOLDERMENU_TITLE "Workfolder actions" diff -r 8af90d057609 -r 4557da8bdee6 hgrunner.cpp --- a/hgrunner.cpp Tue Nov 16 14:32:51 2010 +0000 +++ b/hgrunner.cpp Tue Nov 16 15:14:17 2010 +0000 @@ -65,8 +65,7 @@ stdOut = QString::fromUtf8(proc -> readAllStandardOutput()); stdErr = QString::fromUtf8(proc -> readAllStandardError()); - DEBUG << "setProcExitInfo: received " << stdOut.split("\n").size() << " lines of stdout"; - DEBUG << "setProcExitInfo: received " << stdErr.split("\n").size() << " lines of stderr"; + DEBUG << "setProcExitInfo: " << stdOut.split("\n").size() << " line(s) of stdout, " << stdErr.split("\n").size() << " line(s) of stderr"; // std::cerr << "stdout was " << stdOut.toStdString() << std::endl; }