Re: [Kicad-developers] KiCad hackathon invitation

2016-11-07 Thread Wayne Stambaugh
Hey Orson,

I think that the wxXml stuff is based on expat.  I know that wxWidgets
includes expat in the source tree which is used if expat is not found
when configuring a wxWidgets build.

Expat is not a show stopper, I just want to be sure we aren't adding
unnecessary dependencies.

Cheers,

Wayne

On 11/7/2016 1:09 PM, Maciej Sumiński wrote:
> Hi Wayne,
> 
> During the hackathon we met programmers experienced with expat, who
> asked if they could use the library. As expat is a dependency for
> numerous packages (from what I see, it is required by wxWidgets as well
> [1,2]), I figured it should not cause any significant problems and it is
> just one step towards completely getting rid of boost.
> 
> Is expat a show stopper? If so, I should notify people working on the
> Eagle plugin as soon as possible.
> 
> Regards,
> Orson
> 
> 1. https://packages.debian.org/stretch/libwxbase3.0-0v5
> 2.
> https://github.com/msys2/MINGW-packages/blob/master/mingw-w64-wxwidgets/PKGBUILD
> 
> On 11/07/2016 06:44 PM, Wayne Stambaugh wrote:
>> On 11/2/2016 6:16 PM, Maciej Sumiński wrote:
>>> Hi there,
>>>
>>> We have already finished the hackathon at e-HAL in Sao Paulo. We would
>>> like thank all the participants for the effort they put in KiCad
>>> development. While at the moment none of the features we worked is ready
>>> to merge, the current status is:
>>>
>>> * SVG importer (thanks to Janito) [1]
>>>   - done: abstraction layer to handle different vector graphic formats,
>>> plugin to handle SVG format
>>>   - to-do: fix the UI, handle scaling (at least in the import dialog),
>>> optionally: importing graphics as filled polygons
>>>
>>> * Eagle import plugin (thanks to Till and Henrique) [2]
>>>   - in progress: refactor pcbnew plugin to use expat instead of
>>> boost::xml_property_tree, schematics plugin
>>
>> Isn't this just creating a new dependency?  Did you look at wxXml?  Why
>> expat?  I would like to to discuss this further when you get a chance.
>>
>> Wayne
>>
>>>
>>> * Object Inspector [3]
>>>   - done: basic introspection system, GUI for property editor, basic
>>> description of BOARD_ITEMs
>>>   - to be done: clean up the code, create full description for classes,
>>> validators, reorganize properties order, renaming properties depending
>>> on the parent class
>>>
>>> I am aware about a few bug fix attempts too, so there is still a chance
>>> for more contributions. I will be absent until 14th November, but once I
>>> am back, I am going review the code and merge as much as possible.
>>>
>>> Taking the opportunity, we would like to express gratitude to our
>>> hosts. It was a great event, thank you for organizing it!
>>>
>>> Tom, Javier & Orson
>>>
>>> 1. https://github.com/jvff/kicad-source-mirror/tree/svg_import
>>> 2. https://gist.github.com/hdante/b86454b6d2b3c36b257c5e8475a4cf02
>>> 3. https://code.launchpad.net/~orsonmmz/kicad/+git/kicad/+ref/properties
>>>
>>>
>>>
>>> On 10/12/2016 06:16 PM, Maciej Sumiński wrote:
 Hi there,

 At the end of this month there will be another KiCad hackathon, hosted
 by e-HAL [1] and supported by Garoa hackerspace [2]. We have prepared a
 few blueprints [3] for the features that we would like to develop during
 the event.

 If you find any of them interesting and feel like helping the project,
 join us at #kicad or #garoa (irc.freenode.net) during the last weekend
 of October. If you have another idea for a hackathon subject, do not
 hesitate to propose it!

 Regards,
 Orson

 1. https://e-hal.org.br/
 2. https://garoa.net.br/
 3. http://www.ohwr.org/projects/cern-kicad/wiki/Hackathon-ehal



 ___
 Mailing list: https://launchpad.net/~kicad-developers
 Post to : kicad-developers@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~kicad-developers
 More help   : https://help.launchpad.net/ListHelp

