Commit cee9ab76 authored by jerryjacobs's avatar jerryjacobs
Browse files

Applied Torsten PCBNew DRC patch and testcase, update email, update scripts

parent 4f6cfb65
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -13,7 +13,7 @@ Saint Martin d'H


== Contributors
== Contributors
Dick Hollenbeck <dick@softplc.com>
Dick Hollenbeck <dick@softplc.com>
Jerry Jacobs <jerkejacobs@gmail.com>
Jerry Jacobs <xor.gate.engineering@gmail.com>
Jonas Diemer <diemer@gmx.de>
Jonas Diemer <diemer@gmx.de>
KBool Library http://boolean.klaasholwerda.nl/bool.html
KBool Library http://boolean.klaasholwerda.nl/bool.html
Rok Markovic <rok@kanardia.eu>
Rok Markovic <rok@kanardia.eu>
@@ -29,7 +29,7 @@ Igor Plyatov <plyatov@gmail.com>


== Translators
== Translators
Czech (CZ) Martin Kratoška <martin@ok1rr.com>
Czech (CZ) Martin Kratoška <martin@ok1rr.com>
Dutch (NL) Jerry Jacobs <jerkejacobs@gmail.com>
Dutch (NL) Jerry Jacobs <xor.gate.engineering@gmail.com>
French (FR) Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
French (FR) Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
Polish (PL) Mateusz Skowroski <skowri@gmail.com>
Polish (PL) Mateusz Skowroski <skowri@gmail.com>
Portuguese (PT) Renie Marquet <reniemarquet@uol.com.br>"
Portuguese (PT) Renie Marquet <reniemarquet@uol.com.br>"
+3 −3
Original line number Original line Diff line number Diff line
@@ -97,7 +97,7 @@ void InitKiCadAbout( wxAboutDialogInfo& info )
    info.SetDescription( description );
    info.SetDescription( description );


    /* Set copyright dialog */
    /* Set copyright dialog */
    info.SetCopyright( _T( "(C) 1992-2009 KiCad Developers Team" ) );
    info.SetCopyright( _T( "(C) 1992-2010 KiCad Developers Team" ) );


    /* Set license dialog */
    /* Set license dialog */
    info.SetLicence( wxString::FromAscii
    info.SetLicence( wxString::FromAscii
@@ -110,7 +110,7 @@ void InitKiCadAbout( wxAboutDialogInfo& info )
    info.AddDeveloper( wxT( "Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>" ) );
    info.AddDeveloper( wxT( "Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>" ) );
    info.AddDeveloper( SetMsg( wxT( "Dick Hollenbeck <dick@softplc.com>" ) ) );
    info.AddDeveloper( SetMsg( wxT( "Dick Hollenbeck <dick@softplc.com>" ) ) );
    info.AddDeveloper( SetMsg( wxT( "Hauptmech <hauptmech@gmail.com>") ) );
    info.AddDeveloper( SetMsg( wxT( "Hauptmech <hauptmech@gmail.com>") ) );
    info.AddDeveloper( SetMsg( wxT( "Jerry Jacobs <jerkejacobs@gmail.com>" ) ) );
    info.AddDeveloper( SetMsg( wxT( "Jerry Jacobs <xor.gate.engineering@gmail.com>" ) ) );
    info.AddDeveloper( SetMsg( wxT( "Jonas Diemer <diemer@gmx.de>" ) ) );
    info.AddDeveloper( SetMsg( wxT( "Jonas Diemer <diemer@gmx.de>" ) ) );
    info.AddDeveloper( SetMsg( wxT( "KBool Library <http://boolean.klaasholwerda.nl/bool.html>" ) ) );
    info.AddDeveloper( SetMsg( wxT( "KBool Library <http://boolean.klaasholwerda.nl/bool.html>" ) ) );
    info.AddDeveloper( SetMsg( wxT( "Lorenzo <lomarcan@tin.it>" ) ) );
    info.AddDeveloper( SetMsg( wxT( "Lorenzo <lomarcan@tin.it>" ) ) );
@@ -126,7 +126,7 @@ void InitKiCadAbout( wxAboutDialogInfo& info )


    /* Add translators */
    /* Add translators */
    info.AddTranslator( wxT( "Czech (CZ) Martin Kratoška <martin@ok1rr.com>" ) );
    info.AddTranslator( wxT( "Czech (CZ) Martin Kratoška <martin@ok1rr.com>" ) );
    info.AddTranslator( SetMsg( wxT( "Dutch (NL) Jerry Jacobs <jerkejacobs@gmail.com>" ) ) );
    info.AddTranslator( SetMsg( wxT( "Dutch (NL) Jerry Jacobs <xor.gate.engineering@gmail.com>" ) ) );
    info.AddTranslator( SetMsg( wxT( "French (FR) Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>" ) ) );
    info.AddTranslator( SetMsg( wxT( "French (FR) Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>" ) ) );
    info.AddTranslator( SetMsg( wxT( "Polish (PL) Mateusz Skowroński <skowri@gmail.com>" ) ) );
    info.AddTranslator( SetMsg( wxT( "Polish (PL) Mateusz Skowroński <skowri@gmail.com>" ) ) );
    info.AddTranslator( SetMsg( wxT( "Portuguese (PT) Renie Marquet <reniemarquet@uol.com.br>" ) ) );
    info.AddTranslator( SetMsg( wxT( "Portuguese (PT) Renie Marquet <reniemarquet@uol.com.br>" ) ) );
+4 −4
Original line number Original line Diff line number Diff line
@@ -1402,11 +1402,11 @@ bool DRC::checkClearancePadToPad( D_PAD* aRefPad, D_PAD* aPad )


        RotatePoint( &sx, &sy, m_segmAngle );       // True start point coordinate of the equivalent segment
        RotatePoint( &sx, &sy, m_segmAngle );       // True start point coordinate of the equivalent segment


        m_spotcx = rel_pos.x + sx;
        m_spotcx = rel_pos.x - sx;
        m_spotcy = rel_pos.y + sy;               // pad position / segment origin
        m_spotcy = rel_pos.y - sy;               // pad position / segment origin


        m_finx = -sx;
        m_finx = - 2 * sx;
        m_finy = -sy;                             // end of segment coordinate
        m_finy = - 2 * sy;                             // end of segment coordinate
        diag = checkClearanceSegmToPad( aPad, segm_width / 2, dist_min );
        diag = checkClearanceSegmToPad( aPad, segm_width / 2, dist_min );
        break;
        break;
    }
    }
