summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS16
-rw-r--r--capplet/gsm-properties-dialog.c2
-rw-r--r--configure.ac2
-rw-r--r--data/session-properties.ui2
-rw-r--r--mate-session/gsm-presence.c2
5 files changed, 19 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index c51a670..f951be4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,20 @@
+### mate-session-manager 1.28.0
+
+ * Translations update
+ * Revert "gsm-manager: use g_settings_schema_source_lookup ()"
+ * Add system desktop files item to automatic startup support
+ * main: fix double free on gl_renderer
+ * g_key_file_save_to_file () is available from glib 2.40
+ * gsm-manager: use g_settings_schema_source_lookup ()
+ * gsm-inhibit-dialog: Fix -Wimplicit-int-float-conversion warnings
+ * Fix build warnings about missing field initializer
+ * Fix implicit conversion changes signedness: 'gboolean' to 'guint'
+ * mate-session: fix memory leak
+ * configure.ac: The macro 'AC_HELP_STRING' is obsolete
+
### mate-session-manager 1.27.0
- * tx: sync with transifex
+ * Translations update
* tx: update resource
* tx: migrate config file
* Fix memory leaks (#284)
diff --git a/capplet/gsm-properties-dialog.c b/capplet/gsm-properties-dialog.c
index 96a0dc3..d05d564 100644
--- a/capplet/gsm-properties-dialog.c
+++ b/capplet/gsm-properties-dialog.c
@@ -894,7 +894,7 @@ gsm_properties_dialog_init (GsmPropertiesDialog *dialog)
gtk_box_pack_start (GTK_BOX (content_area), widget, TRUE, TRUE, 0);
gtk_window_set_resizable (GTK_WINDOW (dialog), TRUE);
- gtk_container_set_border_width (GTK_CONTAINER (dialog), 6);
+ gtk_container_set_border_width (GTK_CONTAINER (dialog), 5);
gtk_box_set_spacing (GTK_BOX (content_area), 2);
gtk_window_set_icon_name (GTK_WINDOW (dialog), "mate-session-properties");
gtk_window_set_title (GTK_WINDOW (dialog), _("Startup Applications Preferences"));
diff --git a/configure.ac b/configure.ac
index 635b180..fd7f6a0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([mate-session-manager], [1.27.0], [https://mate-desktop.org/])
+AC_INIT([mate-session-manager], [1.28.0], [https://mate-desktop.org/])
AC_CONFIG_SRCDIR([mate-session])
AC_CONFIG_HEADERS([config.h])
diff --git a/data/session-properties.ui b/data/session-properties.ui
index fe2060e..e9ddb7b 100644
--- a/data/session-properties.ui
+++ b/data/session-properties.ui
@@ -20,7 +20,7 @@
<object class="GtkNotebook" id="main-notebook">
<property name="visible">True</property>
<property name="can_focus">True</property>
- <property name="border_width">6</property>
+ <property name="border_width">5</property>
<child>
<object class="GtkBox" id="vbox1">
<property name="visible">True</property>
diff --git a/mate-session/gsm-presence.c b/mate-session/gsm-presence.c
index 7fc2304..4c28542 100644
--- a/mate-session/gsm-presence.c
+++ b/mate-session/gsm-presence.c
@@ -201,7 +201,7 @@ on_screensaver_proxy_destroy (GObject *proxy,
{
GsmPresencePrivate *priv;
- g_warning ("Detected that screensaver has left the bus");
+ g_info ("Detected that screensaver has left the bus");
priv = gsm_presence_get_instance_private (presence);
priv->screensaver_proxy = NULL;