Vala 0.3.3
It’s release time again. Yesterday we’ve released Vala 0.3.3. Tarballs are available from the GNOME FTP servers.
- Support for overriding default method handlers of signals.
See custom GTK+ Widget example - Improvements to D-Bus service support
- Parser for Genie
- Documentation and binding updates
- Many bug fixes and performance improvements
Thanks a lot to all the people helping out and have fun with the new version! For the following two releases we will focus on GObject introspection hacking to make it easy to write great bindings for many languages.
June 4th, 2008 at 11:07
Great news! Thank you!
I love vala.
June 4th, 2008 at 12:35
Thanks Jürg.
June 4th, 2008 at 15:06
I hope someone write a really pythonic vala dialect because genie definitely is not pythonic.
June 4th, 2008 at 15:26
ac,
I doubt you could write something more pythonic than say the boo language and genie is not far off from boo.
June 5th, 2008 at 16:19
Is there a way to manually manage memory and/or embed asm inside?
June 5th, 2008 at 16:29
You can manually manage memory by using raw pointers in Vala. Inline assembler is not supported. However, you can declare a method as `extern’ in the Vala source code and implement it in a .c file where you can use inline assembler.