Merge pull request #1 from phonegap/master

Merge with main
This commit is contained in:
senthilmanick 2014-08-05 19:12:45 -04:00
commit c85248c88a
3 changed files with 25 additions and 24 deletions

View File

@ -10,28 +10,29 @@ Install and debug iPhone apps without using Xcode. Designed to work on unjailbro
## Usage ## Usage
Usage: ./ios-deploy [OPTION]... Usage: ./ios-deploy [OPTION]...
-d, --debug launch the app in GDB after installation -d, --debug launch the app in GDB after installation
-i, --id <device_id> the id of the device to connect to -i, --id <device_id> the id of the device to connect to
-c, --detect only detect if the device is connected -c, --detect only detect if the device is connected
-b, --bundle <bundle.app> the path to the app bundle to be installed -b, --bundle <bundle.app> the path to the app bundle to be installed
-a, --args <args> command line arguments to pass to the app when launching it -a, --args <args> command line arguments to pass to the app when launching it
-t, --timeout <timeout> number of seconds to wait for a device to be connected -t, --timeout <timeout> number of seconds to wait for a device to be connected
-u, --unbuffered don't buffer stdout -u, --unbuffered don't buffer stdout
-g, --gdbargs <args> extra arguments to pass to GDB when starting the debugger -g, --gdbargs <args> extra arguments to pass to GDB when starting the debugger
-x, --gdbexec <file> GDB commands script file -x, --gdbexec <file> GDB commands script file
-n, --nostart do not start the app when debugging -n, --nostart do not start the app when debugging
-I, --noninteractive start in non interactive mode (quit when app crashes or exits) -I, --noninteractive start in non interactive mode (quit when app crashes or exits)
-v, --verbose enable verbose output -L, --justlaunch just launch the app and exit lldb
-m, --noinstall directly start debugging without app install (-d not required) -v, --verbose enable verbose output
-p, --port <number> port used for device, default: 12345 -m, --noinstall directly start debugging without app install (-d not required)
-r, --uninstall uninstall the app before install (do not use with -m; app cache and data are cleared) -p, --port <number> port used for device, default: 12345
-1, --bundle_id <bundle id> specify bundle id for list and upload -r, --uninstall uninstall the app before install (do not use with -m; app cache and data are cleared)
-l, --list list files -1, --bundle_id <bundle id> specify bundle id for list and upload
-o, --upload <file> upload file -l, --list list files
-2, --to <target pathname> use together with upload file. specify target for upload -o, --upload <file> upload file
-V, --version print the executable version -2, --to <target pathname> use together with upload file. specify target for upload
-V, --version print the executable version
## Demo ## Demo
* The included demo.app represents the minimum required to get code running on iOS. * The included demo.app represents the minimum required to get code running on iOS.

View File

@ -16,7 +16,7 @@
#include <netinet/tcp.h> #include <netinet/tcp.h>
#include "MobileDevice.h" #include "MobileDevice.h"
#define APP_VERSION "1.0.10" #define APP_VERSION "1.1.0"
#define PREP_CMDS_PATH "/tmp/fruitstrap-lldb-prep-cmds-" #define PREP_CMDS_PATH "/tmp/fruitstrap-lldb-prep-cmds-"
#define LLDB_SHELL "lldb -s " PREP_CMDS_PATH #define LLDB_SHELL "lldb -s " PREP_CMDS_PATH

View File

@ -1,6 +1,6 @@
{ {
"name": "ios-deploy", "name": "ios-deploy",
"version": "1.0.9", "version": "1.1.0",
"description": "launch iOS apps iOS devices from the command line (Xcode 5)", "description": "launch iOS apps iOS devices from the command line (Xcode 5)",
"main": "ios-deploy", "main": "ios-deploy",
"scripts": { "scripts": {