Commit db6630b8 authored by jerryjacobs's avatar jerryjacobs
Browse files

Added hauptmech big patch, Updated documentation to match this patch. See CHANGELOG.txt

parent 831517fb
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -110,8 +110,9 @@ GLuint Pcb3D_GLCanvas::CreateDrawGL_List()
                                             g_Parm_3D_Visu.m_BoardSize.y );
    // @TODO: epoxy_width (board thickness) must be set by user,
    // because all boards thickness no not match with this setup:
    double epoxy_width = 1.6;    // epoxy width in mm
    g_Parm_3D_Visu.m_Epoxy_Width = epoxy_width / 2.54 * 1000
    //double epoxy_width = 1.6;    // epoxy width in mm

    g_Parm_3D_Visu.m_Epoxy_Width = pcb->m_BoardSettings->m_LayerThickness 
                                   * g_Parm_3D_Visu.m_BoardScale;

    /* calculate z position for each layer */
+14 −0
Original line number Diff line number Diff line
@@ -4,6 +4,20 @@ KiCad ChangeLog 2009
Please add newer entries at the top, list the date and your name with
email address.

2009-june-19 UPDATE Jerry Jacobs <jerkejacobs@gmail.com>
================================================================================
Added Hauptmech patch.
I Updated doc to match this patch.

++Pcbnew:
> * Board thickness in the 3D view can be set in *.pcb files (hand edit)
> * Hotkey files bug: incorrect file extension as default in some open/save dialogs.
> * Hotkeys made available for pcbnew [add track] and [add module] tools.
> * Drag and Move hotkeys extended to drag tracks and move nodes/vias when the [add track] tool is active.
> * Show/Hide Invisible Text button added to lefthand menu
> * Dropdown list of clearance history available next to trackwidth history.


2009-june-18 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
================================================================================
++Pcbnew:
+5 −2
Original line number Diff line number Diff line
@@ -114,11 +114,14 @@ If linux, use your package manager to install zlib pre-built binaries.

Note (JP Charras):
	Under Linux, zlib is usually installed.
	if not found by wxWidget installation, wxWidgets creates an alternate zlib
	Under Windows, zlib is not installed, so my cmake buld try to use the
	If it is not found by the wxWidget installation, wxWidgets creates an alternate zlib library.
	Under Windows, if zlib is not installed, my cmake build will try to use the
    wxWidgets zlib build.  So, under windows kicad build should work without
    zlib install.

	If you are using the wxWidget zlib, make sure that the wxWidgets/src/zlib directory is copied 
	to ${wxWidgets_ROOT_DIR}/src/zlib


-----------------------------------------------------------------------------

+1 −0
Original line number Diff line number Diff line
@@ -164,6 +164,7 @@ set(BITMAP_SRCS
    Info.xpm
    Insert_Module_Board.xpm
    Invert_Module.xpm
    invisible_text.xpm
    jigsaw.xpm
    kicad_icon_small.xpm
    Label2GLabel.xpm
+28 −0
Original line number Diff line number Diff line
/* XPM */
#ifndef XPMMAIN
extern const char *invisible_text_xpm[];

#else
const char *invisible_text_xpm[] = {
"16 16 4 1",
" 	c None",
".	c #00009B",
"+	c #000098",
"@	c #00005D",
" .............. ",
"                ",
" .+   ....   .. ",
" .@   ....    . ",
"                ",
"                ",
"      ....      ",
"      ....      ",
"                ",
"      ....      ",
"                ",
"      ....      ",
"                ",
"     .....+     ",
"    ........    ",
"                "};
#endif
Loading