Hello community, here is the log from the commit of package minder for openSUSE:Factory checked in at 2019-07-05 13:48:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/minder (Old) and /work/SRC/openSUSE:Factory/.minder.new.4615 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "minder" Fri Jul 5 13:48:57 2019 rev:8 rq:713474 version:1.3.1 Changes: -------- --- /work/SRC/openSUSE:Factory/minder/minder.changes 2019-06-12 13:12:20.848939472 +0200 +++ /work/SRC/openSUSE:Factory/.minder.new.4615/minder.changes 2019-07-05 13:48:59.209478168 +0200 @@ -1,0 +2,9 @@ +Tue Jun 11 16:59:09 UTC 2019 - Alexei Podvalsky <[email protected]> + +- Update to 1.3.1: + * Merge branch 'master' of github.com:phase1geo/Minder + * Updates for new release. + * Fixing export issue. + * Fixing release information + +------------------------------------------------------------------- Old: ---- Minder-1.3.0.tar.gz New: ---- Minder-1.3.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ minder.spec ++++++ --- /var/tmp/diff_new_pack.ztzV0a/_old 2019-07-05 13:49:00.069479494 +0200 +++ /var/tmp/diff_new_pack.ztzV0a/_new 2019-07-05 13:49:00.077479506 +0200 @@ -17,7 +17,7 @@ Name: minder -Version: 1.3.0 +Version: 1.3.1 Release: 0 Summary: Mind-mapping app License: GPL-3.0-or-later ++++++ Minder-1.3.0.tar.gz -> Minder-1.3.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Minder-1.3.0/data/com.github.phase1geo.minder.appdata.xml new/Minder-1.3.1/data/com.github.phase1geo.minder.appdata.xml --- old/Minder-1.3.0/data/com.github.phase1geo.minder.appdata.xml 2019-05-19 15:11:32.000000000 +0200 +++ new/Minder-1.3.1/data/com.github.phase1geo.minder.appdata.xml 2019-06-04 01:28:24.000000000 +0200 @@ -88,9 +88,16 @@ <content_attribute id="money-gambling">none</content_attribute> </content_rating> <releases> - <release version="1.3" date="2019-05-17"> + <release version="1.3.1" data="2019-06-02"> <description> - <p>Let's stay connected!</p> + <ul> + <li>Fixing issue with export functions.</li> + </ul> + </description> + </release> + <release version="1.3.0" date="2019-05-20"> + <description> + <p>Let's make a connection!</p> <ul> <li>Added support for creating a visual connection between any two nodes.</li> <li>Added ability to show/hide all connections in the map.</li> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Minder-1.3.0/data/com.github.phase1geo.minder.appdata.xml.in new/Minder-1.3.1/data/com.github.phase1geo.minder.appdata.xml.in --- old/Minder-1.3.0/data/com.github.phase1geo.minder.appdata.xml.in 2019-05-19 15:11:32.000000000 +0200 +++ new/Minder-1.3.1/data/com.github.phase1geo.minder.appdata.xml.in 2019-06-04 01:28:24.000000000 +0200 @@ -79,7 +79,14 @@ <content_attribute id="money-gambling">none</content_attribute> </content_rating> <releases> - <release version="1.3" date="2019-05-17"> + <release version="1.3.1" data="2019-06-02"> + <description> + <ul> + <li>Fixing issue with export functions.</li> + </ul> + </description> + </release> + <release version="1.3.0" date="2019-05-20"> <description> <p>Let's stay connected!</p> <ul> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Minder-1.3.0/src/Application.vala new/Minder-1.3.1/src/Application.vala --- old/Minder-1.3.0/src/Application.vala 2019-05-19 15:11:32.000000000 +0200 +++ new/Minder-1.3.1/src/Application.vala 2019-06-04 01:28:24.000000000 +0200 @@ -122,7 +122,7 @@ /* If the version was specified, output it and then exit */ if( version ) { - stdout.printf( "1.3\n" ); + stdout.printf( "1.3.1\n" ); Process.exit( 0 ); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Minder-1.3.0/src/MainWindow.vala new/Minder-1.3.1/src/MainWindow.vala --- old/Minder-1.3.0/src/MainWindow.vala 2019-05-19 15:11:32.000000000 +0200 +++ new/Minder-1.3.1/src/MainWindow.vala 2019-06-04 01:28:24.000000000 +0200 @@ -938,7 +938,9 @@ /* Exports the model to various formats */ private void action_export() { - FileChooserNative dialog = new FileChooserNative( _( "Export As" ), this, FileChooserAction.SAVE, _( "Export" ), _( "Cancel" ) ); + // FileChooserNative dialog = new FileChooserNative( _( "Export As" ), this, FileChooserAction.SAVE, _( "Export" ), _( "Cancel" ) ); + FileChooserDialog dialog = new FileChooserDialog( _( "Export As" ), this, FileChooserAction.SAVE, + _( "Cancel" ), ResponseType.CANCEL, _( "Export" ), ResponseType.ACCEPT ); /* BMP */ FileFilter bmp_filter = new FileFilter(); @@ -1038,6 +1040,8 @@ } } + dialog.close(); + } /*
