This should be the part you want
Lithium Ion Polymer Battery 3.7v 950mAh.fzpz (7.2 KB)
note: I modified this part from Adafruit’s part shown below.
Lithium Ion Polymer Battery 3.7v 2500mAh.fzpz (6.3 KB)
Or if you want a smaller schematic:
Lithium Ion Polymer Battery 3.7v 950mAh smaller schematic.fzpz (7.2 KB)
Your part has a number of errors:
Error 37: File
‘part.lipoly950smallsch_77867b2daa5f5baa4baabdf26832dc51_1.fzp.bak’
This is a smd part as only the copper0 view is present but it is on the bottom layer, not the top.
If you wanted a smd part change copper0 to copper 1 at line 42
If you wanted a through hole part add the copper1 definition after line 42
Error 69: File
‘svg.breadboard.lipoly950smallsch_77867b2daa5f5baa4baabdf26832dc51_1_breadboard.svg.bak’
At line 69
Found a drawing element before a layerId (or no layerId)
Error 88: File
‘svg.pcb.lipoly950smallsch_77867b2daa5f5baa4baabdf26832dc51_1_pcb.svg.bak’
At line 3
viewBox attribute missing
In pcb typically text is not present. If the user doesn’t want the text they need to modify the part to remove it, if they do want the text they can add it to the sketch via the core parts->pcb->text
The svg is dimensioned in px (no dimension of either in or mm defaults to px) which will cause Fritzing to guess at the px to dpi ratio and it usually guesses wrong which will cause scaling problems. This is also missing the viewbox and various definitions which are needed.
the copper groups need to look like this:
and the svg needs to look like this (dimensioned in “in” or “mm” with a viewbox defined.
Peter
Ok! I reused the pcb svg from one of Adafruit’s parts found in Adafruit’s Fritzing Bin:
Not all the adafruit parts are entirely correct. Most are in pretty good shape, but some have problems. Part making in general is complex. These two tutorials apply to current versions of Fritzing (many of the others are from older versions) and may help you. Mine includes a reference to FriztingCheckPart.py which is where the error messages come from. It does require that you understand the underlying xml (as that is all it has to work with) to interpret them though which isn’t always easy.
I lately learned there aren’t links to the videos in Old_Grey’s tutorial so you need to do a google search for the title and then they come up on YouTube.
edit:
I am also happy to answer questions for people interested in making parts as we need more people capable of making parts …
Peter