+ Updated Atmel library
+ Moved DIP Packages to dip_sockets.mod from support.mod + Made DIP Packages board + Dutch language update to 90%
This commit is contained in:
parent
8aab369f4e
commit
4c2b9e2199
|
@ -4,6 +4,17 @@ Started 2007-June-11
|
||||||
|
|
||||||
Please add newer entries at the top, list the date and your name with
|
Please add newer entries at the top, list the date and your name with
|
||||||
email address.
|
email address.
|
||||||
|
|
||||||
|
|
||||||
|
2008-Nov-19 UPDATE Jerry Jacobs <jerkejacobs@gmail.com>
|
||||||
|
================================================================================
|
||||||
|
++kicad-library
|
||||||
|
Moved {number}DIP packages to DIP-{number}__{WIDTH} seperated library dip_sockets.mod
|
||||||
|
Created DIP Packages board
|
||||||
|
++kicad.pro template
|
||||||
|
Added dip_sockets library to pcbnew libraries in template file
|
||||||
|
|
||||||
|
|
||||||
2008-Nov-18 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
|
2008-Nov-18 UPDATE Jean-Pierre Charras <jean-pierre.charras@inpg.fr>
|
||||||
================================================================================
|
================================================================================
|
||||||
++pcbnew
|
++pcbnew
|
||||||
|
|
|
@ -39,57 +39,57 @@ void WinEDA_SchematicFrame::ReCreateMenuBar()
|
||||||
// Menu File:
|
// Menu File:
|
||||||
wxMenuItem* item = new wxMenuItem( m_FilesMenu, ID_NEW_PROJECT,
|
wxMenuItem* item = new wxMenuItem( m_FilesMenu, ID_NEW_PROJECT,
|
||||||
_( "&New" ),
|
_( "&New" ),
|
||||||
_( "New schematic" ) );
|
_( "New schematic sheet" ) );
|
||||||
item->SetBitmap( new_xpm );
|
item->SetBitmap( new_xpm );
|
||||||
m_FilesMenu->Append( item );
|
m_FilesMenu->Append( item );
|
||||||
|
|
||||||
item = new wxMenuItem( m_FilesMenu, ID_LOAD_PROJECT,
|
item = new wxMenuItem( m_FilesMenu, ID_LOAD_PROJECT,
|
||||||
_( "&Open" ),
|
_( "&Open" ),
|
||||||
_( "Open a schematic" ) );
|
_( "Open a schematic sheet" ) );
|
||||||
item->SetBitmap( open_xpm );
|
item->SetBitmap( open_xpm );
|
||||||
m_FilesMenu->Append( item );
|
m_FilesMenu->Append( item );
|
||||||
|
|
||||||
m_FilesMenu->AppendSeparator();
|
m_FilesMenu->AppendSeparator();
|
||||||
item = new wxMenuItem( m_FilesMenu, ID_SAVE_PROJECT,
|
item = new wxMenuItem( m_FilesMenu, ID_SAVE_PROJECT,
|
||||||
_( "&Save" ),
|
_( "&Save Project" ),
|
||||||
_( "Save schematic project" ) );
|
_( "Save project" ) );
|
||||||
item->SetBitmap( save_project_xpm );
|
item->SetBitmap( save_project_xpm );
|
||||||
m_FilesMenu->Append( item );
|
m_FilesMenu->Append( item );
|
||||||
|
|
||||||
m_FilesMenu->AppendSeparator();
|
m_FilesMenu->AppendSeparator();
|
||||||
item = new wxMenuItem( m_FilesMenu, ID_SAVE_ONE_SHEET,
|
item = new wxMenuItem( m_FilesMenu, ID_SAVE_ONE_SHEET,
|
||||||
_( "Save &Current sheet" ),
|
_( "&Save" ),
|
||||||
_( "Save current sheet only" ) );
|
_( "Save only current schematic sheet" ) );
|
||||||
item->SetBitmap( save_xpm );
|
item->SetBitmap( save_xpm );
|
||||||
m_FilesMenu->Append( item );
|
m_FilesMenu->Append( item );
|
||||||
|
|
||||||
item = new wxMenuItem( m_FilesMenu, ID_SAVE_ONE_SHEET_AS,
|
item = new wxMenuItem( m_FilesMenu, ID_SAVE_ONE_SHEET_AS,
|
||||||
_( "Save Current sheet &as.." ),
|
_( "Save &as.." ),
|
||||||
_( "Save current sheet as.." ) );
|
_( "Save current schematic sheet as.." ) );
|
||||||
item->SetBitmap( save_as_xpm );
|
item->SetBitmap( save_as_xpm );
|
||||||
m_FilesMenu->Append( item );
|
m_FilesMenu->Append( item );
|
||||||
|
|
||||||
// Print and Plot section:
|
// Print and Plot section:
|
||||||
m_FilesMenu->AppendSeparator();
|
m_FilesMenu->AppendSeparator();
|
||||||
item = new wxMenuItem( m_FilesMenu, ID_GEN_PRINT,
|
item = new wxMenuItem( m_FilesMenu, ID_GEN_PRINT,
|
||||||
_( "P&rint" ), _( "Print schematic" ) );
|
_( "P&rint" ), _( "Print schematic sheet" ) );
|
||||||
item->SetBitmap( print_button );
|
item->SetBitmap( print_button );
|
||||||
m_FilesMenu->Append( item );
|
m_FilesMenu->Append( item );
|
||||||
|
|
||||||
/* Plot Submenu */
|
/* Plot Submenu */
|
||||||
wxMenu* choice_plot_fmt = new wxMenu;
|
wxMenu* choice_plot_fmt = new wxMenu;
|
||||||
item = new wxMenuItem( choice_plot_fmt, ID_GEN_PLOT_PS,
|
item = new wxMenuItem( choice_plot_fmt, ID_GEN_PLOT_PS,
|
||||||
_( "Plot PostScript" ), _( "Plot schematic in PostScript format" ) );
|
_( "Plot PostScript" ), _( "Plot schematic sheet in PostScript format" ) );
|
||||||
item->SetBitmap( plot_PS_xpm );
|
item->SetBitmap( plot_PS_xpm );
|
||||||
choice_plot_fmt->Append( item );
|
choice_plot_fmt->Append( item );
|
||||||
|
|
||||||
item = new wxMenuItem( choice_plot_fmt, ID_GEN_PLOT_HPGL,
|
item = new wxMenuItem( choice_plot_fmt, ID_GEN_PLOT_HPGL,
|
||||||
_( "Plot HPGL" ), _( "Plot schematic in HPGL format" ) );
|
_( "Plot HPGL" ), _( "Plot schematic sheet in HPGL format" ) );
|
||||||
item->SetBitmap( plot_HPG_xpm );
|
item->SetBitmap( plot_HPG_xpm );
|
||||||
choice_plot_fmt->Append( item );
|
choice_plot_fmt->Append( item );
|
||||||
|
|
||||||
item = new wxMenuItem( choice_plot_fmt, ID_GEN_PLOT_SVG,
|
item = new wxMenuItem( choice_plot_fmt, ID_GEN_PLOT_SVG,
|
||||||
_( "Plot SVG" ), _( "Plot schematic in SVG format" ) );
|
_( "Plot SVG" ), _( "Plot schematic sheet in SVG format" ) );
|
||||||
item->SetBitmap( plot_xpm );
|
item->SetBitmap( plot_xpm );
|
||||||
choice_plot_fmt->Append( item );
|
choice_plot_fmt->Append( item );
|
||||||
|
|
||||||
|
@ -103,7 +103,7 @@ void WinEDA_SchematicFrame::ReCreateMenuBar()
|
||||||
|
|
||||||
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( m_FilesMenu, choice_plot_fmt,
|
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( m_FilesMenu, choice_plot_fmt,
|
||||||
ID_GEN_PLOT, _( "&Plot" ),
|
ID_GEN_PLOT, _( "&Plot" ),
|
||||||
_( "Plot schematic in HPGL, PostScript or SVG format" ), plot_xpm );
|
_( "Plot schematic sheet in HPGL, PostScript or SVG format" ), plot_xpm );
|
||||||
|
|
||||||
m_FilesMenu->AppendSeparator();
|
m_FilesMenu->AppendSeparator();
|
||||||
item = new wxMenuItem( m_FilesMenu, ID_EXIT, _( "E&xit" ), _( "Quit Eeschema" ) );
|
item = new wxMenuItem( m_FilesMenu, ID_EXIT, _( "E&xit" ), _( "Quit Eeschema" ) );
|
||||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -206,8 +206,8 @@ void WinEDA_MainFrame::ReCreateMenuBar()
|
||||||
// Editor
|
// Editor
|
||||||
item = new wxMenuItem(browseMenu, // Entry in menu
|
item = new wxMenuItem(browseMenu, // Entry in menu
|
||||||
ID_TO_EDITOR, // Entry ID
|
ID_TO_EDITOR, // Entry ID
|
||||||
_("&Editor"), // Entry text
|
_("Text E&ditor"), // Entry text
|
||||||
_("Text editor") ); // Status bar text
|
_("Open prefered text editor") ); // Status bar text
|
||||||
item->SetBitmap(editor_xpm); // Entry XPM Bitmap
|
item->SetBitmap(editor_xpm); // Entry XPM Bitmap
|
||||||
browseMenu->Append(item); // Append wxMenuItem to menu
|
browseMenu->Append(item); // Append wxMenuItem to menu
|
||||||
|
|
||||||
|
@ -216,24 +216,11 @@ void WinEDA_MainFrame::ReCreateMenuBar()
|
||||||
item = new wxMenuItem(browseMenu,
|
item = new wxMenuItem(browseMenu,
|
||||||
ID_BROWSE_AN_SELECT_FILE,
|
ID_BROWSE_AN_SELECT_FILE,
|
||||||
_("&Browse Files"),
|
_("&Browse Files"),
|
||||||
_("Read or edit files") );
|
_("Read or edit files with text editor") );
|
||||||
item->SetBitmap(browse_files_xpm);
|
item->SetBitmap(browse_files_xpm);
|
||||||
browseMenu->Append(item);
|
browseMenu->Append(item);
|
||||||
|
|
||||||
|
|
||||||
// Separator
|
|
||||||
browseMenu->AppendSeparator();
|
|
||||||
|
|
||||||
|
|
||||||
// Select editor
|
|
||||||
item = new wxMenuItem(browseMenu,
|
|
||||||
ID_SELECT_PREFERED_EDITOR,
|
|
||||||
_("&Select Editor"),
|
|
||||||
_("Select your prefered editor for file browsing") );
|
|
||||||
item->SetBitmap(editor_xpm);
|
|
||||||
browseMenu->Append(item);
|
|
||||||
|
|
||||||
|
|
||||||
/*************************************************************************/
|
/*************************************************************************/
|
||||||
wxMenu *PreferencesMenu = new wxMenu;
|
wxMenu *PreferencesMenu = new wxMenu;
|
||||||
/*************************************************************************/
|
/*************************************************************************/
|
||||||
|
@ -247,6 +234,15 @@ void WinEDA_MainFrame::ReCreateMenuBar()
|
||||||
PreferencesMenu->Append(item);
|
PreferencesMenu->Append(item);
|
||||||
|
|
||||||
|
|
||||||
|
// Prefered text editor
|
||||||
|
item = new wxMenuItem(PreferencesMenu,
|
||||||
|
ID_SELECT_PREFERED_EDITOR,
|
||||||
|
_("&Text Editor"),
|
||||||
|
_("Select your prefered text editor") );
|
||||||
|
item->SetBitmap(editor_xpm);
|
||||||
|
PreferencesMenu->Append(item);
|
||||||
|
|
||||||
|
|
||||||
// Submenu Pdf Browser selection: system browser or user
|
// Submenu Pdf Browser selection: system browser or user
|
||||||
// selected browser (and its name)
|
// selected browser (and its name)
|
||||||
/*************************************************************************/
|
/*************************************************************************/
|
||||||
|
@ -287,8 +283,8 @@ void WinEDA_MainFrame::ReCreateMenuBar()
|
||||||
|
|
||||||
ADD_MENUITEM_WITH_HELP_AND_SUBMENU(PreferencesMenu,
|
ADD_MENUITEM_WITH_HELP_AND_SUBMENU(PreferencesMenu,
|
||||||
SubMenuPdfBrowserChoice,
|
SubMenuPdfBrowserChoice,
|
||||||
-1, _("Pdf Browser"),
|
-1, _("Pdf Viewer"),
|
||||||
wxT("Pdf Browser choice: default or user selection"),
|
_("Pdf viewer preferences"),
|
||||||
datasheet_xpm);
|
datasheet_xpm);
|
||||||
|
|
||||||
PreferencesMenu->AppendSeparator();
|
PreferencesMenu->AppendSeparator();
|
||||||
|
|
|
@ -80,6 +80,7 @@ LibName6=libcms
|
||||||
LibName7=display
|
LibName7=display
|
||||||
LibName8=valves
|
LibName8=valves
|
||||||
LibName9=led
|
LibName9=led
|
||||||
|
LibName10=dip_sockets
|
||||||
[eeschema]
|
[eeschema]
|
||||||
version=1
|
version=1
|
||||||
LibDir=
|
LibDir=
|
||||||
|
|
Loading…
Reference in New Issue