>>>
>>>
>>>
>>> ___
>>> Mailing list: https://launchpad.net/~kicad-developers
>>> Post to : kicad-developers@lists.launchpad.net
>>> Unsubscribe : https://launchpad.net/~kicad-developers
>>> More help   : https://help.launchpad.net/ListHelp
>>>
>>
>> ___
>> Mailing list: https://launchpad.net/~kicad-developers
>> Post to : kicad-developers@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~kicad-developers
>> More help   : https://help.launchpad.net/ListHelp
>>
> 

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] KiCad hackathon invitation

2016-11-07 Thread Maciej Sumiński
Hi Wayne,

During the hackathon we met programmers experienced with expat, who
asked if they could use the library. As expat is a dependency for
numerous packages (from what I see, it is required by wxWidgets as well
[1,2]), I figured it should not cause any significant problems and it is
just one step towards completely getting rid of boost.

Is expat a show stopper? If so, I should notify people working on the
Eagle plugin as soon as possible.

Regards,
Orson

1. https://packages.debian.org/stretch/libwxbase3.0-0v5
2.
https://github.com/msys2/MINGW-packages/blob/master/mingw-w64-wxwidgets/PKGBUILD

On 11/07/2016 06:44 PM, Wayne Stambaugh wrote:
> On 11/2/2016 6:16 PM, Maciej Sumiński wrote:
>> Hi there,
>>
>> We have already finished the hackathon at e-HAL in Sao Paulo. We would
>> like thank all the participants for the effort they put in KiCad
>> development. While at the moment none of the features we worked is ready
>> to merge, the current status is:
>>
>> * SVG importer (thanks to Janito) [1]
>>   - done: abstraction layer to handle different vector graphic formats,
>> plugin to handle SVG format
>>   - to-do: fix the UI, handle scaling (at least in the import dialog),
>> optionally: importing graphics as filled polygons
>>
>> * Eagle import plugin (thanks to Till and Henrique) [2]
>>   - in progress: refactor pcbnew plugin to use expat instead of
>> boost::xml_property_tree, schematics plugin
> 
> Isn't this just creating a new dependency?  Did you look at wxXml?  Why
> expat?  I would like to to discuss this further when you get a chance.
> 
> Wayne
> 
>>
>> * Object Inspector [3]
>>   - done: basic introspection system, GUI for property editor, basic
>> description of BOARD_ITEMs
>>   - to be done: clean up the code, create full description for classes,
>> validators, reorganize properties order, renaming properties depending
>> on the parent class
>>
>> I am aware about a few bug fix attempts too, so there is still a chance
>> for more contributions. I will be absent until 14th November, but once I
>> am back, I am going review the code and merge as much as possible.
>>
>> Taking the opportunity, we would like to express gratitude to our
>> hosts. It was a great event, thank you for organizing it!
>>
>> Tom, Javier & Orson
>>
>> 1. https://github.com/jvff/kicad-source-mirror/tree/svg_import
>> 2. https://gist.github.com/hdante/b86454b6d2b3c36b257c5e8475a4cf02
>> 3. https://code.launchpad.net/~orsonmmz/kicad/+git/kicad/+ref/properties
>>
>>
>>
>> On 10/12/2016 06:16 PM, Maciej Sumiński wrote:
>>> Hi there,
>>>
>>> At the end of this month there will be another KiCad hackathon, hosted
>>> by e-HAL [1] and supported by Garoa hackerspace [2]. We have prepared a
>>> few blueprints [3] for the features that we would like to develop during
>>> the event.
>>>
>>> If you find any of them interesting and feel like helping the project,
>>> join us at #kicad or #garoa (irc.freenode.net) during the last weekend
>>> of October. If you have another idea for a hackathon subject, do not
>>> hesitate to propose it!
>>>
>>> Regards,
>>> Orson
>>>
>>> 1. https://e-hal.org.br/
>>> 2. https://garoa.net.br/
>>> 3. http://www.ohwr.org/projects/cern-kicad/wiki/Hackathon-ehal
>>>
>>>
>>>
>>> ___
>>> Mailing list: https://launchpad.net/~kicad-developers
>>> Post to : kicad-developers@lists.launchpad.net
>>> Unsubscribe : https://launchpad.net/~kicad-developers
>>> More help   : https://help.launchpad.net/ListHelp
>>>
>>
>>
>>
>> ___
>> Mailing list: https://launchpad.net/~kicad-developers
>> Post to : kicad-developers@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~kicad-developers
>> More help   : https://help.launchpad.net/ListHelp
>>
> 
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp
> 



