Re: [Kicad-developers] OT: User's mail list

2013-01-31 Thread Jacobo Aragunde Pérez
El 25/01/13 23:46, Raymond Lillard escribió: > > I am new to Kicad, but a long time Unix user. > > I have subscribed here to follow the development and > prefer working with experimental builds and am capable > of making useful bug reports if appropriate, maybe > even a patch or two. > Hello, a

[Kicad-developers] [PATCH] Ammendment for bug fixes #1101718 and #1102381

2013-01-30 Thread Jacobo Aragunde Pérez
Hi, though the fixes for #1101718 and #1102381 have already been committed, I wasn't really satisfied with their solution. Find attached a cleaner patch for both issues, more consistent with the existing code. Best regards, -- Jacobo Aragunde Software Engineer at Igalia === modified file 'eesche

Re: [Kicad-developers] [PATCH] Append schematic: copy the contents of one schematic file into another

2013-01-24 Thread Jacobo Aragunde Pérez
El 24/01/13 09:46, Jacobo Aragunde Pérez escribió: > Second attempt. Make me know what you think. > I've just seen a typo in the warning message string. Sending again. Sorry for the noise. -- Jacobo Aragunde Software Engineer at Igalia === modified file 'eeschema/c

Re: [Kicad-developers] [PATCH] Append schematic: copy the contents of one schematic file into another

2013-01-24 Thread Jacobo Aragunde Pérez
Second attempt. Make me know what you think. Thanks for your time. -- Jacobo Aragunde Software Engineer at Igalia === modified file 'eeschema/class_library.cpp' --- eeschema/class_library.cpp 2012-10-29 21:56:18 + +++ eeschema/class_library.cpp 2013-01-23 16:58:35 + @@ -860,13 +860,13 @@

Re: [Kicad-developers] [PATCH] Append schematic: copy the contents of one schematic file into another

2013-01-23 Thread Jacobo Aragunde Pérez
El 23/01/13 16:56, jp charras escribió: > ... >>> Therefore (like in paste block) time stamps of new items should be >>> checked and updated (and perhaps the references). >>> I am thinking a lot of users will use such a feature to create multiple >>> instances of a basic sheet, as an alternative to

Re: [Kicad-developers] [PATCH] Append schematic: copy the contents of one schematic file into another

2013-01-23 Thread Jacobo Aragunde Pérez
El 22/01/13 09:47, jp charras escribió: > Le 21/01/2013 10:46, Jacobo Aragunde Pérez a écrit : >> ... >> I've checked the approach used in Pcbnew. After an import, the current >> document name changes, so it doesn't overwrite the existing one unless >> you

Re: [Kicad-developers] [PATCH] Append schematic: copy the contents of one schematic file into another

2013-01-21 Thread Jacobo Aragunde Pérez
El 19/01/13 17:23, jp charras escribió: > Le 16/01/2013 12:18, Jacobo Aragunde Pérez a écrit : >> ... >> >> Make me know your opinion about the feature or any comments you have on >> the patch. >> >> > > Thanks. Thanks for reviewing :) > After

Re: [Kicad-developers] [PATCH] Log of opened and closed applications in KiCad launcher

2013-01-16 Thread Jacobo Aragunde Pérez
El 15/01/13 09:55, Jacobo Aragunde Pérez escribió: > ... > > I've checked that the only flag used in KiCad is wxEXEC_ASYNC, and it > doesn't have problems in Windows (in fact, it's the default flag when > you don't set anything). Moreover, there is one flag wh

[Kicad-developers] [PATCH] Append schematic: copy the contents of one schematic file into another

2013-01-16 Thread Jacobo Aragunde Pérez
Hi! With this patch you will be able to bring all the contents of an existing .sch file into the currently opened schematic document. This may be useful to reuse components from one sheet to another, specially graphical components. The feature has been added to File -> Append Schematic. It will i

Re: [Kicad-developers] [PATCH] Log of opened and closed applications in KiCad launcher

2013-01-15 Thread Jacobo Aragunde Pérez
El 14/01/13 14:15, Jacobo Aragunde Pérez escribió: > El 14/01/13 14:00, Miguel Angel Ajo Pelayo escribió: >> Hi Jacobo, thanks for the patch!, >> >> Doesn't look bad for me, but please check: >> > > Hello, thanks for the review :) > >>* You

Re: [Kicad-developers] [PATCH] Log of opened and closed applications in KiCad launcher

2013-01-14 Thread Jacobo Aragunde Pérez
El 14/01/13 14:00, Miguel Angel Ajo Pelayo escribió: > Hi Jacobo, thanks for the patch!, > > Doesn't look bad for me, but please check: > Hello, thanks for the review :) >* You removed the WINDOWS special case, does it work in Windows now > without removing > the "aFlags" ? > > -bool

Re: [Kicad-developers] Help building on F16

2013-01-09 Thread Jacobo Aragunde Pérez
Hi Rick, El 09/01/13 02:38, Rick Walker escribió: > > I've been trying to build kicad from source on a 64bit Fedora 16 > platform. I'm trying to use the official wx-widgets rpm files > that are released with Fedora. > > When I do "cd build; cmake ../" I get: > ... > > Any hints on where I shou

[Kicad-developers] [PATCH] Prevent Pcbnew from opening the same file twice

2013-01-04 Thread Jacobo Aragunde Pérez
El 04/01/13 13:20, jp charras escribió:> Le 03/01/2013 18:38, Jacobo Aragunde Pérez a écrit : >> Currently KiCad applications allow opening the same file more than once, >> and they don't check if the files have changed in disk before saving. As >> a consequence, there c

[Kicad-developers] [PATCH] Prevent Eeschema from opening the same file twice

2013-01-03 Thread Jacobo Aragunde Pérez
Currently KiCad applications allow opening the same file more than once, and they don't check if the files have changed in disk before saving. As a consequence, there can be situations where the user loses some data without notice. This patch uses wxSingleInstanceChecker to create a lock on the op

Re: [Kicad-developers] Append schematic feature in Eeschema

2013-01-02 Thread Jacobo Aragunde Pérez
El 02/01/13 11:43, jean-pierre charras escribió: > ... >> >> To fix (a) I was asking about the relation between .sch files, >> components and libraries. When I open a .sch file which uses components >> that are not in my loaded libraries, how does eeschema know the >> components definition? >> > So

Re: [Kicad-developers] Append schematic feature in Eeschema

2012-12-18 Thread Jacobo Aragunde Pérez
El 15/12/12 20:28, jp charras escribió: > Le 14/12/2012 10:16, Jacobo Aragunde Pérez a écrit : >>> I have noticed there is a feature in Pcbnew, "Append board", to add all >>> the components from a .brd file into the currently opened document. This >>>

Re: [Kicad-developers] Append schematic feature in Eeschema

2012-12-14 Thread Jacobo Aragunde Pérez
Hi again :) El 12/12/12 12:25, Jacobo Aragunde Pérez escribió: > > I have noticed there is a feature in Pcbnew, "Append board", to add all > the components from a .brd file into the currently opened document. This > feature doesn't exist in Eeschema but I thought it

[Kicad-developers] Append schematic feature in Eeschema

2012-12-12 Thread Jacobo Aragunde Pérez
Hi, I have noticed there is a feature in Pcbnew, "Append board", to add all the components from a .brd file into the currently opened document. This feature doesn't exist in Eeschema but I thought it would be useful there too. The attached patch adds this feature linked to a new entry in the "Fil