[Vala] [ANNOUNCE] Vala 0.14.0 - Compiler for the GObject type system

2011-09-17 Thread Jürg Billeter
We are pleased to announce version 0.14.0 of Vala, a compiler for the GObject type system. Vala 0.14.0 is now available for download at: http://download.gnome.org/sources/vala/0.14/ Changes since 0.13.4 * Bug fixes and binding updates. Vala is a programming language that aims to bring

[Vala] [Re] SQLite3 in Windows

2011-09-17 Thread Leoncio Gil
Hello, Although seems that there is no one interested in Vala inside Windows, I will post the solution to the problem. After search and try a lot I have solved the problem. 1.- Download the MinGW (the get-inst one). Yes, It's come with valac for Windows, but it is needed a tool that it doesn't

[Vala] Testing generic parameters for numeric type? For method implementation?

2011-09-17 Thread Charles Hixson
How should one test a generic parameter to determine whether or not it is of a numeric type? Should I just go through a long If tree matching it's type name against all of the predefined numeric types? Is there some way to determine whether a generic parameter responds to to_string()? At run