Hello community,

here is the log from the commit of package quilter for openSUSE:Factory checked 
in at 2019-10-09 15:19:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/quilter (Old)
 and      /work/SRC/openSUSE:Factory/.quilter.new.2352 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "quilter"

Wed Oct  9 15:19:32 2019 rev:20 rq:736303 version:2.0.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/quilter/quilter.changes  2019-09-11 
10:33:33.575328174 +0200
+++ /work/SRC/openSUSE:Factory/.quilter.new.2352/quilter.changes        
2019-10-09 15:19:33.640482335 +0200
@@ -1,0 +2,6 @@
+Tue Oct  1 20:53:30 UTC 2019 - Alexei Podvalsky <[email protected]>
+
+- Update to 2.0.1:
+  * small fix for maximize problems
+
+-------------------------------------------------------------------

Old:
----
  quilter-2.0.0.tar.gz

New:
----
  quilter-2.0.1.tar.gz

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

Other differences:
------------------
++++++ quilter.spec ++++++
--- /var/tmp/diff_new_pack.OC01qu/_old  2019-10-09 15:19:34.056481263 +0200
+++ /var/tmp/diff_new_pack.OC01qu/_new  2019-10-09 15:19:34.060481252 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           quilter
-Version:        2.0.0
+Version:        2.0.1
 Release:        0
 Summary:        Writing application
 License:        GPL-3.0-only
@@ -32,7 +32,7 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  vala
 BuildRequires:  pkgconfig(gobject-2.0)
-BuildRequires:  pkgconfig(granite) >= 0.5
+BuildRequires:  pkgconfig(granite) >= 5.2.3
 BuildRequires:  pkgconfig(gtk+-3.0)
 BuildRequires:  pkgconfig(gtksourceview-3.0)
 BuildRequires:  pkgconfig(gtkspell3-3.0)

++++++ quilter-2.0.0.tar.gz -> quilter-2.0.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/quilter-2.0.0/data/com.github.lainsce.quilter.appdata.xml.in 
new/quilter-2.0.1/data/com.github.lainsce.quilter.appdata.xml.in
--- old/quilter-2.0.0/data/com.github.lainsce.quilter.appdata.xml.in    
2019-08-28 01:24:51.000000000 +0200
+++ new/quilter-2.0.1/data/com.github.lainsce.quilter.appdata.xml.in    
2019-09-28 06:59:58.000000000 +0200
@@ -55,6 +55,14 @@
         <content_attribute id="money-gambling">none</content_attribute>
     </content_rating>
     <releases>
+        <release version="2.0.1" date="2019-09-30">
+         <description>
+            <p>Release: Minimal Maximize Madness</p>
+            <ul>
+                <li>Fixed: Maximization problems in certain setups.</li>
+            </ul>
+         </description>
+        </release>
         <release version="2.0.0" date="2019-08-30">
          <description>
             <p>Release: Layout Lambada</p>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/quilter-2.0.0/meson.build 
new/quilter-2.0.1/meson.build
--- old/quilter-2.0.0/meson.build       2019-08-28 01:24:51.000000000 +0200
+++ new/quilter-2.0.1/meson.build       2019-09-28 06:59:58.000000000 +0200
@@ -1,6 +1,6 @@
 # Name our project
 project('com.github.lainsce.quilter', ['vala', 'c'],
-    version: '2.0.0'
+    version: '2.0.1'
 )
 
 # Import main lib files
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/quilter-2.0.0/src/MainWindow.vala 
new/quilter-2.0.1/src/MainWindow.vala
--- old/quilter-2.0.0/src/MainWindow.vala       2019-08-28 01:24:51.000000000 
+0200
+++ new/quilter-2.0.1/src/MainWindow.vala       2019-09-28 06:59:58.000000000 
+0200
@@ -21,7 +21,8 @@
 using Granite.Services;
 
 namespace Quilter {
-    public class MainWindow : Gtk.Window {
+    public class MainWindow : Gtk.ApplicationWindow {
+
         public Widgets.StatusBar statusbar;
         public Widgets.SideBar sidebar;
         public Widgets.SearchBar searchbar;
@@ -64,6 +65,7 @@
                 if (settings.fullscreen) {
                     fullscreen ();
                     settings.statusbar = false;
+                   settings.sidebar = false;
                     var buffer_context = edit_view_content.get_style_context 
();
                     buffer_context.add_class ("full-text");
                     buffer_context.remove_class ("small-text");
@@ -82,9 +84,7 @@
         public MainWindow (Gtk.Application application) {
             Object (application: application,
                     resizable: true,
-                    title: _("Quilter"),
-                    height_request: 600,
-                    width_request: 700);
+                    title: _("Quilter"));
 
             weak Gtk.IconTheme default_theme = Gtk.IconTheme.get_default ();
             default_theme.add_resource_path ("/com/github/lainsce/quilter");
@@ -359,6 +359,7 @@
             }
 
             this.window_position = Gtk.WindowPosition.CENTER;
+            this.set_size_request (600, 700);
         }
 
 #if VALA_0_42


Reply via email to