Hi JP,
The changes are fully working.
thanks for committing.
PS
I see you added a bar code generator to fp wizard...
Do you think it would possible to add also an option for exposed pad in
qfp/qfn footprint?
thank you
Maurice
On 23/08/2015 14.46, jp charras wrote:
Le 23/08/2015 00:03, easyw a écrit :
Hi Nick,
I'm talking about the New Footprint wizard ...
please consider also to add the scripts to the installer...
so it will be already available for all users, without any action to do...
the scripts afflicted by this minor bug are:
qfp_wizard.py
sdip_wizard.py
bga_wizard.py
and the fix is:
qfp_wizard.py (line 50):
def GetValue(self):
- return "QFP %d" % self.parameters["Pads"]["*n"]
+ return "QFP-%d" % self.parameters["Pads"]["*n"]
(eliminating the space before %d e.g. with a minus character)
the same for BGA and DIP
bga_wizard.py (line 59):
- return "BGA %d" % pins
+ return "BGA-%d" % pins
sdip_wizard.py (lines 131, 180):
name = "xIP"
- return "%s %d" % (name, self.parameters["Pads"]["*n"])
+ return "%s-%d" % (name, self.parameters["Pads"]["*n"])
def GetValue(self):
- return "%s %d" % ("SOIC", self.parameters["Pads"]["*n"])
+ return "%s-%d" % ("SOIC", self.parameters["Pads"]["*n"])
thank you
Maurice
I committed yours changes. Please test the rev 6114
Thanks.
_______________________________________________
Mailing list: https://launchpad.net/~kicad-developers
Post to : [email protected]
Unsubscribe : https://launchpad.net/~kicad-developers
More help : https://help.launchpad.net/ListHelp