Browse Source

Doc update

pull/1/head
jean-pierre charras 12 years ago
parent
commit
ab27f56cc7
  1. BIN
      Documentation/GUI_Translation_HOWTO.odt
  2. BIN
      Documentation/GUI_Translation_HOWTO.pdf
  3. 21
      Documentation/wxWidgets_patch_notes.txt
  4. 4
      pcbnew/dialogs/dialog_pad_properties.cpp

BIN
Documentation/GUI_Translation_HOWTO.odt

BIN
Documentation/GUI_Translation_HOWTO.pdf

21
Documentation/wxWidgets_patch_notes.txt

@ -5,8 +5,7 @@ Last Revised: 28-Feb-2010
Kicad needs wxWidgets, the multi platform G.U.I. Kicad needs wxWidgets, the multi platform G.U.I.
Known problems: Known problems:
wxMSW: wxMSW:
*DO NOT* use wxMSW.2.8.1
in fact: use wxWidgets >= 2.9.3
use *only* wxWidgets >= 3.0
wxGTK wxGTK
Use wxWidgets 2.8.10 or later Use wxWidgets 2.8.10 or later
@ -21,15 +20,6 @@ So use a very recent version (>= 2.8.10 (that also solve other bugs)
wxWidgets patch: wxWidgets patch:
wxMSW, version 2.8.x
Some zoom values smaller than 3 to 5 create artifacts on screen, mainly values < 1.
(corresponding to draw scale factor > 1 )
See http://trac.wxwidgets.org/ticket/9554 (and 11669).
This is fixed in version 2.9.3
wxWidgets 2.9.1 (all platforms) wxWidgets 2.9.1 (all platforms)
Has a problem when using the built in string to double conversion: Has a problem when using the built in string to double conversion:
In countries using a comm instead of a point as floating number separator In countries using a comm instead of a point as floating number separator
@ -41,7 +31,7 @@ Use a version >= 2.9.3
************************************************************************************* *************************************************************************************
wxGTK version: All
wxGTK version: All before wxWidgets 3.0
************************************************************************************* *************************************************************************************
Patch for printing wide traces that were shown with missing rounded end caps. Patch for printing wide traces that were shown with missing rounded end caps.
Without this patch, printing boards and schematics under Linux, and perhaps OSX Without this patch, printing boards and schematics under Linux, and perhaps OSX
@ -57,3 +47,10 @@ Add after this line:
PsPrint( "1 setlinecap\n" ); PsPrint( "1 setlinecap\n" );
PsPrint("%%EndSetup\n"); PsPrint("%%EndSetup\n");
Known bug on Windows:
Postscript printers print tracks like tin line.
It happens only for PS drivers, and PDF printer.
Other drivers (PCL for instance) work fine,
so it is unlikely a bug inside Kicad/wxWidgets

4
pcbnew/dialogs/dialog_pad_properties.cpp

@ -149,8 +149,8 @@ DIALOG_PAD_PROPERTIES::DIALOG_PAD_PROPERTIES( PCB_BASE_FRAME* aParent, D_PAD* aP
{ {
m_canUpdate = false; m_canUpdate = false;
m_parent = aParent; m_parent = aParent;
m_currentPad = aPad; // aPad can be NULL, if the dialog is calleg
// from the modoule editor to set default pad characteristics
m_currentPad = aPad; // aPad can be NULL, if the dialog is called
// from the module editor to set default pad characteristics
m_board = m_parent->GetBoard(); m_board = m_parent->GetBoard();
m_dummyPad = new D_PAD( (MODULE*) NULL ); m_dummyPad = new D_PAD( (MODULE*) NULL );

Loading…
Cancel
Save