+ 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:
@@ -4,6 +4,17 @@ Started 2007-June-11
|
||||
|
||||
Please add newer entries at the top, list the date and your name with
|
||||
email address.
|
||||
|
||||
|
||||
2008-Nov-19 UPDATE Jerry Jacobs <[email protected]>
|
||||
================================================================================
|
||||
++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 <[email protected]>
|
||||
================================================================================
|
||||
++pcbnew
|
||||
|
||||
+13
-13
@@ -39,57 +39,57 @@ void WinEDA_SchematicFrame::ReCreateMenuBar()
|
||||
// Menu File:
|
||||
wxMenuItem* item = new wxMenuItem( m_FilesMenu, ID_NEW_PROJECT,
|
||||
_( "&New" ),
|
||||
_( "New schematic" ) );
|
||||
_( "New schematic sheet" ) );
|
||||
item->SetBitmap( new_xpm );
|
||||
m_FilesMenu->Append( item );
|
||||
|
||||
item = new wxMenuItem( m_FilesMenu, ID_LOAD_PROJECT,
|
||||
_( "&Open" ),
|
||||
_( "Open a schematic" ) );
|
||||
_( "Open a schematic sheet" ) );
|
||||
item->SetBitmap( open_xpm );
|
||||
m_FilesMenu->Append( item );
|
||||
|
||||
m_FilesMenu->AppendSeparator();
|
||||
item = new wxMenuItem( m_FilesMenu, ID_SAVE_PROJECT,
|
||||
_( "&Save" ),
|
||||
_( "Save schematic project" ) );
|
||||
_( "&Save Project" ),
|
||||
_( "Save project" ) );
|
||||
item->SetBitmap( save_project_xpm );
|
||||
m_FilesMenu->Append( item );
|
||||
|
||||
m_FilesMenu->AppendSeparator();
|
||||
item = new wxMenuItem( m_FilesMenu, ID_SAVE_ONE_SHEET,
|
||||
_( "Save &Current sheet" ),
|
||||
_( "Save current sheet only" ) );
|
||||
_( "&Save" ),
|
||||
_( "Save only current schematic sheet" ) );
|
||||
item->SetBitmap( save_xpm );
|
||||
m_FilesMenu->Append( item );
|
||||
|
||||
item = new wxMenuItem( m_FilesMenu, ID_SAVE_ONE_SHEET_AS,
|
||||
_( "Save Current sheet &as.." ),
|
||||
_( "Save current sheet as.." ) );
|
||||
_( "Save &as.." ),
|
||||
_( "Save current schematic sheet as.." ) );
|
||||
item->SetBitmap( save_as_xpm );
|
||||
m_FilesMenu->Append( item );
|
||||
|
||||
// Print and Plot section:
|
||||
m_FilesMenu->AppendSeparator();
|
||||
item = new wxMenuItem( m_FilesMenu, ID_GEN_PRINT,
|
||||
_( "P&rint" ), _( "Print schematic" ) );
|
||||
_( "P&rint" ), _( "Print schematic sheet" ) );
|
||||
item->SetBitmap( print_button );
|
||||
m_FilesMenu->Append( item );
|
||||
|
||||
/* Plot Submenu */
|
||||
wxMenu* choice_plot_fmt = new wxMenu;
|
||||
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 );
|
||||
choice_plot_fmt->Append( item );
|
||||
|
||||
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 );
|
||||
choice_plot_fmt->Append( item );
|
||||
|
||||
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 );
|
||||
choice_plot_fmt->Append( item );
|
||||
|
||||
@@ -103,7 +103,7 @@ void WinEDA_SchematicFrame::ReCreateMenuBar()
|
||||
|
||||
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( m_FilesMenu, choice_plot_fmt,
|
||||
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();
|
||||
item = new wxMenuItem( m_FilesMenu, ID_EXIT, _( "E&xit" ), _( "Quit Eeschema" ) );
|
||||
|
||||
Binary file not shown.
+196
-209
File diff suppressed because it is too large
Load Diff
+14
-18
@@ -206,8 +206,8 @@ void WinEDA_MainFrame::ReCreateMenuBar()
|
||||
// Editor
|
||||
item = new wxMenuItem(browseMenu, // Entry in menu
|
||||
ID_TO_EDITOR, // Entry ID
|
||||
_("&Editor"), // Entry text
|
||||
_("Text editor") ); // Status bar text
|
||||
_("Text E&ditor"), // Entry text
|
||||
_("Open prefered text editor") ); // Status bar text
|
||||
item->SetBitmap(editor_xpm); // Entry XPM Bitmap
|
||||
browseMenu->Append(item); // Append wxMenuItem to menu
|
||||
|
||||
@@ -216,24 +216,11 @@ void WinEDA_MainFrame::ReCreateMenuBar()
|
||||
item = new wxMenuItem(browseMenu,
|
||||
ID_BROWSE_AN_SELECT_FILE,
|
||||
_("&Browse Files"),
|
||||
_("Read or edit files") );
|
||||
_("Read or edit files with text editor") );
|
||||
item->SetBitmap(browse_files_xpm);
|
||||
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;
|
||||
/*************************************************************************/
|
||||
@@ -247,6 +234,15 @@ void WinEDA_MainFrame::ReCreateMenuBar()
|
||||
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
|
||||
// selected browser (and its name)
|
||||
/*************************************************************************/
|
||||
@@ -287,8 +283,8 @@ void WinEDA_MainFrame::ReCreateMenuBar()
|
||||
|
||||
ADD_MENUITEM_WITH_HELP_AND_SUBMENU(PreferencesMenu,
|
||||
SubMenuPdfBrowserChoice,
|
||||
-1, _("Pdf Browser"),
|
||||
wxT("Pdf Browser choice: default or user selection"),
|
||||
-1, _("Pdf Viewer"),
|
||||
_("Pdf viewer preferences"),
|
||||
datasheet_xpm);
|
||||
|
||||
PreferencesMenu->AppendSeparator();
|
||||
|
||||
@@ -80,6 +80,7 @@ LibName6=libcms
|
||||
LibName7=display
|
||||
LibName8=valves
|
||||
LibName9=led
|
||||
LibName10=dip_sockets
|
||||
[eeschema]
|
||||
version=1
|
||||
LibDir=
|
||||
|
||||
Reference in New Issue
Block a user