47 lines
2.4 KiB
Plaintext
47 lines
2.4 KiB
Plaintext
KiCad ChangeLog 2012
|
|
====================
|
|
|
|
Please add newer entries at the top, list the date and your name with
|
|
email address.
|
|
|
|
2012-Jan-15 UPDATE Dick Hollenbeck <dick@softplc.com>
|
|
================================================================================
|
|
++all
|
|
Add "portrait" support to the page size settings for all standard paper
|
|
sizes. Tested with postscript output only. Required minor file format changes
|
|
to reflect the "portrait" setting. common/dialogs/dialog_page_settings.cpp
|
|
uses a checkbox but its name is "Landscape", which is inverted from portrait,
|
|
but since it is the more common choice, I used that rather than portrait.
|
|
The tooltip for that checkbox makes it clear. No portrait mode is supported
|
|
for "User" paper size.
|
|
|
|
|
|
2012-Jan-9 UPDATE Dick Hollenbeck <dick@softplc.com>
|
|
================================================================================
|
|
++all
|
|
* Carve out TITLE_BLOCK from BASE_SCREEN
|
|
* Add include/hashtables.h and put class PROPERTIES in there.
|
|
Change PROPERTIES to use "const char*" as the key instead of wxString.
|
|
++eeschema
|
|
* Add shim class SCH_BASE_FRAME which introduces the data model SCH_SCREEN
|
|
to the frame EESCHEMA frame class hierarchy and allows sharing of:
|
|
SCH_SCREEN* GetScreen() const; // overload EDA_DRAW_FRAME
|
|
void SetPageSettings( const PAGE_INFO& aPageSettings ); // overload EDA_DRAW_FRAME
|
|
const PAGE_INFO& GetPageSettings () const; // overload EDA_DRAW_FRAME
|
|
const wxSize GetPageSizeIU() const; // overload EDA_DRAW_FRAME
|
|
const wxPoint& GetOriginAxisPosition() const; // overload EDA_DRAW_FRAME
|
|
void SetOriginAxisPosition( const wxPoint& aPosition ); // overload EDA_DRAW_FRAME
|
|
const TITLE_BLOCK& GetTitleBlock() const; // overload EDA_DRAW_FRAME
|
|
void SetTitleBlock( const TITLE_BLOCK& aTitleBlock ); // overload EDA_DRAW_FRAME
|
|
|
|
|
|
2012-Jan-5 UPDATE Dick Hollenbeck <dick@softplc.com>
|
|
================================================================================
|
|
++all
|
|
Ki_PageDescr was re-written as a proper C++ class and renamed to PAGE_INFO.
|
|
It describes paper. The m_Offset field was dropped since it was only used
|
|
in HPGL plotting within EESCHEMA. PAGE_INFO instance was moved out of
|
|
BASE_SCREEN (which is on its way out) into both SCH_SCREEN and BOARD.
|
|
|
|
|