├── .github └── workflows │ └── package.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── metadata.json ├── package.sh └── teardrops ├── README.md ├── __init__.py ├── rcs ├── screenshot.png ├── teardrops-help.png └── teardrops-help.svg ├── td.py ├── teardrop.fbp ├── teardrop_dialog.py ├── teardrop_gui.py ├── teardrop_plugin.py └── teardrops.png /.github/workflows/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/.github/workflows/package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/__init__.py -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/metadata.json -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/package.sh -------------------------------------------------------------------------------- /teardrops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/teardrops/README.md -------------------------------------------------------------------------------- /teardrops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/teardrops/__init__.py -------------------------------------------------------------------------------- /teardrops/rcs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/teardrops/rcs/screenshot.png -------------------------------------------------------------------------------- /teardrops/rcs/teardrops-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/teardrops/rcs/teardrops-help.png -------------------------------------------------------------------------------- /teardrops/rcs/teardrops-help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/teardrops/rcs/teardrops-help.svg -------------------------------------------------------------------------------- /teardrops/td.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/teardrops/td.py -------------------------------------------------------------------------------- /teardrops/teardrop.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/teardrops/teardrop.fbp -------------------------------------------------------------------------------- /teardrops/teardrop_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/teardrops/teardrop_dialog.py -------------------------------------------------------------------------------- /teardrops/teardrop_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/teardrops/teardrop_gui.py -------------------------------------------------------------------------------- /teardrops/teardrop_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/teardrops/teardrop_plugin.py -------------------------------------------------------------------------------- /teardrops/teardrops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NilujePerchut/kicad_scripts/HEAD/teardrops/teardrops.png --------------------------------------------------------------------------------