Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package qpwgraph for openSUSE:Factory 
checked in at 2022-06-15 00:32:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qpwgraph (Old)
 and      /work/SRC/openSUSE:Factory/.qpwgraph.new.1548 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qpwgraph"

Wed Jun 15 00:32:11 2022 rev:7 rq:982498 version:0.3.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/qpwgraph/qpwgraph.changes        2022-05-30 
12:44:38.056445141 +0200
+++ /work/SRC/openSUSE:Factory/.qpwgraph.new.1548/qpwgraph.changes      
2022-06-15 00:32:13.618520099 +0200
@@ -1,0 +2,7 @@
+Mon Jun 13 16:00:31 UTC 2022 - Alexei Sorokin <[email protected]>
+
+- Update to version 0.3.2:
+  * Fix initial nodes layout positioning, now back to the former
+    spiraled away from the centre.
+
+-------------------------------------------------------------------

Old:
----
  qpwgraph-v0.3.1.tar.bz2

New:
----
  qpwgraph-v0.3.2.tar.bz2

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

Other differences:
------------------
++++++ qpwgraph.spec ++++++
--- /var/tmp/diff_new_pack.yByDvs/_old  2022-06-15 00:32:14.486521374 +0200
+++ /var/tmp/diff_new_pack.yByDvs/_new  2022-06-15 00:32:14.490521380 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           qpwgraph
-Version:        0.3.1
+Version:        0.3.2
 Release:        0
 Summary:        PipeWire Graph Qt GUI Interface
 License:        GPL-2.0-or-later

++++++ qpwgraph-v0.3.1.tar.bz2 -> qpwgraph-v0.3.2.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qpwgraph-v0.3.1/ChangeLog 
new/qpwgraph-v0.3.2/ChangeLog
--- old/qpwgraph-v0.3.1/ChangeLog       2022-05-29 11:14:34.000000000 +0200
+++ new/qpwgraph-v0.3.2/ChangeLog       2022-06-13 09:11:54.000000000 +0200
@@ -2,6 +2,12 @@
 --------------------------------------------
 
 
+0.3.3  2022-06-13  A tenth beta release.
+
+- Fixed initial nodes layout positioning, now back to the former
+  spiraled away from the center.
+
+
 0.3.1  2022-05-29  A ninth beta release.
 
 - Only ask to quit an activated patchbay when actually quitting
@@ -16,7 +22,7 @@
 - Fixed document dirtiness (modified state) when making connections
   and/or disconnections on a clear and new patchbay.
 - Attempt to save and possibly restore different node positions and
-  aliases when forner original node name is non-unique.
+  aliases when former original node name is non-unique.
 
 
 0.2.6  2022-04-23  A seventh beta release.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/qpwgraph-v0.3.1/src/appdata/org.rncbc.qpwgraph.metainfo.xml 
new/qpwgraph-v0.3.2/src/appdata/org.rncbc.qpwgraph.metainfo.xml
--- old/qpwgraph-v0.3.1/src/appdata/org.rncbc.qpwgraph.metainfo.xml     
2022-05-29 11:14:34.000000000 +0200
+++ new/qpwgraph-v0.3.2/src/appdata/org.rncbc.qpwgraph.metainfo.xml     
2022-06-13 09:11:54.000000000 +0200
@@ -37,7 +37,7 @@
  <developer_name>rncbc aka. Rui Nuno Capela</developer_name>
  <update_contact>[email protected]</update_contact>
  <releases>
-  <release version="0.3.1" date="2022-05-29" urgency="low" />
+  <release version="0.3.2" date="2022-06-13" urgency="low" />
  </releases>
  <content_rating type="oars-1.0"/>
 </component>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qpwgraph-v0.3.1/src/qpwgraph_canvas.cpp 
new/qpwgraph-v0.3.2/src/qpwgraph_canvas.cpp
--- old/qpwgraph-v0.3.1/src/qpwgraph_canvas.cpp 2022-05-29 11:14:34.000000000 
+0200
+++ new/qpwgraph-v0.3.2/src/qpwgraph_canvas.cpp 2022-06-13 09:11:54.000000000 
+0200
@@ -1120,9 +1120,10 @@
                = m_settings->value('/' + node_key).toPointF();
        m_settings->endGroup();
 
-       if (!node_pos.isNull())
-               node->setPos(node_pos);
+       if (node_pos.isNull())
+               return false;
 
+       node->setPos(node_pos);
        return true;
 }
 

Reply via email to