2018-08-01 Daniel P. Berrangé Update NEWS for 0.8.0 release Pull in latest keycodemapdb content 2018-07-23 Daniel P. Berrangé Remove unused variable from configure script Allow gtk2 build to be disabled 2018-07-16 Victor Toso build-sys: Disable -Wcast-function-type Previous commit fixed one -Wcast-function-type but the remaining ones are related to g_source_set_callback() which cannot be solved with intermediate wrappers as the callback signature will vary depending on the source it's called on. This commit suppress the following: | vncconnection.c: In function 'g_io_wait': | vncconnection.c:343:32: warning: cast between incompatible function types from | 'gboolean (*)(GSocket *, GIOCondition, void *)' ... to | 'gboolean (*)(void *)' ... | | g_source_set_callback(src, (GSourceFunc)g_io_wait_helper, coroutine_self(), NULL); | ^ | | vncconnection.c: In function 'g_io_wait_interruptable': | vncconnection.c:379:32: warning: cast between incompatible function types from | 'gboolean (*)(GSocket *, GIOCondition, void *)' ... to | 'gboolean (*)(void *)' ... | | g_source_set_callback(src, (GSourceFunc)g_io_wait_helper, | ^ Fix -Wcast-function-type on vnc_base_framebuffer_rgb24_blt_* The y axis is uint16 on vnc_base_framebuffer_rgb24_blt_func() 2018-07-16 Daniel P. Berrangé Delete old manual python binding All applications should use the GObject Introspection dynamic binding