Skip to content

Commit

Permalink
Support blender 3.6, Bump version back to 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
30350n committed Sep 24, 2023
1 parent 41d3890 commit d1537ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![blender](https://img.shields.io/badge/blender-3.4.0-orange)](https://www.blender.org/)
[![blender](https://img.shields.io/badge/blender-3.6.0-orange)](https://www.blender.org/)
[![kicad](https://img.shields.io/badge/kicad-7.0.0-blue)](https://www.kicad.org/)
[![gplv3](https://img.shields.io/badge/license-GPLv3-lightgrey)](https://www.gnu.org/licenses/gpl-3.0.txt)

Expand Down
2 changes: 1 addition & 1 deletion pcb2blender_exporter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .ui import SettingsDialog
from .export import export_pcb3d, get_boarddefs

__version__ = "3.0"
__version__ = "2.7"

class Pcb2BlenderExporter(pcbnew.ActionPlugin):
def defaults(self):
Expand Down
6 changes: 3 additions & 3 deletions pcb2blender_importer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
"name": "pcb2blender importer",
"description": "Enables Blender to import .pcb3d files, exported from KiCad.",
"author": "Bobbe",
"version": (3, 0, 0),
"blender": (3, 5, 1),
"version": (2, 7, 0),
"blender": (3, 6, 0),
"location": "File > Import",
"category": "Import-Export",
"support": "COMMUNITY",
"doc_url": "https://github.com/30350n/pcb2blender",
"tracker_url": "https://github.com/30350n/pcb2blender/issues",
}

__version__ = "3.0"
__version__ = "2.7"

from .blender_addon_utils import add_dependencies, register_modules_factory

Expand Down

0 comments on commit d1537ab

Please sign in to comment.