[Vala] When is 0.12 coming?

2011-02-03 Thread Adam Dingle
Is there a plan to release Vala 0.12 along with GNOME 3 in early April? Or will 0.12 arrive later, or is the expected release timeframe simply unknown? adam ___ vala-list mailing list vala-list@gnome.org

Re: [Vala] When is 0.12 coming?

2011-02-03 Thread Jürg Billeter
Hi Adam, On Thu, 2011-02-03 at 10:12 -0800, Adam Dingle wrote: Is there a plan to release Vala 0.12 along with GNOME 3 in early April? Or will 0.12 arrive later, or is the expected release timeframe simply unknown? Yes, Vala 0.12 will be released in time for GNOME 3. Jürg

[Vala] A few newbie's questions

2011-02-03 Thread Giulio Paci
Hi to all! A few days ago I discovered vala and decided to give it a try, as it seems to have almost all the features that I wanted (C code generation, non-object oriented code allowed, easy utf-8 string manipulation, regexp support, glib integration, easy access to database, fine tuning

Re: [Vala] A few newbie's questions

2011-02-03 Thread Sandino Flores Moreno
Regarding question 1: == Check the next source code: https://github.com/tigrux/gst-plugin-omap4videodecbin/blob/master/gst/gstomap4videodecbin.vala There you can see a line like these: public const Gst.PluginDesc gst_plugin_desc = { ... } That's what you are missing in your

[Vala] interfaces and properties

2011-02-03 Thread Raul Gutierrez Segales
Hi, Why is it that one *doesn't* have to use override when implementing a property declared on an interface? I.e.: interface Animal { public abstract GenericArraystring names_of_bones { get; set; } } class Dog : Object, Animal { public GenericArraystring names_of_bones { get; set; } }

Re: [Vala] A few newbie's questions

2011-02-03 Thread Sandino Flores Moreno
To use PACKAGE and VERSION declare them as extern in your vala source code. Sorry, I pasted the man page of gets but FileStream.gets is the wrapper of fgets. char *fgets(char *s, int size, FILE *stream); fgets() reads in at most one less than size characters from stream and

Re: [Vala] A few newbie's questions

2011-02-03 Thread Giulio Paci
Hi Sandino, thank you for your very quick reply, Il 03/02/2011 23:23, Sandino Flores Moreno ha scritto: On Thu, Feb 3, 2011 at 3:27 PM, Giulio Paci giuliop...@gmail.com wrote: 1) I tried to create a gstreamer plugin following the Gstreamer Plugin Writer's Guide