Skip to content

Commit 0f1ef6f

Browse files
committed
Fixes #54 - Publish 1.1.0 version
1 parent 6801052 commit 0f1ef6f

File tree

3 files changed

+25
-24
lines changed

3 files changed

+25
-24
lines changed

README.md

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,29 @@ Install and debug iPhone apps without using Xcode. Designed to work on unjailbro
1010

1111
## Usage
1212

13-
Usage: ./ios-deploy [OPTION]...
14-
-d, --debug launch the app in GDB after installation
15-
-i, --id <device_id> the id of the device to connect to
16-
-c, --detect only detect if the device is connected
17-
-b, --bundle <bundle.app> the path to the app bundle to be installed
18-
-a, --args <args> command line arguments to pass to the app when launching it
19-
-t, --timeout <timeout> number of seconds to wait for a device to be connected
20-
-u, --unbuffered don't buffer stdout
21-
-g, --gdbargs <args> extra arguments to pass to GDB when starting the debugger
22-
-x, --gdbexec <file> GDB commands script file
23-
-n, --nostart do not start the app when debugging
24-
-I, --noninteractive start in non interactive mode (quit when app crashes or exits)
25-
-v, --verbose enable verbose output
26-
-m, --noinstall directly start debugging without app install (-d not required)
27-
-p, --port <number> port used for device, default: 12345
28-
-r, --uninstall uninstall the app before install (do not use with -m; app cache and data are cleared)
29-
-1, --bundle_id <bundle id> specify bundle id for list and upload
30-
-l, --list list files
31-
-o, --upload <file> upload file
32-
-2, --to <target pathname> use together with upload file. specify target for upload
33-
-V, --version print the executable version
34-
13+
Usage: ./ios-deploy [OPTION]...
14+
-d, --debug launch the app in GDB after installation
15+
-i, --id <device_id> the id of the device to connect to
16+
-c, --detect only detect if the device is connected
17+
-b, --bundle <bundle.app> the path to the app bundle to be installed
18+
-a, --args <args> command line arguments to pass to the app when launching it
19+
-t, --timeout <timeout> number of seconds to wait for a device to be connected
20+
-u, --unbuffered don't buffer stdout
21+
-g, --gdbargs <args> extra arguments to pass to GDB when starting the debugger
22+
-x, --gdbexec <file> GDB commands script file
23+
-n, --nostart do not start the app when debugging
24+
-I, --noninteractive start in non interactive mode (quit when app crashes or exits)
25+
-L, --justlaunch just launch the app and exit lldb
26+
-v, --verbose enable verbose output
27+
-m, --noinstall directly start debugging without app install (-d not required)
28+
-p, --port <number> port used for device, default: 12345
29+
-r, --uninstall uninstall the app before install (do not use with -m; app cache and data are cleared)
30+
-1, --bundle_id <bundle id> specify bundle id for list and upload
31+
-l, --list list files
32+
-o, --upload <file> upload file
33+
-2, --to <target pathname> use together with upload file. specify target for upload
34+
-V, --version print the executable version
35+
3536
## Demo
3637

3738
* The included demo.app represents the minimum required to get code running on iOS.

ios-deploy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include <netinet/tcp.h>
1717
#include "MobileDevice.h"
1818

19-
#define APP_VERSION "1.0.10"
19+
#define APP_VERSION "1.1.0"
2020
#define PREP_CMDS_PATH "/tmp/fruitstrap-lldb-prep-cmds-"
2121
#define LLDB_SHELL "lldb -s " PREP_CMDS_PATH
2222

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ios-deploy",
3-
"version": "1.0.9",
3+
"version": "1.1.0",
44
"description": "launch iOS apps iOS devices from the command line (Xcode 5)",
55
"main": "ios-deploy",
66
"scripts": {

0 commit comments

Comments
 (0)