Unfortunately Inkscape has bitten you.
Error 65: File
‘svg.pcb.bridge_rectifier_round_200mil_d4b37b7d708ee9291c0aa1b4b3048108_3_pcb.svg.bak’
At line 11
Connector connector0pin is an ellipse not a circle, (gerber generation will break.)
Error 74: File
‘svg.pcb.bridge_rectifier_round_200mil_d4b37b7d708ee9291c0aa1b4b3048108_3_pcb.svg.bak’
At line 11
Connector connector0pin has no radius no hole will be generated
(repeats for connectors 1 - 3)
in XML editor:
id connector0pin
rx 35
ry 35.000004
rather than the correct
r 35
The result is that the gerber generator won’t generate a hole for the pad. This is round off error in floating point calculations in Inkscape (or which ever svg editor you are using). The easy fix is to use xml editor to set both rx and ry to 35 at which point it will revert to a r 35 and gerber generation will be happy.
Edit:
As well you need to do an
edit->select all
then
file ->document properties->custom size-> resize page to content
then
Resize page to drawing or selection
to adjust the viewbox to the drawing dimensions (it is also complaining about incorrect scale currently, although scale is set correctly). Because the offset is positive nothing bad happens, if the offest were negative, the edges of the drawing outside the view box would be truncated in Fritzing.
Peter