[Vala] wip/transform branch in git

2014-06-25 Thread Tadeusz Szczyrba
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, Several questions: 1) when could I expect ( if should I ) the wip/transform branch to be merged with master? 2) where should I report bugs (regressions) in wip/transform branch - to regular vala bugzilla? The idea of separate

Re: [Vala] wip/transform branch in git

2014-06-25 Thread Luca Bruno
On 25/06/2014 11:31, Tadeusz Szczyrba wrote: Hello, Several questions: 1) when could I expect ( if should I ) the wip/transform branch to be merged with master? When it's ready :) 2) where should I report bugs (regressions) in wip/transform branch - to regular vala bugzilla? Since it's a

Re: [Vala] wip/transform branch in git

2014-06-25 Thread Tadeusz Szczyrba
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 25.06.2014 11:37, Luca Bruno wrote: So I will answer from another side: what is the indicator, that wip is or is not ready? So today's evening I'll open bug for WIP/Transform bugs in vala bugzilla. And maybe should I ask next question: when

Re: [Vala] New tiny helper for unit testing

2014-06-25 Thread Tal Hadad
Looks very good! Keep going Date: Fri, 13 Jun 2014 15:58:02 +0900 From: yusuke.ishida@gmail.com To: vala-list@gnome.org Subject: [Vala] New tiny helper for unit testing Hi all, I've create a new tiny helper 'vtth' for unit testing. Please try it. https://github.com/y-ishida/vtth

Re: [Vala] wip/transform branch in git

2014-06-25 Thread Luca Bruno
On 25/06/2014 14:20, Tadeusz Szczyrba wrote: So I will answer from another side: what is the indicator, that wip is or is not ready? So today's evening I'll open bug for WIP/Transform bugs in vala bugzilla. And maybe should I ask next question: when one prepares patch for particular bug

[Vala] cairo binding bug?

2014-06-25 Thread Nor Jaidi Tuah
According to http://www.cairographics.org/manual/cairo-Paths.html, The path may be either the return value from one of cairo_copy_path() or cairo_copy_path_flat() or it may be constructed manually. But, trying to construct a path manually, i.e., var path = new Cairo.Path (); gives a

Re: [Vala] cairo binding bug?

2014-06-25 Thread yannick inizan
Not a bug, Path is a compact class and haven't constructor. So when you'll have a Context, do this : Cairo.Context cr; .. Cairo.Path path = cr.copy_path(); regards ;) 2014-06-26 3:24 GMT+02:00 Nor Jaidi Tuah norjaidi.t...@ubd.edu.bn: According to