# HG changeset patch # User Jari Korhonen # Date 1277316766 -10800 # Node ID 42f3cb49373b89426ec83ab94eb8b8002b22f371 # Parent 3fa4803ecf448d3a171246e93c4e223cb17aff42 hg glog --verbose made history list very slow with 30000 files, so removed --verbose option. diff -r 3fa4803ecf44 -r 42f3cb49373b common.h --- 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 #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" diff -r 3fa4803ecf44 -r 42f3cb49373b mainwindow.cpp --- 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;