Skip to content

Commit

Permalink
Merge branch 'master' into reveal-tree-view
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaliy-guliy committed Oct 26, 2018
2 parents abf59d5 + 3a13ada commit af7c178
Show file tree
Hide file tree
Showing 57 changed files with 390 additions and 357 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
## v0.3.16
- [plug-in] added `DocumentLinkProvider` Plug-in API
- [plug-in] Terminal.sendText API adds a new line to the text being sent to the terminal if `addNewLine` parameter wasn't specified
- Reverted [cpp] Add debugging for C/C++ programs. This feature will come back in its own cpp-specific repo
- [core] Add methods to unregister menus, commands and keybindings
- [terminal] Add 'open in terminal' to navigator
- [markers] Added ability to remove markers
- [windows] Implemented drives selector for the file dialog
- [callhierarchy][typescript] adapt to hierarchical document symbols
- [output] Add button to clear output view
- [debug] decouple debug model from UI + clean up


## v0.3.15
Expand Down
6 changes: 3 additions & 3 deletions dev-packages/application-manager/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theia/application-manager",
"version": "0.3.15",
"version": "0.3.16",
"description": "Theia application manager API.",
"publishConfig": {
"access": "public"
Expand Down Expand Up @@ -29,7 +29,7 @@
"docs": "theiaext docs"
},
"dependencies": {
"@theia/application-package": "^0.3.15",
"@theia/application-package": "^0.3.16",
"@types/fs-extra": "^4.0.2",
"bunyan": "^1.8.10",
"circular-dependency-plugin": "^5.0.0",
Expand All @@ -51,7 +51,7 @@
"worker-loader": "^1.1.1"
},
"devDependencies": {
"@theia/ext-scripts": "^0.3.15"
"@theia/ext-scripts": "^0.3.16"
},
"nyc": {
"extends": "../../configs/nyc.json"
Expand Down
4 changes: 2 additions & 2 deletions dev-packages/application-package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theia/application-package",
"version": "0.3.15",
"version": "0.3.16",
"description": "Theia application package API.",
"publishConfig": {
"access": "public"
Expand Down Expand Up @@ -41,7 +41,7 @@
"write-json-file": "^2.2.0"
},
"devDependencies": {
"@theia/ext-scripts": "^0.3.15"
"@theia/ext-scripts": "^0.3.16"
},
"nyc": {
"extends": "../../configs/nyc.json"
Expand Down
4 changes: 2 additions & 2 deletions dev-packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theia/cli",
"version": "0.3.15",
"version": "0.3.16",
"description": "Theia CLI.",
"publishConfig": {
"access": "public"
Expand Down Expand Up @@ -31,6 +31,6 @@
"docs": "echo 'skip'"
},
"dependencies": {
"@theia/application-manager": "^0.3.15"
"@theia/application-manager": "^0.3.16"
}
}
2 changes: 1 addition & 1 deletion dev-packages/ext-scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@theia/ext-scripts",
"version": "0.3.15",
"version": "0.3.16",
"description": "NPM scripts for Theia packages.",
"files": [
"theiaext"
Expand Down
84 changes: 42 additions & 42 deletions examples/browser/package.json
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
{
"private": true,
"name": "@theia/example-browser",
"version": "0.3.15",
"version": "0.3.16",
"dependencies": {
"@theia/callhierarchy": "^0.3.15",
"@theia/console": "^0.3.15",
"@theia/core": "^0.3.15",
"@theia/cpp": "^0.3.15",
"@theia/debug": "^0.3.15",
"@theia/debug-nodejs": "^0.3.15",
"@theia/editor": "^0.3.15",
"@theia/editorconfig": "^0.3.15",
"@theia/extension-manager": "^0.3.15",
"@theia/file-search": "^0.3.15",
"@theia/filesystem": "^0.3.15",
"@theia/git": "^0.3.15",
"@theia/java": "^0.3.15",
"@theia/json": "^0.3.15",
"@theia/keymaps": "^0.3.15",
"@theia/languages": "^0.3.15",
"@theia/markers": "^0.3.15",
"@theia/merge-conflicts": "^0.3.15",
"@theia/messages": "^0.3.15",
"@theia/metrics": "^0.3.15",
"@theia/mini-browser": "^0.3.15",
"@theia/monaco": "^0.3.15",
"@theia/navigator": "^0.3.15",
"@theia/outline-view": "^0.3.15",
"@theia/output": "^0.3.15",
"@theia/plugin-ext": "^0.3.15",
"@theia/plugin-ext-vscode": "^0.3.15",
"@theia/preferences": "^0.3.15",
"@theia/preview": "^0.3.15",
"@theia/process": "^0.3.15",
"@theia/python": "^0.3.15",
"@theia/search-in-workspace": "^0.3.15",
"@theia/task": "^0.3.15",
"@theia/terminal": "^0.3.15",
"@theia/textmate-grammars": "^0.3.15",
"@theia/tslint": "^0.3.15",
"@theia/typescript": "^0.3.15",
"@theia/userstorage": "^0.3.15",
"@theia/variable-resolver": "^0.3.15",
"@theia/workspace": "^0.3.15"
"@theia/callhierarchy": "^0.3.16",
"@theia/console": "^0.3.16",
"@theia/core": "^0.3.16",
"@theia/cpp": "^0.3.16",
"@theia/debug": "^0.3.16",
"@theia/debug-nodejs": "^0.3.16",
"@theia/editor": "^0.3.16",
"@theia/editorconfig": "^0.3.16",
"@theia/extension-manager": "^0.3.16",
"@theia/file-search": "^0.3.16",
"@theia/filesystem": "^0.3.16",
"@theia/git": "^0.3.16",
"@theia/java": "^0.3.16",
"@theia/json": "^0.3.16",
"@theia/keymaps": "^0.3.16",
"@theia/languages": "^0.3.16",
"@theia/markers": "^0.3.16",
"@theia/merge-conflicts": "^0.3.16",
"@theia/messages": "^0.3.16",
"@theia/metrics": "^0.3.16",
"@theia/mini-browser": "^0.3.16",
"@theia/monaco": "^0.3.16",
"@theia/navigator": "^0.3.16",
"@theia/outline-view": "^0.3.16",
"@theia/output": "^0.3.16",
"@theia/plugin-ext": "^0.3.16",
"@theia/plugin-ext-vscode": "^0.3.16",
"@theia/preferences": "^0.3.16",
"@theia/preview": "^0.3.16",
"@theia/process": "^0.3.16",
"@theia/python": "^0.3.16",
"@theia/search-in-workspace": "^0.3.16",
"@theia/task": "^0.3.16",
"@theia/terminal": "^0.3.16",
"@theia/textmate-grammars": "^0.3.16",
"@theia/tslint": "^0.3.16",
"@theia/typescript": "^0.3.16",
"@theia/userstorage": "^0.3.16",
"@theia/variable-resolver": "^0.3.16",
"@theia/workspace": "^0.3.16"
},
"scripts": {
"prepare": "yarn run clean && yarn build",
Expand All @@ -60,6 +60,6 @@
"coverage": "yarn coverage:compile && yarn test && yarn coverage:remap && yarn coverage:report:lcov && yarn coverage:report:html"
},
"devDependencies": {
"@theia/cli": "^0.3.15"
"@theia/cli": "^0.3.16"
}
}
84 changes: 42 additions & 42 deletions examples/electron/package.json
Original file line number Diff line number Diff line change
@@ -1,51 +1,51 @@
{
"private": true,
"name": "@theia/example-electron",
"version": "0.3.15",
"version": "0.3.16",
"theia": {
"target": "electron"
},
"dependencies": {
"@theia/callhierarchy": "^0.3.15",
"@theia/console": "^0.3.15",
"@theia/core": "^0.3.15",
"@theia/cpp": "^0.3.15",
"@theia/debug": "^0.3.15",
"@theia/debug-nodejs": "^0.3.15",
"@theia/editor": "^0.3.15",
"@theia/editorconfig": "^0.3.15",
"@theia/extension-manager": "^0.3.15",
"@theia/file-search": "^0.3.15",
"@theia/filesystem": "^0.3.15",
"@theia/git": "^0.3.15",
"@theia/java": "^0.3.15",
"@theia/json": "^0.3.15",
"@theia/keymaps": "^0.3.15",
"@theia/languages": "^0.3.15",
"@theia/markers": "^0.3.15",
"@theia/merge-conflicts": "^0.3.15",
"@theia/messages": "^0.3.15",
"@theia/metrics": "^0.3.15",
"@theia/mini-browser": "^0.3.15",
"@theia/monaco": "^0.3.15",
"@theia/navigator": "^0.3.15",
"@theia/outline-view": "^0.3.15",
"@theia/output": "^0.3.15",
"@theia/plugin-ext": "^0.3.15",
"@theia/plugin-ext-vscode": "^0.3.15",
"@theia/preferences": "^0.3.15",
"@theia/preview": "^0.3.15",
"@theia/process": "^0.3.15",
"@theia/python": "^0.3.15",
"@theia/search-in-workspace": "^0.3.15",
"@theia/task": "^0.3.15",
"@theia/terminal": "^0.3.15",
"@theia/textmate-grammars": "^0.3.15",
"@theia/tslint": "^0.3.15",
"@theia/typescript": "^0.3.15",
"@theia/userstorage": "^0.3.15",
"@theia/variable-resolver": "^0.3.15",
"@theia/workspace": "^0.3.15"
"@theia/callhierarchy": "^0.3.16",
"@theia/console": "^0.3.16",
"@theia/core": "^0.3.16",
"@theia/cpp": "^0.3.16",
"@theia/debug": "^0.3.16",
"@theia/debug-nodejs": "^0.3.16",
"@theia/editor": "^0.3.16",
"@theia/editorconfig": "^0.3.16",
"@theia/extension-manager": "^0.3.16",
"@theia/file-search": "^0.3.16",
"@theia/filesystem": "^0.3.16",
"@theia/git": "^0.3.16",
"@theia/java": "^0.3.16",
"@theia/json": "^0.3.16",
"@theia/keymaps": "^0.3.16",
"@theia/languages": "^0.3.16",
"@theia/markers": "^0.3.16",
"@theia/merge-conflicts": "^0.3.16",
"@theia/messages": "^0.3.16",
"@theia/metrics": "^0.3.16",
"@theia/mini-browser": "^0.3.16",
"@theia/monaco": "^0.3.16",
"@theia/navigator": "^0.3.16",
"@theia/outline-view": "^0.3.16",
"@theia/output": "^0.3.16",
"@theia/plugin-ext": "^0.3.16",
"@theia/plugin-ext-vscode": "^0.3.16",
"@theia/preferences": "^0.3.16",
"@theia/preview": "^0.3.16",
"@theia/process": "^0.3.16",
"@theia/python": "^0.3.16",
"@theia/search-in-workspace": "^0.3.16",
"@theia/task": "^0.3.16",
"@theia/terminal": "^0.3.16",
"@theia/textmate-grammars": "^0.3.16",
"@theia/tslint": "^0.3.16",
"@theia/typescript": "^0.3.16",
"@theia/userstorage": "^0.3.16",
"@theia/variable-resolver": "^0.3.16",
"@theia/workspace": "^0.3.16"
},
"scripts": {
"prepare": "yarn run clean && yarn build",
Expand All @@ -58,6 +58,6 @@
"test:ui": "wdio wdio.conf.js"
},
"devDependencies": {
"@theia/cli": "^0.3.15"
"@theia/cli": "^0.3.16"
}
}
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"lerna": "2.2.0",
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.3.15",
"version": "0.3.16",
"command": {
"run": {
"stream": true
Expand Down
6 changes: 3 additions & 3 deletions packages/bunyan/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@theia/bunyan",
"version": "0.3.15",
"version": "0.3.16",
"description": "Theia - bunyan Logger Extension",
"dependencies": {
"@theia/core": "^0.3.15",
"@theia/core": "^0.3.16",
"@types/bunyan": "^1.8.0",
"bunyan": "^1.8.10"
},
Expand Down Expand Up @@ -40,7 +40,7 @@
"docs": "theiaext docs"
},
"devDependencies": {
"@theia/ext-scripts": "^0.3.15"
"@theia/ext-scripts": "^0.3.16"
},
"nyc": {
"extends": "../../configs/nyc.json"
Expand Down
12 changes: 6 additions & 6 deletions packages/callhierarchy/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@theia/callhierarchy",
"version": "0.3.15",
"version": "0.3.16",
"description": "Theia - Call Hierarchy Extension",
"dependencies": {
"@theia/core": "^0.3.15",
"@theia/editor": "^0.3.15",
"@theia/languages": "^0.3.15",
"@theia/monaco": "^0.3.15",
"@theia/core": "^0.3.16",
"@theia/editor": "^0.3.16",
"@theia/languages": "^0.3.16",
"@theia/monaco": "^0.3.16",
"ts-md5": "^1.2.2"
},
"publishConfig": {
Expand Down Expand Up @@ -42,7 +42,7 @@
"docs": "theiaext docs"
},
"devDependencies": {
"@theia/ext-scripts": "^0.3.15"
"@theia/ext-scripts": "^0.3.16"
},
"nyc": {
"extends": "../../configs/nyc.json"
Expand Down
6 changes: 3 additions & 3 deletions packages/console/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@theia/console",
"version": "0.3.15",
"version": "0.3.16",
"description": "Theia - Console Extension",
"dependencies": {
"@theia/monaco": "^0.3.15",
"@theia/monaco": "^0.3.16",
"anser": "^1.4.7"
},
"publishConfig": {
Expand Down Expand Up @@ -39,7 +39,7 @@
"docs": "theiaext docs"
},
"devDependencies": {
"@theia/ext-scripts": "^0.3.15"
"@theia/ext-scripts": "^0.3.16"
},
"nyc": {
"extends": "../../configs/nyc.json"
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@theia/core",
"version": "0.3.15",
"version": "0.3.16",
"description": "Theia is a cloud & desktop IDE framework implemented in TypeScript.",
"main": "lib/common/index.js",
"typings": "lib/common/index.d.ts",
"dependencies": {
"@phosphor/widgets": "^1.5.0",
"@theia/application-package": "^0.3.15",
"@theia/application-package": "^0.3.16",
"@types/body-parser": "^1.16.4",
"@types/bunyan": "^1.8.0",
"@types/express": "^4.16.0",
Expand Down Expand Up @@ -81,7 +81,7 @@
"docs": "theiaext docs"
},
"devDependencies": {
"@theia/ext-scripts": "^0.3.15"
"@theia/ext-scripts": "^0.3.16"
},
"nyc": {
"extends": "../../configs/nyc.json"
Expand Down
Loading

0 comments on commit af7c178

Please sign in to comment.