From f9564a42b4832d78cf8de5559d7005072179e317 Mon Sep 17 00:00:00 2001 From: Paul Date: Fri, 30 Aug 2024 12:26:34 +1200 Subject: [PATCH] Updated help output --- webarchiver.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webarchiver.m b/webarchiver.m index fb1d2c4..8a484ff 100644 --- a/webarchiver.m +++ b/webarchiver.m @@ -18,7 +18,7 @@ int main (int argc, const char * argv[]) { BOOL localOnly = [localOnlyString isEqualToString:@"YES"]; if (url == nil || output == nil) { - fprintf(stderr, "webarchiver 0.9\nUsage: webarchiver -url URL [-js JAVASCRIPT] -output FILE \nExample: webarchiver -url https://www.google.com -output google.webarchive\n-url\thttp:// or path to local file\n-js\tCustom JavaScript to execute after loading the page\n-output\tFile to write webarchive to\n\nUpdates can be found at https://github.com/newzealandpaul/webarchiver/\n"); + fprintf(stderr, "webarchiver 0.12\nUsage: webarchiver -url URL [-js JAVASCRIPT] -output FILE \nExample: webarchiver -url https://www.google.com -output google.webarchive\n-url\thttp:// or path to local file\n-js\tCustom JavaScript to execute after loading the page\n-output\tFile to write webarchive to\n\nUpdates can be found at https://github.com/newzealandpaul/webarchiver/\n"); exit(1); }