[Spice-commits] 2 commits - gtk/spice-proxy.c NEWS

Marc-André Lureau elmarco at kemper.freedesktop.org
Wed Feb 6 06:59:41 PST 2013


 NEWS              |   13 +++++++++++++
 gtk/spice-proxy.c |    9 +++++++++
 2 files changed, 22 insertions(+)

New commits:
commit c91b0488f4e1664b2a0a75f3542b5705f46fa290
Author: Marc-André Lureau <marcandre.lureau at redhat.com>
Date:   Wed Feb 6 15:40:01 2013 +0100

    Release v0.17
    
    v0.17
    =====
    
    - Update spice-common with fedora 875348, 826036 fixes
    - Multi-monitor fixes (avoid monitor order shuffling, fix mouse offset
      if monitor 0 is not at +0+0 and let agent do monitor offset)
    - Add support for VD_AGENT_CAP_SPARSE_MONITORS_CONFIG
    - Add controller & session "proxy" properties
    - Add drag and drop file copy support to send file to guest, you will
      need capable agent to use that feature. Adds spice_main_file_copy_async()
    - Introspection fixes
    - Build fixes

diff --git a/NEWS b/NEWS
index a46718a..a4249fe 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,16 @@
+v0.17
+=====
+
+- Update spice-common with fedora 875348, 826036 fixes
+- Multi-monitor fixes (avoid monitor order shuffling, fix mouse offset
+  if monitor 0 is not at +0+0 and let agent do monitor offset)
+- Add support for VD_AGENT_CAP_SPARSE_MONITORS_CONFIG
+- Add controller & session "proxy" properties
+- Add drag and drop file copy support to send file to guest, you will
+  need capable agent to use that feature. Adds spice_main_file_copy_async()
+- Introspection fixes
+- Build fixes
+
 v0.16
 =====
 
commit 84866854f3369184140c60bb218fdd8e407f43f6
Author: Marc-André Lureau <marcandre.lureau at redhat.com>
Date:   Wed Feb 6 15:25:04 2013 +0100

    spice-proxy: explicitely mark as internal

diff --git a/gtk/spice-proxy.c b/gtk/spice-proxy.c
index 581f030..55c9023 100644
--- a/gtk/spice-proxy.c
+++ b/gtk/spice-proxy.c
@@ -39,6 +39,7 @@ enum  {
     SPICE_PROXY_PORT
 };
 
+G_GNUC_INTERNAL
 SpiceProxy* spice_proxy_new(void)
 {
     SpiceProxy * self = NULL;
@@ -46,6 +47,7 @@ SpiceProxy* spice_proxy_new(void)
     return self;
 }
 
+G_GNUC_INTERNAL
 gboolean spice_proxy_parse(SpiceProxy *self, const gchar *uri, GError **error)
 {
     gboolean success = FALSE;
@@ -92,12 +94,14 @@ end:
     return success;
 }
 
+G_GNUC_INTERNAL
 const gchar* spice_proxy_get_protocol(SpiceProxy *self)
 {
     g_return_val_if_fail(SPICE_IS_PROXY(self), NULL);
     return self->priv->protocol;
 }
 
+G_GNUC_INTERNAL
 void spice_proxy_set_protocol(SpiceProxy *self, const gchar *value)
 {
     g_return_if_fail(SPICE_IS_PROXY(self));
@@ -107,6 +111,7 @@ void spice_proxy_set_protocol(SpiceProxy *self, const gchar *value)
     g_object_notify((GObject *)self, "protocol");
 }
 
+G_GNUC_INTERNAL
 const gchar* spice_proxy_get_hostname(SpiceProxy *self)
 {
     g_return_val_if_fail(SPICE_IS_PROXY(self), NULL);
@@ -114,6 +119,7 @@ const gchar* spice_proxy_get_hostname(SpiceProxy *self)
 }
 
 
+G_GNUC_INTERNAL
 void spice_proxy_set_hostname(SpiceProxy *self, const gchar *value)
 {
     g_return_if_fail(SPICE_IS_PROXY(self));
@@ -123,12 +129,14 @@ void spice_proxy_set_hostname(SpiceProxy *self, const gchar *value)
     g_object_notify((GObject *)self, "hostname");
 }
 
+G_GNUC_INTERNAL
 guint spice_proxy_get_port(SpiceProxy *self)
 {
     g_return_val_if_fail(SPICE_IS_PROXY(self), 0);
     return self->priv->port;
 }
 
+G_GNUC_INTERNAL
 void spice_proxy_set_port(SpiceProxy *self, guint port)
 {
     g_return_if_fail(SPICE_IS_PROXY(self));
@@ -235,6 +243,7 @@ static void spice_proxy_class_init(SpiceProxyClass *klass)
                                                        G_PARAM_READWRITE));
 }
 
+G_GNUC_INTERNAL
 gchar* spice_proxy_to_string(SpiceProxy* self)
 {
     SpiceProxyPrivate *p;


More information about the Spice-commits mailing list