From a77633d0adef3dad8cd2aeed9918dbf4218f9659 Mon Sep 17 00:00:00 2001 From: newzealandpaul Date: Sun, 15 Jun 2014 12:04:31 +1200 Subject: [PATCH] Cleaned up github release --- README.markdown | 4 +++- webarchiver.m | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index 7c650f7..bb4f8a6 100644 --- a/README.markdown +++ b/README.markdown @@ -8,7 +8,7 @@ Webarchiver allows you to create Safari .webarchive files from the command line. $./webarchiver - webarchiver 0.2 + webarchiver 0.6 Usage: webarchiver -url URL -output FILE Example: webarchiver -url http://www.google.com -output google.webarchive -url http:// or path to local file @@ -26,6 +26,8 @@ The easiest way to install webarchiver is using ##Release notes +Version 0.6 : Cleaned up Github release. + Version 0.5 : More robust KBWebArchiver ([Keith Blount][] and [Jan Weiß][]). Version 0.4 : Code maintenance and cleanup ([Jan Weiß][]). diff --git a/webarchiver.m b/webarchiver.m index 4bbe489..b1c2ecf 100644 --- a/webarchiver.m +++ b/webarchiver.m @@ -17,7 +17,7 @@ int main (int argc, const char * argv[]) { BOOL localOnly = [localOnlyString isEqualToString:@"YES"]; if (url == nil || output == nil) { - fprintf(stderr, "webarchiver 0.5\nUsage: webarchiver -url URL -output FILE \nExample: webarchiver -url http://www.google.com -output google.webarchive\n-url\thttp:// or path to local file\n-output\tFile to write webarchive to\n\nUpdates can be found at https://github.com/newzealandpaul/webarchiver/\n"); + fprintf(stderr, "webarchiver 0.6\nUsage: webarchiver -url URL -output FILE \nExample: webarchiver -url http://www.google.com -output google.webarchive\n-url\thttp:// or path to local file\n-output\tFile to write webarchive to\n\nUpdates can be found at https://github.com/newzealandpaul/webarchiver/\n"); exit(1); }