-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare for first release to OpenVSX
- tentative rename of public-facing name of the extension to better reflect its nature - change public-facing mentions of "vscode" to the canonical "VSCode" - update extension's package.json: add important missing fields, adjust some things like "publisher", that needs to align with the configuration for the CDT Cloud OpenVSX publisher user, "eclipse-cdt" (https://www.open-vsx.org/namespace/eclipse-cdt). - add an icon for the registry - Keep developer-specific information from repo's root README.md and move generic information, useful to users of the extension, to extension's README (which becomes the information page for the extension when published or installed). - Add an icon for the extension. Though probably not the best ever, re-used the one from repo "theia-trace-extension" Closes #69 Signed-off-by: Marc Dumais <[email protected]>
- Loading branch information
1 parent
77ecfef
commit e5fa419
Showing
10 changed files
with
83 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": true | ||
"source.fixAll.eslint": "explicit" | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Trace Viewer for VSCode | ||
|
||
This extension adds trace viewing capabilities to VSCode and compatible tools. | ||
|
||
For information about building this extension from sources, debugging, etc, please see [Developing.md](https://github.com/eclipse-cdt-cloud/vscode-trace-extension/tree/master/doc/Developing.md) | ||
|
||
## Using the extension | ||
|
||
Open the `Trace Viewer` view (`View` -> `Open view...`). | ||
|
||
Then find the trace folder in the file explorer and open it using `Open with Trace Viewer` from the context menu: | ||
|
||
![open-trace][open-trace] | ||
|
||
Two tabs will be visible: `Traces` and `Views`. The `Traces` tab will show all available traces on the trace server. | ||
|
||
The `Views` tab shows all the available views for the selected trace. Click on a view to open the view under the timeline. | ||
|
||
![open-output][open-output] | ||
|
||
[open-output]: https://raw.githubusercontent.com/eclipse-cdt-cloud/vscode-trace-extension/master/doc/images/vscode-trace-extension-001.png | ||
[open-trace]: https://raw.githubusercontent.com/eclipse-cdt-cloud/vscode-trace-extension/master/doc/images/vscode-open-with-trace-viewer-001.png | ||
|
||
## Obtain the Trace Server (Eclipse Trace Compass) | ||
|
||
In order to open and view traces, you need a trace server running on the same machine as the trace extension. You can use the Eclipse Trace Compass server: | ||
|
||
Dwonload the Latest "incubator" build: [Linux x86_64](https://download.eclipse.org/tracecompass.incubator/trace-server/rcp/trace-compass-server-latest-linux.gtk.x86_64.tar.gz) () | ||
|
||
Extract it: | ||
> tar -xf trace-compass-server-latest-linux.gtk.x86_64.tar.gz | ||
and start it: | ||
> ./trace-compass-server-latest-linux.gtk.x86_64/tracecompass-server", | ||
Other architectures / Operating systems: [link](https://download.eclipse.org/tracecompass.incubator/trace-server/rcp/) | ||
|
||
|
||
|
||
yarn download:server | ||
yarn start:server |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ | |
"engines": { | ||
"vscode": "^1.52.0" | ||
}, | ||
"publisher": "tracecompass-community", | ||
"categories": [ | ||
"Other" | ||
], | ||
|