Skip to content

Commit

Permalink
Devtools: Prepared v0.4.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dhuebner committed Dec 22, 2022
1 parent 9db4b3e commit a35e98a
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 28 deletions.
2 changes: 1 addition & 1 deletion examples/calico-colors/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"watch": "tsc -w -p ./"
},
"dependencies": {
"vscode-messenger": "^0.4.3",
"vscode-messenger": "^0.4.4",
"vscode-messenger-webview": "^0.4.3"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions packages/vscode-messenger-devtools/.vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ src/**

# Ignore all webview-ui files except the build directory
webview-ui/src/**
webview-ui/css/**
webview-ui/public/**
webview-ui/scripts/**
webview-ui/index.html
Expand All @@ -24,6 +25,8 @@ webview-ui/node_modules/**
# Ignore Misc
.yarnrc
vsc-extension-quickstart.md
vscode-messenger-devtools-*
media
**/.gitignore
**/tsconfig.json
**/vite.config.ts
Expand Down
6 changes: 6 additions & 0 deletions packages/vscode-messenger-devtools/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Change Log of `vscode-messenger-devtools`

## v0.4.4 (Dec. 2022)
* Added timestamp information
* Collapsible charts panel
* Estimated response time
2 changes: 1 addition & 1 deletion packages/vscode-messenger-devtools/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# VS Code Messenger Developer Tool

Shows messages sended between extension and registered extension webviews. Provides information about installed extensions that uses
vscode-messenger library.
[vscode-messenger](https://github.com/TypeFox/vscode-messenger) library.

#### Open Devtool View
Open _Command Palette..._ (Shift + Cmd + P)
Expand Down
Binary file added packages/vscode-messenger-devtools/logo-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 9 additions & 9 deletions packages/vscode-messenger-devtools/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 3 additions & 11 deletions packages/vscode-messenger-devtools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-messenger-devtools",
"version": "0.4.3",
"version": "0.4.4",
"publisher": "TypeFox",
"displayName": "VS Code Messenger Devtools",
"description": "Message communication visualization for VS Code.",
Expand All @@ -24,16 +24,8 @@
"main": "./lib/devtool-ext",
"types": "./lib/devtool-ext.d.ts",
"license": "MIT",
"icon": "logo-icon.png",
"contributes": {
"views": {
"vscode-messenger-devtools_viewContainer": [
{
"type": "webview",
"id": "vscode-messenger-devtools.messengerView",
"name": "Messenger"
}
]
},
"commands": [
{
"category": "Developer",
Expand All @@ -55,7 +47,7 @@
},
"dependencies": {
"@vscode/webview-ui-toolkit": "~1.0.0",
"vscode-messenger": "^0.4.3"
"vscode-messenger": "^0.4.4"
},
"devDependencies": {
"@types/vscode": "^1.70.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const columnDefs: ColDef[] = [
if (event.type === 'response' && typeof event.timeAfterRequest === 'number') {
return `${event.size} (${event.timeAfterRequest}ms)`;
}
return event.size;
return String(event.size);

}
},
Expand All @@ -88,7 +88,7 @@ const columnDefs: ColDef[] = [
const prependZero = (n: number) => ('0' + n).slice(-2);
return `${prependZero(date.getHours())}:${prependZero(date.getMinutes())}:${prependZero(date.getSeconds())}-${('00' + date.getMilliseconds()).slice(-3)}`;
}
return time;
return String(time);
}
},
{ field: 'error' },
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-messenger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vscode-messenger",
"version": "0.4.3",
"version": "0.4.4",
"description": "VS Code Messenger: extension integration",
"keywords": [
"vscode",
Expand Down

0 comments on commit a35e98a

Please sign in to comment.