- Added custom error message when registering an external formatter via
custom.registerExternalFormatter
. - Improved unit tests and linter checks (added code formatting check)
- Added
custom.registerExternalFormatter
to support external formatters that send code snippets to a HTTP endpoint. - Added more flexibility to
custom.goToFileLineCharacter
to handle file paths that include row and column number separated with colon:
(e.g.readme.txt:42:7
)
- Bug Fix: VSCode folder to port hashing algorithm was not working correctly.
- Bug Fix: When executing command "Developer: Reload Window", the previous TCP port could not be reused because the old extension process was not kill. Now it saves the PID and kills it the next time the extension is activated.
- Bug Fix for
Access-Control-Allow-Origin: *
response header to allow calling VSCode REST Control from web browsers.
- Added
Access-Control-Allow-Origin: *
response header to allow calling VSCode REST Control from web browsers.
- Add support for processing URL encoded requests in the form
?command=value&args=urlencoded-of-json-representation-of-args
.
- Assign the remote control port based on a hash of the path to the workspace or open folders if such port is available.
- Added
custom.showInputBox
to show input box dialog to collect a input string from the user
- Added
custom.getExtensionInfo
to get specific information about an extension by passing the extension ID as parameter. Usecustom.listInstalledExtensions
to list all installed extensions.
-
Added
custom.workspaceFile
andcustom.workspaceFolders
to retrieve the workspace file (if any) and folders currently opened in the workspace (if any) -
Added
custom.getCommands
to retrieve the full list of commands registered within vscode
- Removed npm vulnerabilities
- Added some more documentation
- Refactored some code
- Removed option to configure the listening interface for security reasons. Now the extension can only listen on
localhost
interface. - Added
custom.showQuickPick
command to run quick pick dialogs in vscode via automation. - Command
custom.goToFileLineCharacter
can now take a relative path to the workspace. - Added
custom.showInformationMessage
,custom.showWarningMessage
andcustom.showErrorMessage
to show messages to the users in vscode. - Setup continuous integration on pull request and continuous delivery to deploy the extension to VSCode
- First release