Release 1.9.4

This commit is contained in:
olegart 2016-01-31 12:35:58 +03:00
parent 69877a87b4
commit a855717e3d
5 changed files with 31 additions and 5 deletions

View File

@ -3,6 +3,13 @@
<P><HR ALIGN=LEFT></P>
<H2>What's New</H2>
<p>In release 1.9.4</p>
<ul>
<li>Metric support fixed and tested with Diptrace</li>
<li>Support for Cygwin environment</li>
<li>Some Gerber parsing fixes</li>
</ul>
<p>In release 1.9</p>
<ul>
<li>Added metric support</li>
@ -304,6 +311,11 @@ fabrication drawing.</LI>
<P><A NAME="Copyright"></A></P>
<H2>Copyright &amp; License</H2>
<p>Copyright &copy; 2016 <a href="http://www.unwireddevices.com">Unwired Devices LLC</a>.
<p>This repo is a fork of gerbmerge, version 1.9 from ProvideYourOwn.com, with additional patches by
Ian Hartwig and Paulo Henrique Silva</p>
<p>Copyright &copy; 2013 <a href="http://provideyourown.com">ProvideYourOwn.com</a>. All Rights Reserved.
<p>This repo is a fork of gerbmerge, version 1.8 from Rugged Circuits LLC: </p>
@ -319,6 +331,11 @@ fabrication drawing.</LI>
<P><A NAME="Todo"></A></P>
<H2>To Do</H2>
<ol>
<li>Proper metric/inch support: parse files with arbitrary units, output files with units
specified in the config</li>
</ol>
<OL>
<LI>Accept outputs from more CAD programs</LI>
<LI>A graphical interface for interactive placement</LI>

View File

@ -1 +1 @@
__version__ = "1.9.3"
__version__ = "1.9.4"

View File

@ -9,6 +9,9 @@ Version 3. See http://www.fsf.org for details of the license.
Rugged Circuits LLC
http://ruggedcircuits.com/gerbmerge
Unwired Devices LLC
http://github.com/unwireddevices/gerbmerge
"""
import sys

View File

@ -1,15 +1,15 @@
#!/usr/bin/env python
"""
Merge several RS274X (Gerber) files generated by Eagle into a single
job.
Merge several RS274X (Gerber) files generated by Eagle, Diptrace, or
some other CAD program into a single job.
This program expects that each separate job has at least three files:
- a board outline (RS274X)
- data layers (copper, silkscreen, etc. in RS274X format)
- an Excellon drill file
Furthermore, it is expected that each job was generated by Eagle
using the GERBER_RS274X plotter, except for the drill file which
Furthermore, it is expected that each job was generated using
the GERBER_RS274X plotter, except for the drill file which
was generated by the EXCELLON plotter.
This program places all jobs into a single job.
@ -21,6 +21,9 @@ Version 3. See http://www.fsf.org for details of the license.
Rugged Circuits LLC
http://ruggedcircuits.com/gerbmerge
Unwired Devices LLC
http://github.com/unwireddevices/gerbmerge
"""
import sys

View File

@ -10,6 +10,9 @@ Version 3. See http://www.fsf.org for details of the license.
Rugged Circuits LLC
http://ruggedcircuits.com/gerbmerge
Unwired Devices LLC
http://github.com/unwireddevices/gerbmerge
"""
import sys