├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── icon.png ├── metadata.json.template ├── release.sh ├── round_tracks.png ├── round_tracks_action.py ├── round_tracks_gui.py ├── round_tracks_ui.fbp └── round_tracks_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitxela/kicad-round-tracks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitxela/kicad-round-tracks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitxela/kicad-round-tracks/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitxela/kicad-round-tracks/HEAD/__init__.py -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitxela/kicad-round-tracks/HEAD/icon.png -------------------------------------------------------------------------------- /metadata.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitxela/kicad-round-tracks/HEAD/metadata.json.template -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitxela/kicad-round-tracks/HEAD/release.sh -------------------------------------------------------------------------------- /round_tracks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitxela/kicad-round-tracks/HEAD/round_tracks.png -------------------------------------------------------------------------------- /round_tracks_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitxela/kicad-round-tracks/HEAD/round_tracks_action.py -------------------------------------------------------------------------------- /round_tracks_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitxela/kicad-round-tracks/HEAD/round_tracks_gui.py -------------------------------------------------------------------------------- /round_tracks_ui.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitxela/kicad-round-tracks/HEAD/round_tracks_ui.fbp -------------------------------------------------------------------------------- /round_tracks_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitxela/kicad-round-tracks/HEAD/round_tracks_utils.py --------------------------------------------------------------------------------