diff --git a/README.markdown b/README.markdown index aa58096..ce7e63c 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.7 + webarchiver 0.9 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.9 : Removed man page template. Updated Version number in code. + Version 0.8 : [Matias Piipari][] fixed error codes. Version 0.7 : diff --git a/webarchiver.m b/webarchiver.m index 8cea40c..8bee864 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.7\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.9\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); }