Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ __pycache__/

# Distribution / packaging
.Python
out/
build/
*.vsix
develop-eggs/
dist/
downloads/
Expand Down
10 changes: 5 additions & 5 deletions vscode-integration/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# RoboView - Keyword Management in Robot Framework
![banner](./resources/github_banner.png)
![banner](https://raw.githubusercontent.com/viadee/robotframework-roboview/main/static/github_banner.png)
[![PyPI version](https://img.shields.io/pypi/v/robotframework-roboview.svg)](https://pypi.org/project/robotframework-roboview/)
![license](https://img.shields.io/badge/license-Apache--2.0-green)
![python](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue)
Expand Down Expand Up @@ -73,10 +73,10 @@ The **Dashboard** gives you a high‑level overview of the selected Robot Framew


<p align="center">
<img src="./resources/dashboard_1.png" alt="keyword_list" width="900"/>
<img src="https://raw.githubusercontent.com/viadee/robotframework-roboview/main/static/dashboard_1.png" alt="keyword_list" width="900"/>
</p>
<p align="center">
<img src="./resources/dashboard_2.png" alt="keyword_list" width="900"/>
<img src="https://raw.githubusercontent.com/viadee/robotframework-roboview/main/static/dashboard_2.png" alt="keyword_list" width="900"/>
</p>

<br>
Expand Down Expand Up @@ -108,7 +108,7 @@ The **KPIs** section summarizes the most important metrics of your test suite:
</p>

<p align="center">
<img src="./resources/keyword_usage.png" alt="graph_view" width="900"/>
<img src="https://raw.githubusercontent.com/viadee/robotframework-roboview/main/static/keyword_usage.png" alt="graph_view" width="900"/>
</p>

<br>
Expand Down Expand Up @@ -165,7 +165,7 @@ The **Robocop** view integrates the `https://robocop.readthedocs.io/` linter dir


<p align="center">
<img src="./resources/robocop.png" alt="robocop_issues" width="900"/>
<img src="https://raw.githubusercontent.com/viadee/robotframework-roboview/main/static/robocop.png" alt="robocop_issues" width="900"/>
</p>


Expand Down
47 changes: 0 additions & 47 deletions vscode-integration/out/extension.js

This file was deleted.

6 changes: 0 additions & 6 deletions vscode-integration/out/extension.js.map

This file was deleted.

2 changes: 1 addition & 1 deletion vscode-integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"publisher": "viadee",
"repository": {
"type": "git",
"url": "https://github.com/viadee-internal/StudiProjekt-RoboView"
"url": "https://github.com/viadee/robotframework-roboview"
},
"displayName": "RoboView",
"description": "RoboView is a tool designed to support Robot Framework users in managing keywords and refactoring their codebase.",
Expand Down
219 changes: 0 additions & 219 deletions vscode-integration/resources/activity-icon.svg

This file was deleted.

Binary file removed vscode-integration/resources/dashboard_1.png
Binary file not shown.
Binary file removed vscode-integration/resources/dashboard_2.png
Binary file not shown.
Binary file removed vscode-integration/resources/github_banner.png
Binary file not shown.
Binary file modified vscode-integration/resources/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 1 addition & 29 deletions vscode-integration/resources/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed vscode-integration/resources/keyword_usage.png
Binary file not shown.
Binary file removed vscode-integration/resources/robocop.png
Binary file not shown.
Binary file removed vscode-integration/roboview-0.0.1.vsix
Binary file not shown.
2 changes: 2 additions & 0 deletions vscode-integration/src/roboViewPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ export class RoboViewPanel {
},
);

panel.iconPath = Uri.joinPath(extensionUri, "resources", "icon.png");

RoboViewPanel.currentPanel = new RoboViewPanel(
panel,
extensionUri,
Expand Down