+1 −1
Original line number Original line Diff line number Diff line
@@ -44,7 +44,7 @@ my $no_options = 0; # No options given
# Commands
# Commands
###
###
my $command_silent     = '&> /dev/null';          # Nullify stderr and stdout from commands
my $command_silent     = '&> /dev/null';          # Nullify stderr and stdout from commands
my $command_cmake      = "cmake -DCMAKE_BUILD_TYPE=Debug -DwxWidgets_USE_DEBUG=ON $svn_path_local"; # Where cmake looks for CMakeLists.txt
my $command_cmake      = "cmake -DCMAKE_BUILD_TYPE=Debug -DwxWidgets_USE_DEBUG=ON -DKICAD_AUIMANAGER=ON -DKICAD_AUITOOLBAR=ON $svn_path_local"; # Where cmake looks for CMakeLists.txt
my $command_svn_update = 'svn update';            # Subversion update command
my $command_svn_update = 'svn update';            # Subversion update command


###
###
+3 −2
Original line number Original line Diff line number Diff line
@@ -58,7 +58,8 @@ do
	curl -s "$LINE" | \
	curl -s "$LINE" | \
	grep vc_log  | \
	grep vc_log  | \
	sed -e 's/<td><pre class=\"vc_log\">//' | \
	sed -e 's/<td><pre class=\"vc_log\">//' | \
	sed -e 's/<\/pre><\/td>//'
	sed -e 's/<\/pre><\/td>//' | \
	sed -e '/<style/d'
done
done


rm /tmp/kicad-svn-*
rm /tmp/kicad-svn-*
Loading