Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
snhobbs committed Jul 16, 2024
1 parent 1566527 commit 00b33f1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion libs/kicad-addon-metadata
Submodule kicad-addon-metadata updated from 46c04f to e2d914
8 changes: 4 additions & 4 deletions pcm/metadata_template.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"$schema": "https://go.kicad.org/pcm/schemas/v1",
"name": "Parts Placer",
"description": "Place parts from a spreadsheet",
"description_full": "",
"description": "Declaratively place components using a spreadsheet",
"description_full": "Flip, mirror, move, rotate, and move components based off inputs from a spreadsheet. Enforce a form-factor, keep mechanical placements under version control, and allow updating of a templated design based. Easily enforce grids or maintain test point patterns.",
"identifier": "com.github.TheJigsApp.kicad-parts-placer-pcm",
"type": "plugin",
"author": {
Expand All @@ -25,10 +25,10 @@
},
"versions": [
{
"version": "0.1.0",
"version": "0.1.1",
"status": "stable",
"kicad_version": "8.0",
"download_url": "https://github.com/TheJigsApp/kicad-parts-placer-pcm/releases/download/v0.1.0/kicad-parts-placer-0.1.0-pcm.zip"
"download_url": "https://github.com/TheJigsApp/kicad-parts-placer-pcm/releases/download/v0.1.0/kicad-parts-placer-0.1.1-pcm.zip"
}
]
}
2 changes: 1 addition & 1 deletion src/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "0.1.1"
3 changes: 2 additions & 1 deletion src/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

from dataframe_lite_ import DataFrame
import kicad_parts_placer_
import _version

_log = logging.getLogger("kicad_partsplacer-pcm")
_log.setLevel(logging.DEBUG)
Expand Down Expand Up @@ -60,7 +61,7 @@ class Meta:
frame_title = "Parts Placer"
short_description = "Parts Placer"
website = "https://www.thejigsapp.com"
version = "0.1.0"
version = _version.__version__


class SuccessPanel(wx.Panel):
Expand Down

0 comments on commit 00b33f1

Please sign in to comment.