signature.asc
Description: OpenPGP digital signature
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] KiCad hackathon invitation

2016-11-07 Thread Wayne Stambaugh
On 11/2/2016 6:16 PM, Maciej Sumiński wrote:
> Hi there,
> 
> We have already finished the hackathon at e-HAL in Sao Paulo. We would
> like thank all the participants for the effort they put in KiCad
> development. While at the moment none of the features we worked is ready
> to merge, the current status is:
> 
> * SVG importer (thanks to Janito) [1]
>   - done: abstraction layer to handle different vector graphic formats,
> plugin to handle SVG format
>   - to-do: fix the UI, handle scaling (at least in the import dialog),
> optionally: importing graphics as filled polygons
> 
> * Eagle import plugin (thanks to Till and Henrique) [2]
>   - in progress: refactor pcbnew plugin to use expat instead of
> boost::xml_property_tree, schematics plugin

Isn't this just creating a new dependency?  Did you look at wxXml?  Why
expat?  I would like to to discuss this further when you get a chance.

Wayne

> 
> * Object Inspector [3]
>   - done: basic introspection system, GUI for property editor, basic
> description of BOARD_ITEMs
>   - to be done: clean up the code, create full description for classes,
> validators, reorganize properties order, renaming properties depending
> on the parent class
> 
> I am aware about a few bug fix attempts too, so there is still a chance
> for more contributions. I will be absent until 14th November, but once I
> am back, I am going review the code and merge as much as possible.
> 
> Taking the opportunity, we would like to express gratitude to our
> hosts. It was a great event, thank you for organizing it!
> 
> Tom, Javier & Orson
> 
> 1. https://github.com/jvff/kicad-source-mirror/tree/svg_import
> 2. https://gist.github.com/hdante/b86454b6d2b3c36b257c5e8475a4cf02
> 3. https://code.launchpad.net/~orsonmmz/kicad/+git/kicad/+ref/properties
> 
> 
> 
> On 10/12/2016 06:16 PM, Maciej Sumiński wrote:
>> Hi there,
>>
>> At the end of this month there will be another KiCad hackathon, hosted
>> by e-HAL [1] and supported by Garoa hackerspace [2]. We have prepared a
>> few blueprints [3] for the features that we would like to develop during
>> the event.
>>
>> If you find any of them interesting and feel like helping the project,
>> join us at #kicad or #garoa (irc.freenode.net) during the last weekend
>> of October. If you have another idea for a hackathon subject, do not
>> hesitate to propose it!
>>
>> Regards,
>> Orson
>>
>> 1. https://e-hal.org.br/
>> 2. https://garoa.net.br/
>> 3. http://www.ohwr.org/projects/cern-kicad/wiki/Hackathon-ehal
>>
>>
>>
>> ___
>> Mailing list: https://launchpad.net/~kicad-developers
>> Post to : kicad-developers@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~kicad-developers
>> More help   : https://help.launchpad.net/ListHelp
>>
> 
> 
> 
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp
> 

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] KiCad hackathon invitation

2016-11-06 Thread Maciej Sumiński
Hi Oswaldo,

Sure, it would be a contribution we would really appreciate. Thank you
in advance!

Regards,
Orson

