修改版本信息和插件关键字
This commit is contained in:
parent
573db5c244
commit
d138a5684e
|
@ -4,6 +4,11 @@ All notable changes to the "vscode-java-debugger" extension will be documented i
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## 0.1.0 - 2023-04-11
|
||||||
|
### Changed
|
||||||
|
- 此版本使用基于[vscode-java-debug](https://github.com/microsoft/vscode-java-debug/) 0.46.0版本开发
|
||||||
|
|
||||||
|
|
||||||
## 0.46.0 - 2022-11-02
|
## 0.46.0 - 2022-11-02
|
||||||
### Added
|
### Added
|
||||||
- Add "Step Into Target" feature to allow stepping directly into a specific function call when paused on a line. See [#1192](https://github.com/microsoft/vscode-java-debug/issues/1192). Thanks to [Gayan Perera](https://github.com/gayanper) for contribution.
|
- Add "Step Into Target" feature to allow stepping directly into a specific function call when paused on a line. See [#1192](https://github.com/microsoft/vscode-java-debug/issues/1192). Thanks to [Gayan Perera](https://github.com/gayanper) for contribution.
|
||||||
|
|
12
package.json
12
package.json
|
@ -2,8 +2,8 @@
|
||||||
"name": "vscode-java-debug",
|
"name": "vscode-java-debug",
|
||||||
"displayName": "Debugger for Java",
|
"displayName": "Debugger for Java",
|
||||||
"description": "A lightweight Java debugger for Visual Studio Code",
|
"description": "A lightweight Java debugger for Visual Studio Code",
|
||||||
"version": "0.46.0",
|
"version": "0.1.0",
|
||||||
"publisher": "vscjava",
|
"publisher": "KylinIDETeam",
|
||||||
"preview": true,
|
"preview": true,
|
||||||
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
|
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
|
||||||
"icon": "logo.png",
|
"icon": "logo.png",
|
||||||
|
@ -15,10 +15,9 @@
|
||||||
"virtualWorkspaces": false
|
"virtualWorkspaces": false
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"java",
|
"KylinIdeDev",
|
||||||
"debug",
|
"KylinIdeDevJava",
|
||||||
"debugging",
|
"KylinIdeDevDebug"
|
||||||
"debugger"
|
|
||||||
],
|
],
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.65.0"
|
"vscode": "^1.65.0"
|
||||||
|
@ -32,6 +31,7 @@
|
||||||
"url": "https://github.com/Microsoft/vscode-java-debug/issues"
|
"url": "https://github.com/Microsoft/vscode-java-debug/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/Microsoft/vscode-java-debug/blob/master/README.md",
|
"homepage": "https://github.com/Microsoft/vscode-java-debug/blob/master/README.md",
|
||||||
|
"downloadUrl": "",
|
||||||
"categories": [
|
"categories": [
|
||||||
"Debuggers",
|
"Debuggers",
|
||||||
"Programming Languages",
|
"Programming Languages",
|
||||||
|
|
Loading…
Reference in New Issue