Mercurial > hg > easyhg
changeset 40:42f3cb49373b
hg glog --verbose made history list very slow with 30000 files, so removed --verbose option.
author | Jari Korhonen <jtkorhonen@gmail.com> |
---|---|
date | Wed, 23 Jun 2010 21:12:46 +0300 |
parents | 3fa4803ecf44 |
children | 94bbc4b30b2a |
files | common.h mainwindow.cpp |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/common.h Sat Jun 19 13:31:49 2010 +0300 +++ b/common.h Wed Jun 23 21:12:46 2010 +0300 @@ -8,7 +8,7 @@ #include <QtCore> #define APPNAME "HgExplorer" -#define APPVERSION "0.7.0" +#define APPVERSION "0.7.1" #define MY_ICON_SIZE 32 #define REPOMENU_TITLE "Repository actions" #define WORKFOLDERMENU_TITLE "Workfolder actions"
--- a/mainwindow.cpp Sat Jun 19 13:31:49 2010 +0300 +++ b/mainwindow.cpp Wed Jun 23 21:12:46 2010 +0300 @@ -119,7 +119,7 @@ if (runningAction == ACT_NONE) { QStringList params; - params << "glog" << "--verbose"; + params << "glog"; runner -> startProc(getHgBinaryName(), workFolderPath, params); runningAction = ACT_LOG;