Skip to content

Commit

Permalink
update 2022.08.11
Browse files Browse the repository at this point in the history
  • Loading branch information
thanhduongvs committed Aug 10, 2022
1 parent b762f7d commit 22cd414
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions metadata.json.template
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"$schema": "https://go.kicad.org/pcm/schemas/v1",
"name": "Fanout Tool",
"description": "Edit reference value on layer Silkscreen and Fabrication",
"description_full": "Edit reference value on layer Silkscreen and Fabrication",
"description": "BGA Fanout",
"description_full": "BGA fanout routing",
"identifier": "vn.onekiwi.fanout-tool",
"type": "plugin",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion onekiwi/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class LengthMatchingAction(pcbnew.ActionPlugin):
def defaults(self):
self.name = "Fanout Tools"
self.category = "Modify PCB"
self.description = "Edit reference value on layer Silkscreen and Fabrication"
self.description = "BGA fanout routing"
self.show_toolbar_button = True # Optional, defaults to False
self.icon_file_name = os.path.join(os.path.dirname(__file__), 'icon.png') # Optional

Expand Down
2 changes: 1 addition & 1 deletion onekiwi/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os
import subprocess

LAST_TAG = '2022.08.10'
LAST_TAG = '2022.08.11'

def _get_git_version():
plugin_path = os.path.realpath(os.path.dirname(__file__))
Expand Down

0 comments on commit 22cd414

Please sign in to comment.