Re: RELEASED: GXml 0.4.0

2014-09-23 Thread Daniel Espinosa
New fast track 0.4.1 release for GXml. This version fixes compilation with Vala 0.26. Many thanks to Jürg Billeter, for his comments and advise about this problems. 2014-09-23 14:47 GMT-05:00 Daniel Espinosa : > I'm pleased to announce immediately availability of new version of GXml. > > ==

RELEASED: GXml 0.4.0

2014-09-23 Thread Daniel Espinosa
I'm pleased to announce immediately availability of new version of GXml. = Version 0.4.0 = - Added Examples (Richard Schwarting) - Improved Build system (Daniel Espinosa) - Windows crosscopilation support (Daniel Espinosa) - Added/Improved Serialization Framework (Richard S

Re: use gio with serialport

2014-09-23 Thread Göran Hasse
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 This task is infact MUTCH more complicated than you can imagine. First you have to program the serial chip to send and receive bytes when sertain amount of bytes have been put in its buffer. The serial device driver can also been programmed to timeout

Re: use gio with serialport

2014-09-23 Thread Nicola Fontana
Il Tue, 23 Sep 2014 15:48:45 +0800 Matrix scrisse: > the qustion is how read the buf as line by line ? > ... > and then i use g_buffered_input_stream_set_buffer_size to change the > buffer size to 1 byte Hi, if you are looking for a 1 byte termination (as you are when reading line by line) you

convert gtktable to gtkgrid

2014-09-23 Thread Andrea Zagli
i have many glade files made for gtk2 with gtktable in gtk3 gtktable is deprecated in favour of gtkgrid is there an easy way to convert gtktable to gtkgrid? thanks in advance ___ gtk-list mailing list gtk-list@gnome.org https://mail.gnome.org/mailman/

use gio with serialport

2014-09-23 Thread Matrix
Hi, i'm writing an app which used to auto test AT commands... i open fd with the /dev/ttyS0, and pass it to g_unix_input_stream_new the qustion is how read the buf as line by line ? because of the buffer size is 4K, if directly use g_data_input_stream_read_line, it will block forever, and t