diff options
| author | 2023-03-21 18:44:39 +0100 | |
|---|---|---|
| committer | 2023-03-21 18:44:39 +0100 | |
| commit | b4e7004fdffa64570f0496a033b44d66781f4bc5 (patch) | |
| tree | 025b9563bd224af1a7e010c80284f52af0c6c2b9 | |
| parent | ba76637042c18df50ffd30dbdeba7b3679c5a57f (diff) | |
| download | ideviceinstaller-b4e7004fdffa64570f0496a033b44d66781f4bc5.tar.gz ideviceinstaller-b4e7004fdffa64570f0496a033b44d66781f4bc5.tar.bz2 | |
Mention in the documentation that certain commands don't work anymore with iOS 7 or later
| -rw-r--r-- | man/ideviceinstaller.1 | 29 | ||||
| -rw-r--r-- | src/ideviceinstaller.c | 5 |
2 files changed, 18 insertions, 16 deletions
diff --git a/man/ideviceinstaller.1 b/man/ideviceinstaller.1 index b13b0e6..2520ae0 100644 --- a/man/ideviceinstaller.1 +++ b/man/ideviceinstaller.1 | |||
| @@ -45,19 +45,8 @@ Uninstall app specified by BUNDLEID. | |||
| 45 | .B upgrade PATH | 45 | .B upgrade PATH |
| 46 | Upgrade app from a package file specified by PATH. | 46 | Upgrade app from a package file specified by PATH. |
| 47 | 47 | ||
| 48 | .TP | 48 | .SH LEGACY COMMANDS |
| 49 | .B restore BUNDLEID | 49 | The following commands are non-functional with iOS 7 or later. |
| 50 | Restore archived app specified by BUNDLEID. | ||
| 51 | |||
| 52 | .TP | ||
| 53 | .B list-archives | ||
| 54 | List archived apps on the device. | ||
| 55 | .RS | ||
| 56 | .TP | ||
| 57 | \-o xml | ||
| 58 | print full output as xml plist | ||
| 59 | .RE | ||
| 60 | |||
| 61 | .TP | 50 | .TP |
| 62 | .B archive BUNDLEID | 51 | .B archive BUNDLEID |
| 63 | Archive app specified by BUNDLEID. | 52 | Archive app specified by BUNDLEID. |
| @@ -80,10 +69,22 @@ only valid when copy=PATH is used: remove after copy | |||
| 80 | .RE | 69 | .RE |
| 81 | 70 | ||
| 82 | .TP | 71 | .TP |
| 72 | .B restore BUNDLEID | ||
| 73 | Restore archived app specified by BUNDLEID. | ||
| 74 | |||
| 75 | .TP | ||
| 76 | .B list-archives | ||
| 77 | List archived apps on the device. | ||
| 78 | .RS | ||
| 79 | .TP | ||
| 80 | \-o xml | ||
| 81 | print full output as xml plist | ||
| 82 | .RE | ||
| 83 | |||
| 84 | .TP | ||
| 83 | .B remove-archive BUNDLEID | 85 | .B remove-archive BUNDLEID |
| 84 | Remove app archive specified by BUNDLEID. | 86 | Remove app archive specified by BUNDLEID. |
| 85 | 87 | ||
| 86 | |||
| 87 | .SH OPTIONS | 88 | .SH OPTIONS |
| 88 | .TP | 89 | .TP |
| 89 | .B \-u, \-\-udid UDID | 90 | .B \-u, \-\-udid UDID |
diff --git a/src/ideviceinstaller.c b/src/ideviceinstaller.c index 92518da..5e59e8e 100644 --- a/src/ideviceinstaller.c +++ b/src/ideviceinstaller.c | |||
| @@ -411,8 +411,7 @@ static void print_usage(int argc, char **argv, int is_error) | |||
| 411 | " PATH can also be a .ipcc file for carrier bundles.\n" | 411 | " PATH can also be a .ipcc file for carrier bundles.\n" |
| 412 | " uninstall BUNDLEID Uninstall app specified by BUNDLEID.\n" | 412 | " uninstall BUNDLEID Uninstall app specified by BUNDLEID.\n" |
| 413 | " upgrade PATH Upgrade app from package file specified by PATH.\n" | 413 | " upgrade PATH Upgrade app from package file specified by PATH.\n" |
| 414 | " list-archives List archived apps\n" | 414 | "LEGACY COMMANDS (non-functional with iOS 7 or later):\n" |
| 415 | " -o xml print full output as xml plist\n" | ||
| 416 | " archive BUNDLEID Archive app specified by BUNDLEID, possible options:\n" | 415 | " archive BUNDLEID Archive app specified by BUNDLEID, possible options:\n" |
| 417 | " -o uninstall uninstall the package after making an archive\n" | 416 | " -o uninstall uninstall the package after making an archive\n" |
| 418 | " -o app_only archive application data only\n" | 417 | " -o app_only archive application data only\n" |
| @@ -420,6 +419,8 @@ static void print_usage(int argc, char **argv, int is_error) | |||
| 420 | " -o copy=PATH copy the app archive to directory PATH when done\n" | 419 | " -o copy=PATH copy the app archive to directory PATH when done\n" |
| 421 | " -o remove only valid when copy=PATH is used: remove after copy\n" | 420 | " -o remove only valid when copy=PATH is used: remove after copy\n" |
| 422 | " restore BUNDLEID Restore archived app specified by BUNDLEID\n" | 421 | " restore BUNDLEID Restore archived app specified by BUNDLEID\n" |
| 422 | " list-archives List archived apps\n" | ||
| 423 | " -o xml print full output as xml plist\n" | ||
| 423 | " remove-archive BUNDLEID Remove app archive specified by BUNDLEID\n" | 424 | " remove-archive BUNDLEID Remove app archive specified by BUNDLEID\n" |
| 424 | "\n" | 425 | "\n" |
| 425 | "OPTIONS:\n" | 426 | "OPTIONS:\n" |
