ios-deploy
Advanced tools
Comparing version 1.9.2 to 1.9.3
{ | ||
"name": "ios-deploy", | ||
"version": "1.9.2", | ||
"version": "1.9.3", | ||
"os": [ | ||
@@ -9,16 +9,21 @@ "darwin" | ||
"main": "ios-deploy", | ||
"scripts": { | ||
}, | ||
"bin": "./build/Release/ios-deploy", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/phonegap/ios-deploy" | ||
"url": "https://github.com/ios-control/ios-deploy" | ||
}, | ||
"devDependencies": { | ||
"jshint": "2.5.8" | ||
"eslint": "~4.19.1", | ||
"eslint-config-semistandard": "^12.0.1", | ||
"eslint-config-standard": "^11.0.0", | ||
"eslint-plugin-import": "^2.12.0", | ||
"eslint-plugin-node": "^6.0.1", | ||
"eslint-plugin-promise": "^3.8.0", | ||
"eslint-plugin-standard": "^3.1.0" | ||
}, | ||
"scripts": { | ||
"preinstall": "./src/scripts/check_reqs.js && xcodebuild", | ||
"test": "npm run pycompile && npm run jshint && xcodebuild -target ios-deploy-lib && xcodebuild test -scheme ios-deploy-tests", | ||
"jshint": "node node_modules/jshint/bin/jshint src/scripts/*.js", | ||
"build-test": "npm run pycompile && xcodebuild -target ios-deploy-lib && xcodebuild test -scheme ios-deploy-tests", | ||
"eslint": "eslint src/scripts/*.js", | ||
"test": "npm run eslint && npm run build-test", | ||
"pycompile": "python -m py_compile src/scripts/*.py" | ||
@@ -31,6 +36,6 @@ }, | ||
"bugs": { | ||
"url": "https://github.com/phonegap/ios-deploy/issues" | ||
}, | ||
"url": "https://github.com/phonegap/ios-deploy/issues" | ||
}, | ||
"author": "Greg Hughes", | ||
"license": "GPLv3" | ||
} |
@@ -16,12 +16,6 @@ [![Build Status](https://travis-ci.org/phonegap/ios-deploy.svg?branch=master)](https://travis-ci.org/phonegap/ios-deploy) | ||
See our [milestones](https://github.com/phonegap/ios-deploy/milestones). | ||
Significant changes: | ||
1.8.0 will use an Xcode project instead of a Makefile (to prepare for 2.0.0) (1.x branch) | ||
2.0.0 will break out the commands into their own files, and create ios-deploy-lib for node.js use (master branch) | ||
## Development | ||
The legacy `1.x` version is under the `1.x` branch. Bug fixes for the `1.x` series will occur under there. | ||
The 'master' branch now contains the `2.x` series, and is the development branch. | ||
The 1.x branch has been archived (renamed for now), all development is to be on the master branch for simplicity, since the planned 2.x development (break out commands into their own files) has been abandoned for now. | ||
@@ -78,3 +72,2 @@ ## Installation | ||
-n, --nostart do not start the app when debugging | ||
-N, --nolldb start debugserver only. do not run lldb | ||
-I, --noninteractive start in non interactive mode (quit when app crashes or exits) | ||
@@ -116,5 +109,2 @@ -L, --justlaunch just launch the app and exit lldb | ||
// Debug your pre-installed app with an external debugger (e.g. lldb or IDA Pro) | ||
ios-deploy --noinstall --nolldb --port 6666 --bundle my.app | ||
// Upload a file to your app's Documents folder | ||
@@ -121,0 +111,0 @@ ios-deploy --bundle_id 'bundle.id' --upload test.txt --to Documents/test.txt |
@@ -7,3 +7,3 @@ #!/usr/bin/env node | ||
var XCODEBUILD_MIN_VERSION = '7.0'; | ||
var XCODEBUILD_MIN_VERSION = 7.0; | ||
var XCODEBUILD_NOT_FOUND_MESSAGE = util.format('Please install Xcode version %s or greater from the Mac App Store.', XCODEBUILD_MIN_VERSION); | ||
@@ -32,3 +32,3 @@ var TOOL = 'xcodebuild'; | ||
if (os.release() >= '15.0.0' && ver < '7.0') { | ||
if (os.release() >= '15.0.0' && ver < XCODEBUILD_MIN_VERSION) { | ||
console.log(util.format('You need at least Xcode 7.0 when you are on OS X 10.11 El Capitan (you have version %s)', ver)); | ||
@@ -39,5 +39,5 @@ process.exit(1); | ||
if (ver < XCODEBUILD_MIN_VERSION) { | ||
console.log(util.format('%s : %s. (you have version %s)', TOOL, XCODEBUILD_NOT_FOUND_MESSAGE, ver)); | ||
console.log(util.format('%s : %s. (you have version %s)', TOOL, XCODEBUILD_NOT_FOUND_MESSAGE, ver)); | ||
} | ||
if (os.release() >= '15.0.0') { // print the El Capitan warning | ||
@@ -49,6 +49,6 @@ console.log('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'); | ||
console.log('!!!! WARNING: link:'); | ||
console.log('!!!! WARNING: https://github.com/phonegap/ios-deploy#os-x-1011-el-capitan'); | ||
console.log('!!!! WARNING: https://github.com/phonegap/ios-deploy#os-x-1011-el-capitan-or-greater'); | ||
console.log('!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!'); | ||
} | ||
} | ||
@@ -55,0 +55,0 @@ process.exit(code); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
208983
31
7
41
143