On 11/06/2016 11:31 AM, Oswaldo F. Filho wrote:
> Hi,
> 
> I had been trying to implement the selector tools to different options of
> canvas in hackathon at e-HAL.
> 
> Please, may I continue do this task and submit to review and commit?
> 
> Ragards.
> Oswaldo Fratini Filho.
> 
> 2016-11-02 20:16 GMT-02:00 Maciej Sumiński :
> 
>> Hi there,
>>
>> We have already finished the hackathon at e-HAL in Sao Paulo. We would
>> like thank all the participants for the effort they put in KiCad
>> development. While at the moment none of the features we worked is ready
>> to merge, the current status is:
>>
>> * SVG importer (thanks to Janito) [1]
>>   - done: abstraction layer to handle different vector graphic formats,
>> plugin to handle SVG format
>>   - to-do: fix the UI, handle scaling (at least in the import dialog),
>> optionally: importing graphics as filled polygons
>>
>> * Eagle import plugin (thanks to Till and Henrique) [2]
>>   - in progress: refactor pcbnew plugin to use expat instead of
>> boost::xml_property_tree, schematics plugin
>>
>> * Object Inspector [3]
>>   - done: basic introspection system, GUI for property editor, basic
>> description of BOARD_ITEMs
>>   - to be done: clean up the code, create full description for classes,
>> validators, reorganize properties order, renaming properties depending
>> on the parent class
>>
>> I am aware about a few bug fix attempts too, so there is still a chance
>> for more contributions. I will be absent until 14th November, but once I
>> am back, I am going review the code and merge as much as possible.
>>
>> Taking the opportunity, we would like to express gratitude to our
>> hosts. It was a great event, thank you for organizing it!
>>
>> Tom, Javier & Orson
>>
>> 1. https://github.com/jvff/kicad-source-mirror/tree/svg_import
>> 2. https://gist.github.com/hdante/b86454b6d2b3c36b257c5e8475a4cf02
>> 3. https://code.launchpad.net/~orsonmmz/kicad/+git/kicad/+ref/properties
>>
>>
>>
>> On 10/12/2016 06:16 PM, Maciej Sumiński wrote:
>>> Hi there,
>>>
>>> At the end of this month there will be another KiCad hackathon, hosted
>>> by e-HAL [1] and supported by Garoa hackerspace [2]. We have prepared a
>>> few blueprints [3] for the features that we would like to develop during
>>> the event.
>>>
>>> If you find any of them interesting and feel like helping the project,
>>> join us at #kicad or #garoa (irc.freenode.net) during the last weekend
>>> of October. If you have another idea for a hackathon subject, do not
>>> hesitate to propose it!
>>>
>>> Regards,
>>> Orson
>>>
>>> 1. https://e-hal.org.br/
>>> 2. https://garoa.net.br/
>>> 3. http://www.ohwr.org/projects/cern-kicad/wiki/Hackathon-ehal
>>>
>>>
>>>
>>> ___
>>> Mailing list: https://launchpad.net/~kicad-developers
>>> Post to : kicad-developers@lists.launchpad.net
>>> Unsubscribe : https://launchpad.net/~kicad-developers
>>> More help   : https://help.launchpad.net/ListHelp
>>>
>>
>>
>> ___
>> Mailing list: https://launchpad.net/~kicad-developers
>> Post to : kicad-developers@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~kicad-developers
>> More help   : https://help.launchpad.net/ListHelp
>>
>>
> 



signature.asc
Description: OpenPGP digital signature
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] KiCad hackathon invitation

2016-11-02 Thread Maciej Sumiński
Hi there,

We have already finished the hackathon at e-HAL in Sao Paulo. We would
like thank all the participants for the effort they put in KiCad
development. While at the moment none of the features we worked is ready
to merge, the current status is:

* SVG importer (thanks to Janito) [1]
  - done: abstraction layer to handle different vector graphic formats,
plugin to handle SVG format
  - to-do: fix the UI, handle scaling (at least in the import dialog),
optionally: importing graphics as filled polygons

* Eagle import plugin (thanks to Till and Henrique) [2]
  - in progress: refactor pcbnew plugin to use expat instead of
boost::xml_property_tree, schematics plugin

* Object Inspector [3]
  - done: basic introspection system, GUI for property editor, basic
description of BOARD_ITEMs
  - to be done: clean up the code, create full description for classes,
validators, reorganize properties order, renaming properties depending
on the parent class

I am aware about a few bug fix attempts too, so there is still a chance
for more contributions. I will be absent until 14th November, but once I
am back, I am going review the code and merge as much as possible.

Taking the opportunity, we would like to express gratitude to our
hosts. It was a great event, thank you for organizing it!

Tom, Javier & Orson

1. https://github.com/jvff/kicad-source-mirror/tree/svg_import
2. https://gist.github.com/hdante/b86454b6d2b3c36b257c5e8475a4cf02
3. https://code.launchpad.net/~orsonmmz/kicad/+git/kicad/+ref/properties



