Commit 3c49fb1e authored by jean-pierre charras's avatar jean-pierre charras

Eeschema: fix bug 706429

parent df344195
......@@ -4,6 +4,20 @@ KiCad ChangeLog 2010
Please add newer entries at the top, list the date and your name with
email address.
2011-Jan-21 UPDATE Wayne Stambaugh <stambaughw@verizon.net>
================================================================================
EESchema code refactoring and coding policy naming fixes.
* Move schematic wire and bus break code into schematic screen object.
* Move schematic test for dangling ends into schematic screen object.
* Remove left over debugging output in schematic screen object.
* Remove unused file eeschema/cleanup.cpp.
* Fix bug in schematic line object hit test algorithm.
* Fix a string concatenation compile error added in r2752.
* Rename class WinEDA_BasicFrame to EDA_BASE_FRAME.
* Rename class WinEDA_DrawFrame to EDA_DRAW_FRAME.
* Rename class WinEDA_DrawPanel to EDA_DRAW_PANEL.
2011-Jan-19 UPDATE Dick Hollenbeck <dick@softplc.com>
================================================================================
++all:
......
EESchema-LIBRARY Version 2.3 Date: 19/08/2010 20:44:23
EESchema-LIBRARY Version 2.3 Date: 07/12/2010 12:09:24
#
# 4003APG120
#
......
Cmp-Mod V01 Created by Cvpcb (20080731.r1175 date = 1/8/2008-07:52:43
Cmp-Mod V01 Genere par PcbNew le 17/01/2011 13:55:19
BeginCmp
TimeStamp = /322D3011;
......@@ -134,7 +134,7 @@ IdModule = 20dip300;
EndCmp
BeginCmp
TimeStamp = /322D31CA;
TimeStamp = /4A087146;
Reference = U3;
ValeurCmp = 74LS541;
IdModule = 20dip300;
......@@ -144,7 +144,7 @@ BeginCmp
TimeStamp = /3240023F;
Reference = U5;
ValeurCmp = 628128;
IdModule = 32dip600;
IdModule = DIP-32__600;
EndCmp
BeginCmp
......
This diff is collapsed.
update=ven. 03 déc. 2010 20:28:58 CET
update=22/01/2011 11:10:15
version=1
last_client=pcbnew
[common]
......@@ -7,11 +7,6 @@ NetDir=
version=1
RootSch=interf_u.sch
BoardNm=interf_u.brd
[cvpcb]
version=1
NetIExt=net
[cvpcb/libraries]
EquName1=devcms
[eeschema]
version=1
LibDir=F:\\kicad\\share\\library
......@@ -55,11 +50,16 @@ LibName8=adc-dac
LibName9=memory
LibName10=xilinx
LibName11=special
[cvpcb]
version=1
NetIExt=net
[cvpcb/libraries]
EquName1=devcms
[pcbnew]
version=1
PadDrlX=0
PadDimH=1500
PadDimV=2500
PadDrlX=354
PadDimH=550
PadDimV=550
BoardThickness=630
SgPcb45=1
TxtPcbV=800
......@@ -76,10 +76,9 @@ LastNetListRead=interf_u.net
[pcbnew/libraries]
LibDir=F:\\kicad\\share\\modules\\packages3d
LibName1=connect
LibName2=image
LibName3=discret
LibName2=discret
LibName3=dip_sockets
LibName4=pin_array
LibName5=sockets
LibName6=divers
LibName7=libcms
LibName8=display
LibName5=divers
LibName6=libcms
LibName7=display
EESchema Schematic File Version 2 date 19/08/2010 20:44:23
EESchema Schematic File Version 2 date 07/12/2010 12:09:23
LIBS:power
LIBS:device
LIBS:conn
......@@ -10,14 +10,13 @@ LIBS:adc-dac
LIBS:memory
LIBS:xilinx
LIBS:special
LIBS:image
LIBS:interf_u-cache
EELAYER 24 0
EELAYER 25 0
EELAYER END
$Descr A3 16535 11700
Sheet 1 1
Title "INTERFACE UNIVERSEL"
Date "19 aug 2010"
Date "7 dec 2010"
Rev "2B"
Comp "KICAD"
Comment1 "Comment 1"
......
......@@ -130,7 +130,10 @@ bool LIB_EDIT_FRAME::HandleBlockEnd( wxDC* DC )
if( ItemCount )
SaveCopyInUndoList( m_component );
if ( m_component )
{
m_component->DeleteSelectedItems();
OnModify();
}
break;
case BLOCK_SAVE: /* Save */
......@@ -151,7 +154,10 @@ bool LIB_EDIT_FRAME::HandleBlockEnd( wxDC* DC )
pt = GetScreen()->m_BlockLocate.Centre();
pt.y *= -1;
if ( m_component )
{
OnModify();
m_component->MirrorSelectedItemsH( pt );
}
break;
case BLOCK_ZOOM: /* Window Zoom */
......
......@@ -25,6 +25,7 @@ public:
virtual ~HotkeyGridTable();
hotkey_spec_vector& getHotkeys();
private:
virtual int GetNumberRows();
virtual int GetNumberCols();
virtual bool IsEmptyCell( int row, int col );
......@@ -43,6 +44,7 @@ public:
virtual void SetValueAsCustom( int row, int col, void* value );
virtual wxString GetColLabelValue( int col );
public:
virtual bool isHeader( int row );
virtual void SetKeyCode( int row, long key );
virtual void RestoreFrom( struct Ki_HotkeyInfoSectionDescriptor* origin );
......
......@@ -17,7 +17,7 @@
; General Product Description Definitions
!define PRODUCT_NAME "KiCad"
!define PRODUCT_VERSION "2011.01.21"
!define PRODUCT_VERSION "2011.01.22"
!define PRODUCT_WEB_SITE "http://iut-tice.ujf-grenoble.fr/kicad/"
!define SOURCEFORGE_WEB_SITE "http://kicad.sourceforge.net/"
!define COMPANY_NAME ""
......
release version:
2011 jan 21 (BZR 2753)
2011 jan 22 (BZR 2754)
files (.zip,.tgz):
kicad-2011-01-21
kicad-2011-01-22
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment