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); }