Hello community,

here is the log from the commit of package xed for openSUSE:Factory checked in 
at 2017-11-19 11:12:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xed (Old)
 and      /work/SRC/openSUSE:Factory/.xed.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xed"

Sun Nov 19 11:12:29 2017 rev:16 rq:542729 version:1.6.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/xed/xed.changes  2017-11-16 14:03:00.681283317 
+0100
+++ /work/SRC/openSUSE:Factory/.xed.new/xed.changes     2017-11-19 
11:12:52.456142902 +0100
@@ -1,0 +2,6 @@
+Sat Nov 18 00:00:12 UTC 2017 - sor.ale...@meowr.ru
+
+- Update to version 1.6.2:
+  * xed-status-combo-box: Simplify the widget heirarchy.
+
+-------------------------------------------------------------------

Old:
----
  xed-1.6.1.tar.gz

New:
----
  xed-1.6.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xed.spec ++++++
--- /var/tmp/diff_new_pack.MvKirU/_old  2017-11-19 11:12:53.696097692 +0100
+++ /var/tmp/diff_new_pack.MvKirU/_new  2017-11-19 11:12:53.700097547 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           xed
-Version:        1.6.1
+Version:        1.6.2
 Release:        0
 Summary:        A text editor with highlighting
 License:        GPL-2.0+

++++++ xed-1.6.1.tar.gz -> xed-1.6.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xed-1.6.1/configure.ac new/xed-1.6.2/configure.ac
--- old/xed-1.6.1/configure.ac  2017-11-15 14:11:47.000000000 +0100
+++ new/xed-1.6.2/configure.ac  2017-11-17 11:42:50.000000000 +0100
@@ -4,7 +4,7 @@
 
 m4_define(xed_major_version, 1)
 m4_define(xed_minor_version, 6)
-m4_define(xed_micro_version, 1)
+m4_define(xed_micro_version, 2)
 m4_define(xed_version, xed_major_version.xed_minor_version.xed_micro_version)
 
 AC_INIT([xed], [xed_version],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xed-1.6.1/debian/changelog 
new/xed-1.6.2/debian/changelog
--- old/xed-1.6.1/debian/changelog      2017-11-15 14:11:47.000000000 +0100
+++ new/xed-1.6.2/debian/changelog      2017-11-17 11:42:50.000000000 +0100
@@ -1,3 +1,10 @@
+xed (1.6.2) sylvia; urgency=medium
+
+  [ JosephMcc ]
+  * xed-status-combo-box: Simplify the widget heirarchy (#185)
+
+ -- Clement Lefebvre <r...@linuxmint.com>  Fri, 17 Nov 2017 10:42:21 +0000
+
 xed (1.6.1) sylvia; urgency=medium
 
   * l10n: Fix localization in TextSize plugin
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xed-1.6.1/xed/xed-status-combo-box.c 
new/xed-1.6.2/xed/xed-status-combo-box.c
--- old/xed-1.6.1/xed/xed-status-combo-box.c    2017-11-15 14:11:47.000000000 
+0100
+++ new/xed-1.6.2/xed/xed-status-combo-box.c    2017-11-17 11:42:50.000000000 
+0100
@@ -30,7 +30,6 @@
 
 struct _XedStatusComboBoxPrivate
 {
-    GtkWidget *frame;
     GtkWidget *button;
     GtkWidget *hbox;
     GtkWidget *label;
@@ -284,23 +283,6 @@
 }
 
 static void
-set_shadow_type (XedStatusComboBox *combo)
-{
-    GtkStyleContext *context;
-    GtkShadowType shadow_type;
-    GtkWidget *statusbar;
-
-    /* This is a hack needed to use the shadow type of a statusbar */
-    statusbar = gtk_statusbar_new ();
-    context = gtk_widget_get_style_context (statusbar);
-
-    gtk_style_context_get_style (context, "shadow-type", &shadow_type, NULL);
-    gtk_frame_set_shadow_type (GTK_FRAME (combo->priv->frame), shadow_type);
-
-    gtk_widget_destroy (statusbar);
-}
-
-static void
 xed_status_combo_box_init (XedStatusComboBox *self)
 {
     GtkStyleContext *context;
@@ -309,20 +291,14 @@
 
     gtk_event_box_set_visible_window (GTK_EVENT_BOX (self), TRUE);
 
-    self->priv->frame = gtk_frame_new (NULL);
-    gtk_widget_show (self->priv->frame);
-
     self->priv->button = gtk_toggle_button_new ();
     gtk_button_set_relief (GTK_BUTTON (self->priv->button), GTK_RELIEF_NONE);
     gtk_widget_show (self->priv->button);
 
-    set_shadow_type (self);
-
     self->priv->hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 3);
     gtk_widget_show (self->priv->hbox);
 
-    gtk_container_add (GTK_CONTAINER (self), self->priv->frame);
-    gtk_container_add (GTK_CONTAINER (self->priv->frame), self->priv->button);
+    gtk_container_add (GTK_CONTAINER (self), self->priv->button);
     gtk_container_add (GTK_CONTAINER (self->priv->button), self->priv->hbox);
 
     self->priv->label = gtk_label_new ("");
@@ -361,10 +337,6 @@
     gtk_style_context_add_provider (context,
                                     GTK_STYLE_PROVIDER 
(XED_STATUS_COMBO_BOX_GET_CLASS (self)->priv->css),
                                     GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
-    context = gtk_widget_get_style_context (GTK_WIDGET (self->priv->frame));
-    gtk_style_context_add_provider (context,
-                                    GTK_STYLE_PROVIDER 
(XED_STATUS_COMBO_BOX_GET_CLASS (self)->priv->css),
-                                    GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
 }
 
 /* public functions */


Reply via email to