mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-11 00:30:01 +00:00
Applied Torsten PCBNew DRC patch and testcase, update email, update scripts
This commit is contained in:
parent
4f6cfb65d2
commit
cee9ab7610
@ -13,7 +13,7 @@ Saint Martin d'H
|
||||
|
||||
== Contributors
|
||||
Dick Hollenbeck <dick@softplc.com>
|
||||
Jerry Jacobs <jerkejacobs@gmail.com>
|
||||
Jerry Jacobs <xor.gate.engineering@gmail.com>
|
||||
Jonas Diemer <diemer@gmx.de>
|
||||
KBool Library http://boolean.klaasholwerda.nl/bool.html
|
||||
Rok Markovic <rok@kanardia.eu>
|
||||
@ -29,7 +29,7 @@ Igor Plyatov <plyatov@gmail.com>
|
||||
|
||||
== Translators
|
||||
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>
|
||||
Polish (PL) Mateusz Skowro¿ski <skowri@gmail.com>
|
||||
Portuguese (PT) Renie Marquet <reniemarquet@uol.com.br>"
|
||||
|
@ -97,7 +97,7 @@ void InitKiCadAbout( wxAboutDialogInfo& info )
|
||||
info.SetDescription( description );
|
||||
|
||||
/* Set copyright dialog */
|
||||
info.SetCopyright( _T( "(C) 1992-2009 KiCad Developers Team" ) );
|
||||
info.SetCopyright( _T( "(C) 1992-2010 KiCad Developers Team" ) );
|
||||
|
||||
/* Set license dialog */
|
||||
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( SetMsg( wxT( "Dick Hollenbeck <dick@softplc.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( "KBool Library <http://boolean.klaasholwerda.nl/bool.html>" ) ) );
|
||||
info.AddDeveloper( SetMsg( wxT( "Lorenzo <lomarcan@tin.it>" ) ) );
|
||||
@ -126,7 +126,7 @@ void InitKiCadAbout( wxAboutDialogInfo& info )
|
||||
|
||||
/* Add translators */
|
||||
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( "Polish (PL) Mateusz Skowroński <skowri@gmail.com>" ) ) );
|
||||
info.AddTranslator( SetMsg( wxT( "Portuguese (PT) Renie Marquet <reniemarquet@uol.com.br>" ) ) );
|
||||
|
@ -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
|
||||
|
||||
m_spotcx = rel_pos.x + sx;
|
||||
m_spotcy = rel_pos.y + sy; // pad position / segment origin
|
||||
m_spotcx = rel_pos.x - sx;
|
||||
m_spotcy = rel_pos.y - sy; // pad position / segment origin
|
||||
|
||||
m_finx = -sx;
|
||||
m_finy = -sy; // end of segment coordinate
|
||||
m_finx = - 2 * sx;
|
||||
m_finy = - 2 * sy; // end of segment coordinate
|
||||
diag = checkClearanceSegmToPad( aPad, segm_width / 2, dist_min );
|
||||
break;
|
||||
}
|
||||
|
@ -44,7 +44,7 @@ my $no_options = 0; # No options given
|
||||
# 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
|
||||
|
||||
###
|
||||
|
@ -57,8 +57,9 @@ while read LINE
|
||||
do
|
||||
curl -s "$LINE" | \
|
||||
grep vc_log | \
|
||||
sed -e 's/<td><pre class=\"vc_log\">//' |\
|
||||
sed -e 's/<\/pre><\/td>//'
|
||||
sed -e 's/<td><pre class=\"vc_log\">//' | \
|
||||
sed -e 's/<\/pre><\/td>//' | \
|
||||
sed -e '/<style/d'
|
||||
done
|
||||
|
||||
rm /tmp/kicad-svn-*
|
||||
|
share/test-cases/pcbnew/pcbnew-drc-test.brd
Normal file
LOADING design file
Loading…
Reference in New Issue
Block a user