Skip to content

Commit

Permalink
change icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Steffen-W committed Sep 27, 2023
1 parent 2873fa7 commit 785d42f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@

... Documentation is still being created

Plugin to analyze the wires in the PCB editor. To use the plugin, two points must be marked on the board. This is best two pads that are connected with a wire. The tool then determines the DC resistance between the two points. A parasitic inductance wired also estimated. In future versions, the parasitic capacitance to the ground plane will be determined.


# Tested until now

Operating systems
- [ ] Windows
- [x] Windows
- [x] Linux
- [ ] Mac

KiCad versions
- [ ] KiCad 6
- [ ] KiCad 6 (will also not work in the future)
- [x] KiCad 7
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
],
"versions": [
{
"version": "2023.09.26",
"version": "2023.09.27",
"status": "stable",
"kicad_version": "7.00"
}
Expand Down
4 changes: 2 additions & 2 deletions plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ def defaults(self):
self.description = "parasitic"
self.show_toolbar_button = True
self.plugin_path = os.path.dirname(__file__)
self.icon_file_name = os.path.join(self.plugin_path, "icon.png")
self.dark_icon_file_name = os.path.join(self.plugin_path, "icon.png")
self.icon_file_name = os.path.join(self.plugin_path, "icon_small.png")
self.dark_icon_file_name = os.path.join(self.plugin_path, "icon_small.png")

# Füge das aktuelle Verzeichnis zum Modulpfad hinzu
current_dir = os.path.dirname(os.path.abspath(__file__))
Expand Down
Binary file removed plugins/icon.png
Binary file not shown.
Binary file added plugins/icon_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified 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.

0 comments on commit 785d42f

Please sign in to comment.