From db1c740342c22c2b2c076a3a70164751cfff6005 Mon Sep 17 00:00:00 2001 From: mitxela Date: Thu, 9 Mar 2023 15:43:29 +0000 Subject: [PATCH] Sadness that we have to do this marking it as minimum 7.0.1 still shows up as compatible and lets you install in 7.0.0 --- round_tracks_action.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/round_tracks_action.py b/round_tracks_action.py index 89a4da4..5cea505 100644 --- a/round_tracks_action.py +++ b/round_tracks_action.py @@ -392,6 +392,9 @@ def defaults( self ): self.icon_file_name = os.path.join(os.path.dirname(__file__), "./round_tracks.png") def Run( self ): + if pcbnew.GetBuildVersion()=='(7.0.0)': + wx.MessageBox("Sorry, this plugin is not compatible with KiCad 7.0.0\n\nIt should work with 7.0.1, if that's not out yet you can try KiCad nightly.") + return board = pcbnew.GetBoard() rt = RoundTracks(board, self) rt.ShowModal()