diff --git a/CHANGELOG.md b/CHANGELOG.md index f04237f..69c64cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +### version 0.8.0 +* Try to extract Android manifest directly from APK +* Added `manifestFile` launch configuration property +* Allow `pm install` arguments to be customised as a launch configuration property +* Document `launchActivity` launch configuration property +* Fix critical security advisory https://www.npmjs.com/advisories/1118 + ### version 0.7.1 * Added the [Buy Me A Coffee](https://www.buymeacoffee.com/adelphes) link to the README diff --git a/package-lock.json b/package-lock.json index a20f787..0a566d8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "android-dev-ext", - "version": "0.7.1", + "version": "0.8.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 99c59da..1d74e3d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "android-dev-ext", "displayName": "Android", "description": "Android debugging support for VS Code", - "version": "0.7.1", + "version": "0.8.0", "publisher": "adelphes", "preview": true, "license": "MIT", @@ -96,8 +96,10 @@ }, "pmInstallArgs": { "type": "array", - "description":"APK install arguments passed to the Android package manager. Run 'adb shell pm' to show valid arguments. Default: [\"-r\"]", - "default": ["-r"] + "description": "APK install arguments passed to the Android package manager. Run 'adb shell pm' to show valid arguments. Default: [\"-r\"]", + "default": [ + "-r" + ] }, "staleBuild": { "type": "string",