Commit c4b37d77 authored by charras's avatar charras
Browse files

Gerbview: Added support of arcs in polygons outlines. Need more tests, but works.

parent 32dfdb48
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -3,6 +3,15 @@ KiCad ChangeLog 2009

Please add newer entries at the top, list the date and your name with
email address.

2010-Jan-08 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
================================================================================
++Gerbview
    Added support of arcs in polygons outlines.
    Needed to show copper areas in some gerber files
    Not fully tested but works better than without this support...


2010-Jan-03 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
================================================================================
++pcbnew
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
#endif

#ifndef KICAD_BUILD_VERSION
#define KICAD_BUILD_VERSION "(2010-01-05)"
#define KICAD_BUILD_VERSION "(2010-01-08)"
#endif

#define VERSION_STABILITY "unstable"
+1 −1
Original line number Diff line number Diff line
@@ -166,7 +166,7 @@ void DIALOG_EESCHEMA_CONFIG::OnOkClick( wxCommandEvent& event )
        WinEDA_LibeditFrame::EnsureActiveLibExists();
    }

    m_Parent->SaveProjectFile( this );
    m_Parent->SaveProjectFile( this, false );
    EndModal( wxID_OK );
}

+6 −4
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ void WinEDA_SchematicFrame::Process_Config( wxCommandEvent& event )
        break;

    case ID_CONFIG_SAVE:
        SaveProjectFile( this );
        SaveProjectFile( this, false );
        break;

    case ID_CONFIG_READ:
@@ -316,16 +316,18 @@ bool WinEDA_SchematicFrame::LoadProjectFile( const wxString& CfgFileName,
/*
 * Save the Kicad project file (*.pro) settings specific to EESchema.
 */
void WinEDA_SchematicFrame::SaveProjectFile( wxWindow* displayframe )
void WinEDA_SchematicFrame::SaveProjectFile( wxWindow* displayframe, bool askoverwrite )
{
    wxFileName fn;

    fn = g_RootSheet->m_AssociatedScreen->m_FileName  /*ConfigFileName*/;
    fn.SetExt( ProjectFileExtension );

    int options = wxFD_SAVE;
    if( askoverwrite )
        options |= wxFD_OVERWRITE_PROMPT;
    wxFileDialog dlg( this, _( "Save Project Settings" ), wxGetCwd(),
                      fn.GetFullName(), ProjectFileWildcard,
                      wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
                      fn.GetFullName(), ProjectFileWildcard, options );

    if( dlg.ShowModal() == wxID_CANCEL )
        return;
+4163 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading