diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 0000000..55e137e Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/.vs/vscode-json/FileContentIndex/dca38ca0-a909-440f-bd70-b9d32cb69852.vsidx b/.vs/vscode-json/FileContentIndex/dca38ca0-a909-440f-bd70-b9d32cb69852.vsidx new file mode 100644 index 0000000..ffe42e3 Binary files /dev/null and b/.vs/vscode-json/FileContentIndex/dca38ca0-a909-440f-bd70-b9d32cb69852.vsidx differ diff --git a/.vs/vscode-json/FileContentIndex/read.lock b/.vs/vscode-json/FileContentIndex/read.lock new file mode 100644 index 0000000..e69de29 diff --git a/CHANGELOG.md b/CHANGELOG.md index b90c5e3..67e0bbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,5 @@ # Json for Visual Studio Code -## Version 2.0.2 November 08, 2020 - -### New Features - -- / - -### Bug Fixes - -- Fix repository url and readme. - ---- - ## Version 2.0.1 September 05, 2020 ### New Features @@ -20,7 +8,7 @@ ### Bug Fixes -- Fix node.children is not iterable. +- Fix node.children is not iterable --- diff --git a/README.md b/README.md index cd1bd51..9403674 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Json for Visual Studio Code -[![VisualStudioMarketplace](https://img.shields.io/badge/VisualStudioMarketplace-v2.0.2-orange.svg)](https://marketplace.visualstudio.com/items?itemName=ZainChen.json) -[![Downloads](https://img.shields.io/badge/Downloads-305k%2B-brightgreen.svg)](https://marketplace.visualstudio.com/items?itemName=ZainChen.json) -[![UpdateTime](https://img.shields.io/badge/UpdateTime-2020%2F11%2F08%2013%3A04%3A30-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ZainChen.json) +[![VisualStudioMarketplace](https://img.shields.io/badge/VisualStudioMarketplace-v2.0.1-orange.svg)](https://marketplace.visualstudio.com/items?itemName=ZainChen.json) +[![Downloads](https://img.shields.io/badge/Downloads-257k%2B-brightgreen.svg)](https://marketplace.visualstudio.com/items?itemName=ZainChen.json) +[![UpdateTime](https://img.shields.io/badge/UpdateTime-2020%2F09%2F05%2000%3A15%3A30-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ZainChen.json) This extension adds json support for Visual Studio Code. @@ -9,7 +9,7 @@ This extension adds json support for Visual Studio Code. GitHub: https://github.com/ZainChen/vscode-json -

vscode-json v2.0.2

+

vscode-json v2.0.1

omi

vscode-json

diff --git a/json-2.0.2.vsix b/json-2.0.2.vsix deleted file mode 100644 index 9371fc9..0000000 Binary files a/json-2.0.2.vsix and /dev/null differ diff --git a/package.json b/package.json index 73ad851..484b5eb 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "json", "displayName": "json", "description": "Json for Visual Studio Code", - "version": "2.0.2", + "version": "2.0.1", "publisher": "ZainChen", "homepage": "https://github.com/ZainChen/vscode-json#readme", "bugs": { @@ -10,7 +10,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/ZainChen/vscode-json" + "url": "git+https://github.com/ZainChen/vscode-json.git" }, "license": "MIT", "author": "ZainChen <2384439266@qq.com>", diff --git a/resources/.vscode/launch.json b/resources/.vscode/launch.json new file mode 100644 index 0000000..bf1da76 --- /dev/null +++ b/resources/.vscode/launch.json @@ -0,0 +1,53 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + adda + abcd + add + { + "type": "R-Debugger", + "name": "Launch R-Workspace", + "request": "launch", + "debugMode": "workspace", + "workingDirectory": "${workspaceFolder}" + }, + { + "type": "R-Debugger", + "name": "Debug R-File", + "request": "launch", + "debugMode": "file", + "workingDirectory": "${workspaceFolder}", + "file": "${file}" + }, + { + "type": "R-Debugger", + "name": "Debug R-Function", + "request": "launch", + "debugMode": "function", + "workingDirectory": "${workspaceFolder}", + "file": "${file}", + "mainFunction": "main", + "allowGlobalDebugging": false + }, + { + "type": "R-Debugger", + "name": "Debug R-Package", + "request": "launch", + "debugMode": "workspace", + "workingDirectory": "${workspaceFolder}", + "includePackageScopes": true, + "loadPackages": [ + "." + ] + }, + { + "type": "R-Debugger", + "request": "attach", + "name": "Attach to R process", + "splitOverwrittenOutput": true + } + ] +} \ No newline at end of file