On 10/12/2016 06:16 PM, Maciej Sumiński wrote:
> Hi there,
> 
> At the end of this month there will be another KiCad hackathon, hosted
> by e-HAL [1] and supported by Garoa hackerspace [2]. We have prepared a
> few blueprints [3] for the features that we would like to develop during
> the event.
> 
> If you find any of them interesting and feel like helping the project,
> join us at #kicad or #garoa (irc.freenode.net) during the last weekend
> of October. If you have another idea for a hackathon subject, do not
> hesitate to propose it!
> 
> Regards,
> Orson
> 
> 1. https://e-hal.org.br/
> 2. https://garoa.net.br/
> 3. http://www.ohwr.org/projects/cern-kicad/wiki/Hackathon-ehal
> 
> 
> 
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp
> 



signature.asc
Description: OpenPGP digital signature
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] KiCad hackathon invitation

2016-10-19 Thread Maciej Sumiński
Just a gentle reminder for people interested in the hackathon.

Cheers,
Orson

On 10/17/2016 01:24 PM, Maciej Sumiński wrote:
> We would like to have an IRC meeting on Wednesday evening at 22:00 CEST,
> #ki...@freenode.net to discuss the details. If you would like to
> participate in the hackathon, feel invited to join us.
> 
> Regards,
> Orson
> 
> On 10/12/2016 06:25 PM, Maciej Sumiński wrote:
>> On 10/12/2016 06:16 PM, Maciej Sumiński wrote:
>>> Hi there,
>>>
>>> At the end of this month there will be another KiCad hackathon, hosted
>>> by e-HAL [1] and supported by Garoa hackerspace [2]. We have prepared a
>>> few blueprints [3] for the features that we would like to develop during
>>> the event.
>>>
>>> If you find any of them interesting and feel like helping the project,
>>> join us at #kicad or #garoa (irc.freenode.net) during the last weekend
>>> of October. If you have another idea for a hackathon subject, do not
>>> hesitate to propose it!
>>>
>>> Regards,
>>> Orson
>>>
>>> 1. https://e-hal.org.br/
>>> 2. https://garoa.net.br/
>>> 3. http://www.ohwr.org/projects/cern-kicad/wiki/Hackathon-ehal
>>
>> Apparently I have missed the most important link here, which is the
>> official hackathon website:
>>
>> https://e-hal.org.br/node/31
>>
>> Cheers,
>> Orson
> 
> 
> 
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp
> 



signature.asc
Description: OpenPGP digital signature
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] KiCad hackathon invitation

2016-10-17 Thread Maciej Sumiński
We would like to have an IRC meeting on Wednesday evening at 22:00 CEST,
#ki...@freenode.net to discuss the details. If you would like to
participate in the hackathon, feel invited to join us.

Regards,
Orson

On 10/12/2016 06:25 PM, Maciej Sumiński wrote:
> On 10/12/2016 06:16 PM, Maciej Sumiński wrote:
>> Hi there,
>>
>> At the end of this month there will be another KiCad hackathon, hosted
>> by e-HAL [1] and supported by Garoa hackerspace [2]. We have prepared a
>> few blueprints [3] for the features that we would like to develop during
>> the event.
>>
>> If you find any of them interesting and feel like helping the project,
>> join us at #kicad or #garoa (irc.freenode.net) during the last weekend
>> of October. If you have another idea for a hackathon subject, do not
>> hesitate to propose it!
>>
>> Regards,
>> Orson
>>
>> 1. https://e-hal.org.br/
>> 2. https://garoa.net.br/
>> 3. http://www.ohwr.org/projects/cern-kicad/wiki/Hackathon-ehal
> 
> Apparently I have missed the most important link here, which is the
> official hackathon website:
> 
> https://e-hal.org.br/node/31
> 
> Cheers,
> Orson



signature.asc
Description: OpenPGP digital signature
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] KiCad hackathon invitation

2016-10-13 Thread Kaspar Emanuel
On 12 October 2016 at 18:04, Mário Luzeiro  wrote:

