Commit 73585a85 authored by jean-pierre charras's avatar jean-pierre charras
Browse files

Fix minor bug (layer color not updated in toolbar when changed in layer manager)

Pcbnew: fix that prevents loading modules from libraries (footprint name not identified in lib)
Module Editor: Try to fix incorrect printing. Fixed now only for scale 1. Nor working for other scales. (Work in progress).
Gerbview: Known bug: printing not working.
VRML export: Fix incorrect export of 3D shapes rotations when the 3D shape was rotated.
parent 1f0f784d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -6,7 +6,7 @@
#endif
#endif


#ifndef KICAD_BUILD_VERSION
#ifndef KICAD_BUILD_VERSION
#define KICAD_BUILD_VERSION "(2011-01-07 BZR 2718)"
#define KICAD_BUILD_VERSION "(2011-01-12 BZR 2730)"
#endif
#endif


//#define VERSION_STABILITY      "stable"
//#define VERSION_STABILITY      "stable"
+1 −0
Original line number Original line Diff line number Diff line
@@ -36,5 +36,6 @@ unsigned FILTER_READER::ReadLine() throw( IO_ERROR )
        if( !strchr( "#\n\r", reader[0] ) )
        if( !strchr( "#\n\r", reader[0] ) )
            break;
            break;
    }
    }
    strtok( reader, "\n\r" );
    return ret;
    return ret;
}
}
+3 −2
Original line number Original line Diff line number Diff line
/**
 * @file dialog_edit_component_in_schematic.cpp
 */


#include <wx/tooltip.h>
#include <wx/tooltip.h>
#include <algorithm>


#include "fctsys.h"
#include "fctsys.h"
#include "appl_wxstruct.h"
#include "appl_wxstruct.h"
@@ -12,7 +14,6 @@
#include "wxEeschemaStruct.h"
#include "wxEeschemaStruct.h"


#include "general.h"
#include "general.h"
#include "protos.h"
#include "class_library.h"
#include "class_library.h"
#include "sch_component.h"
#include "sch_component.h"
#include "dialog_helpers.h"
#include "dialog_helpers.h"
+1 −0
Original line number Original line Diff line number Diff line
@@ -194,6 +194,7 @@ void GERBER_LAYER_WIDGET::ReFill()
void GERBER_LAYER_WIDGET::OnLayerColorChange( int aLayer, int aColor )
void GERBER_LAYER_WIDGET::OnLayerColorChange( int aLayer, int aColor )
{
{
    myframe->GetBoard()->SetLayerColor( aLayer, aColor );
    myframe->GetBoard()->SetLayerColor( aLayer, aColor );
    myframe->m_SelLayerBox->ResyncBitmapOnly();
    myframe->DrawPanel->Refresh();
    myframe->DrawPanel->Refresh();
}
}


+1 −1
Original line number Original line Diff line number Diff line
@@ -17,7 +17,7 @@


; General Product Description Definitions
; General Product Description Definitions
!define PRODUCT_NAME "KiCad"
!define PRODUCT_NAME "KiCad"
!define PRODUCT_VERSION "2011.01.07"
!define PRODUCT_VERSION "2011.01.12"
!define PRODUCT_WEB_SITE "http://iut-tice.ujf-grenoble.fr/kicad/"
!define PRODUCT_WEB_SITE "http://iut-tice.ujf-grenoble.fr/kicad/"
!define SOURCEFORGE_WEB_SITE "http://kicad.sourceforge.net/"
!define SOURCEFORGE_WEB_SITE "http://kicad.sourceforge.net/"
!define COMPANY_NAME ""
!define COMPANY_NAME ""
Loading