Skip to content

Commit

Permalink
Sadness that we have to do this
Browse files Browse the repository at this point in the history
marking it as minimum 7.0.1 still shows up as compatible and lets you install in 7.0.0
  • Loading branch information
mitxela committed Mar 9, 2023
1 parent bcc1ec6 commit db1c740
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions round_tracks_action.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit db1c740

Please sign in to comment.