Added "analyzing" state to progress updater (used by SQueeze compression).

Changed the version string to "1.1.0d1".
This commit is contained in:
Andy McFadden 2002-09-26 22:12:18 +00:00
parent da51322d48
commit 809f26783f
3 changed files with 11 additions and 2 deletions

View File

@ -317,6 +317,9 @@ ProgressUpdater(NuArchive* pArchive, void* vProgress)
actionStr = "adding ";
showName = true;
break;
case kNuProgressAnalyzing:
actionStr = "analyzing ";
break;
case kNuProgressCompressing:
actionStr = "compressing";
break;
@ -771,7 +774,7 @@ OpenArchiveReadOnly(NulibState* pState)
if (IsFilenameStdin(NState_GetArchiveFilename(pState))) {
err = NuStreamOpenRO(stdin, &pArchive);
if (err != kNuErrNone) {
ReportError(err, "unable to open create stdin archive");
ReportError(err, "unable to open stdin archive");
goto bail;
}
/*

View File

@ -1,3 +1,9 @@
2002/09/26 fadden
- progress updater now shows "analyzing" for scan pass of SQ
2002/09/23 fadden
- ran the code through valgrind; found and fixed some minor bugs
2002/09/20 fadden
- pulled the sources out and started fiddling with them again
- changed hard tabs to spaces

View File

@ -9,7 +9,7 @@
#include "Nulib2.h"
static const char* gProgramVersion = "1.0.1";
static const char* gProgramVersion = "1.1.0d1";
/*