@@ -386,45 +386,45 @@ static void PrintExtendedExamples()
386
386
var examples = @"
387
387
#### Key Generation
388
388
# Generate Ed25519 keys for the first time
389
- generate_appcast.exe --generate-keys
389
+ netsparkle-generate-appcast --generate-keys
390
390
# Store keys in a custom location
391
- generate_appcast.exe --key-path path/to/store/keys
391
+ netsparkle-generate-appcast --key-path path/to/store/keys
392
392
393
393
# By default, your Ed25519 signatures are stored on disk in your local
394
394
# application data folder in a subdirectory called `netsparkle`.
395
395
# If you want to export your keys to the console, you can do:
396
- generate_appcast.exe --export
396
+ netsparkle-generate-appcast --export
397
397
398
398
#### Generate a signature for a binary without creating an app cast:
399
- generate_appcast.exe --generate-signature path/to/binary.exe
399
+ netsparkle-generate-appcast --generate-signature path/to/binary.exe
400
400
401
401
#### Verifying Binaries
402
- generate_appcast.exe --verify path/to/binary.exe --signature base_64_signature
402
+ netsparkle-generate-appcast --verify path/to/binary.exe --signature base_64_signature
403
403
404
404
#### Using a custom key location:
405
405
# If your keys are sitting on disk somewhere
406
406
# (`NetSparkle_Ed25519.priv` and `NetSparkle_Ed25519.pub` -- both
407
407
# in base 64 and both on disk in the same folder!), you can pass in
408
408
# the path to these keys like this:
409
- generate_appcast.exe --key-path path/to/keys/
409
+ netsparkle-generate-appcast --key-path path/to/keys/
410
410
411
411
#### Generating an app cast
412
412
413
413
# Generate an app cast for Windows executables that are sitting in a
414
414
# specific directory
415
- generate_appcast.exe -a directory/for/appcast/output/ -e exe -b directory/with/binaries/ -o windows
415
+ netsparkle-generate-appcast -a directory/for/appcast/output/ -e exe -b directory/with/binaries/ -o windows
416
416
417
417
# Add change log info to your app cast
418
- generate_appcast.exe -b binary/folder -p change/log/folder
418
+ netsparkle-generate-appcast -b binary/folder -p change/log/folder
419
419
420
420
# Customize download URL for binaries and change logs
421
- generate_appcast.exe -b binary/folder -p change/log/folder -u https://example.com/downloads -p https://example.com/downloads/changelogs
421
+ netsparkle-generate-appcast -b binary/folder -p change/log/folder -u https://example.com/downloads -p https://example.com/downloads/changelogs
422
422
423
423
# Set your application name for the app cast
424
- generate_appcast.exe -n ""My Awesome App"" -b binary/folder
424
+ netsparkle-generate-appcast -n ""My Awesome App"" -b binary/folder
425
425
426
426
# Use file versions in file names, e.g. for apps like ""My App 1.2.1.dmg""
427
- generate_appcast.exe - n ""macOS version"" - o macos - f true - b binary / folder - e dmg
427
+ netsparkle-generate-appcast - n ""macOS version"" - o macos - f true - b binary / folder - e dmg
428
428
429
429
" ;
430
430
Console . Write ( examples ) ;
0 commit comments