Hope you can work on the SVG importer! I miss that feature.
> I tried to use Inkscape ->Export DXF->Import with KiCad but it doesn't
> work properly :/
>
Check out svg2mod  in the meantime. It
works well for me.
​
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] KiCad hackathon invitation

2016-10-12 Thread Vesa Solonen
12/10/16, 23:14, Tomasz Wlostowski kirjoitti:
> On 12.10.2016 21:47, Vesa Solonen wrote:
>> https://bugs.launchpad.net/kicad/+bug/1443330
>>
> That's for the flight to Sao Paulo (+ a bunch of other minor bugs)

Excellent, thanks already :))

>> Round length matching meanders working with non-default values would be
>> nice too.
> 
> What do you mean by non-default?

The default trace width and spacing seems to work better in meandering
with default tuner parameters. The slightly wider ones create errors
like the ones near cursor shown in the attached screenshot. The obstacle
avoidance is another (GND-via), but not as difficult to work around. The
minor one is sizing for spacings as it seems to work with trace centerlines.

There are a couple of references [1], [2] that may be of help regarding
sizing constraints design.

-Vesa


[1] http://www.ti.com/lit/an/spraar7f/spraar7f.pdf
[2] http://nxp.com/documents/application_note/AN10798.pdf

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] KiCad hackathon invitation

2016-10-12 Thread Tomasz Wlostowski
On 12.10.2016 21:47, Vesa Solonen wrote:
> https://bugs.launchpad.net/kicad/+bug/1443330
> 
That's for the flight to Sao Paulo (+ a bunch of other minor bugs)

> Round length matching meanders working with non-default values would be
> nice too.

What do you mean by non-default?

Tom


___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] KiCad hackathon invitation

2016-10-12 Thread Vesa Solonen
12/10/16, 19:25, Maciej Sumiński kirjoitti:

>> of October. If you have another idea for a hackathon subject, do not
>> hesitate to propose it!

https://bugs.launchpad.net/kicad/+bug/1443330

Round length matching meanders working with non-default values would be
nice too.

I'm jumping for the SVG importer already ;)

-Vesa


___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] KiCad hackathon invitation

2016-10-12 Thread Mário Luzeiro
>. We have prepared a few blueprints [3] for the features that we would like to 
>develop during the event.

Hope you can work on the SVG importer! I miss that feature.
I tried to use Inkscape ->Export DXF->Import with KiCad but it doesn't work 
properly :/

Mario Luzeiro
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] KiCad hackathon invitation

2016-10-12 Thread Maciej Sumiński
On 10/12/2016 06:16 PM, Maciej Sumiński wrote:
> Hi there,
> 
> At the end of this month there will be another KiCad hackathon, hosted
> by e-HAL [1] and supported by Garoa hackerspace [2]. We have prepared a
> few blueprints [3] for the features that we would like to develop during
> the event.
> 
> If you find any of them interesting and feel like helping the project,
> join us at #kicad or #garoa (irc.freenode.net) during the last weekend
> of October. If you have another idea for a hackathon subject, do not
> hesitate to propose it!
> 
> Regards,
> Orson
> 
> 1. https://e-hal.org.br/
> 2. https://garoa.net.br/
> 3. http://www.ohwr.org/projects/cern-kicad/wiki/Hackathon-ehal

Apparently I have missed the most important link here, which is the
official hackathon website:

https://e-hal.org.br/node/31

Cheers,
Orson



signature.asc
Description: OpenPGP digital signature
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


[Kicad-developers] KiCad hackathon invitation

2016-10-12 Thread Maciej Sumiński
Hi there,

At the end of this month there will be another KiCad hackathon, hosted
by e-HAL [1] and supported by Garoa hackerspace [2]. We have prepared a
few blueprints [3] for the features that we would like to develop during
the event.

If you find any of them interesting and feel like helping the project,
join us at #kicad or #garoa (irc.freenode.net) during the last weekend
of October. If you have another idea for a hackathon subject, do not
hesitate to propose it!

Regards,
Orson

1. https://e-hal.org.br/
2. https://garoa.net.br/
3. http://www.ohwr.org/projects/cern-kicad/wiki/Hackathon-ehal



signature.asc
Description: OpenPGP digital signature
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp