diff --git a/vscode/.vscode/launch.json b/vscode/.vscode/launch.json deleted file mode 100644 index 0ba07a7ca2..0000000000 --- a/vscode/.vscode/launch.json +++ /dev/null @@ -1,35 +0,0 @@ -// A launch configuration that compiles the extension and then opens it inside a new window -// 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": [ - { - "name": "Run Extension", - "type": "extensionHost", - "request": "launch", - "runtimeExecutable": "${execPath}", - "args": [ - "--extensionDevelopmentPath=${workspaceFolder}" - ], - "outFiles": [ - "${workspaceFolder}/dist/**/*.js" - ] - }, - { - "name": "Extension Tests", - "type": "extensionHost", - "request": "launch", - "runtimeExecutable": "${execPath}", - "args": [ - "--extensionDevelopmentPath=${workspaceFolder}", - "--extensionTestsPath=${workspaceFolder}/out/test/suite/index" - ], - "outFiles": [ - "${workspaceFolder}/out/test/**/*.js" - ], - "preLaunchTask": "npm: watch" - } - ] -} diff --git a/vscode/.vscode/tasks.json b/vscode/.vscode/tasks.json deleted file mode 100644 index 3b17e53b62..0000000000 --- a/vscode/.vscode/tasks.json +++ /dev/null @@ -1,20 +0,0 @@ -// See https://go.microsoft.com/fwlink/?LinkId=733558 -// for the documentation about the tasks.json format -{ - "version": "2.0.0", - "tasks": [ - { - "type": "npm", - "script": "watch", - "problemMatcher": "$tsc-watch", - "isBackground": true, - "presentation": { - "reveal": "never" - }, - "group": { - "kind": "build", - "isDefault": true - } - } - ] -} diff --git a/vscode/CHANGELOG.md b/vscode/CHANGELOG.md deleted file mode 100644 index 14e49f2bbf..0000000000 --- a/vscode/CHANGELOG.md +++ /dev/null @@ -1,9 +0,0 @@ -# Change Log - -All notable changes to the "saros" extension will be documented in this file. - -Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. - -## [Unreleased] - -- Initial release \ No newline at end of file diff --git a/vscode/README.md b/vscode/README.md deleted file mode 100644 index 8e82b9536c..0000000000 --- a/vscode/README.md +++ /dev/null @@ -1,29 +0,0 @@ -# saros - -This is the Saros implementation for Visual Studio Code. - -## Features - -**TBD** - -## Requirements - -For now build the Saros Language Protocol Server prior building the extension with: - -> `./gradlew sarosLsp` - -Then either copy the resulting jar from `../build/distribute` to `./out` or create a symlink with `mklink /H saros.lsp.jar "../../build/distribution/lsp/saros.lsp.jar" ` (Windows) . - -## Extension Settings - -**TBD** - -## Known Issues - -**TBD** - -## Release Notes - -### 0.0.1 - -**TBD** \ No newline at end of file diff --git a/vscode/media/btn/addaccount.png b/vscode/media/btn/addaccount.png deleted file mode 100644 index 6f9a198bea..0000000000 Binary files a/vscode/media/btn/addaccount.png and /dev/null differ diff --git a/vscode/media/btn/changeaccount.png b/vscode/media/btn/changeaccount.png deleted file mode 100644 index bfcb0249af..0000000000 Binary files a/vscode/media/btn/changeaccount.png and /dev/null differ diff --git a/vscode/media/btn/deleteaccount.png b/vscode/media/btn/deleteaccount.png deleted file mode 100644 index 1a7eb3e270..0000000000 Binary files a/vscode/media/btn/deleteaccount.png and /dev/null differ diff --git a/vscode/media/dlcl16/xmpp_connect_tsk.png b/vscode/media/dlcl16/xmpp_connect_tsk.png deleted file mode 100644 index 2ed6f83105..0000000000 Binary files a/vscode/media/dlcl16/xmpp_connect_tsk.png and /dev/null differ diff --git a/vscode/media/dlcl16/xmpp_disconnect_tsk.png b/vscode/media/dlcl16/xmpp_disconnect_tsk.png deleted file mode 100644 index faaebbaad0..0000000000 Binary files a/vscode/media/dlcl16/xmpp_disconnect_tsk.png and /dev/null differ diff --git a/vscode/media/elcl16/session_add_contacts_tsk.png b/vscode/media/elcl16/session_add_contacts_tsk.png deleted file mode 100644 index a07ce320a9..0000000000 Binary files a/vscode/media/elcl16/session_add_contacts_tsk.png and /dev/null differ diff --git a/vscode/media/obj16/contact_obj.png b/vscode/media/obj16/contact_obj.png deleted file mode 100644 index 9a0f32d730..0000000000 Binary files a/vscode/media/obj16/contact_obj.png and /dev/null differ diff --git a/vscode/media/obj16/contact_offline_obj.png b/vscode/media/obj16/contact_offline_obj.png deleted file mode 100644 index 80e5545de8..0000000000 Binary files a/vscode/media/obj16/contact_offline_obj.png and /dev/null differ diff --git a/vscode/media/obj16/contact_saros_obj.png b/vscode/media/obj16/contact_saros_obj.png deleted file mode 100644 index 28088c4cf9..0000000000 Binary files a/vscode/media/obj16/contact_saros_obj.png and /dev/null differ diff --git a/vscode/media/saros-logo.svg b/vscode/media/saros-logo.svg deleted file mode 100644 index 9753c6c3e9..0000000000 --- a/vscode/media/saros-logo.svg +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/vscode/vsc-extension-quickstart.md b/vscode/vsc-extension-quickstart.md deleted file mode 100644 index b510bff34d..0000000000 --- a/vscode/vsc-extension-quickstart.md +++ /dev/null @@ -1,42 +0,0 @@ -# Welcome to your VS Code Extension - -## What's in the folder - -* This folder contains all of the files necessary for your extension. -* `package.json` - this is the manifest file in which you declare your extension and command. - * The sample plugin registers a command and defines its title and command name. With this information VS Code can show the command in the command palette. It doesn’t yet need to load the plugin. -* `src/extension.ts` - this is the main file where you will provide the implementation of your command. - * The file exports one function, `activate`, which is called the very first time your extension is activated (in this case by executing the command). Inside the `activate` function we call `registerCommand`. - * We pass the function containing the implementation of the command as the second parameter to `registerCommand`. - -## Get up and running straight away - -* Press `F5` to open a new window with your extension loaded. -* Run your command from the command palette by pressing (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac) and typing `Hello World`. -* Set breakpoints in your code inside `src/extension.ts` to debug your extension. -* Find output from your extension in the debug console. - -## Make changes - -* You can relaunch the extension from the debug toolbar after changing code in `src/extension.ts`. -* You can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes. - - -## Explore the API - -* You can open the full set of our API when you open the file `node_modules/@types/vscode/index.d.ts`. - -## Run tests - -* Open the debug viewlet (`Ctrl+Shift+D` or `Cmd+Shift+D` on Mac) and from the launch configuration dropdown pick `Extension Tests`. -* Press `F5` to run the tests in a new window with your extension loaded. -* See the output of the test result in the debug console. -* Make changes to `src/test/suite/extension.test.ts` or create new test files inside the `test/suite` folder. - * The provided test runner will only consider files matching the name pattern `**.test.ts`. - * You can create folders inside the `test` folder to structure your tests any way you want. - -## Go further - - * Reduce the extension size and improve the startup time by [bundling your extension](https://code.visualstudio.com/api/working-with-extensions/bundling-extension). - * [Publish your extension](https://code.visualstudio.com/api/working-with-extensions/publishing-extension) on the VSCode extension marketplace. - * Automate builds by setting up [Continuous Integration](https://code.visualstudio.com/api/working-with-extensions/continuous-integration).