Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gns3-gui for openSUSE:Factory checked in at 2021-12-21 18:40:40 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gns3-gui (Old) and /work/SRC/openSUSE:Factory/.gns3-gui.new.2520 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gns3-gui" Tue Dec 21 18:40:40 2021 rev:13 rq:941777 version:2.2.28 Changes: -------- --- /work/SRC/openSUSE:Factory/gns3-gui/gns3-gui.changes 2021-10-18 22:02:08.534091404 +0200 +++ /work/SRC/openSUSE:Factory/.gns3-gui.new.2520/gns3-gui.changes 2021-12-21 18:41:08.653901448 +0100 @@ -1,0 +2,13 @@ +Mon Dec 20 14:30:36 UTC 2021 - Martin Hauke <mar...@gmx.de> + +- Update to version 2.2.28 + * Fixed drawLine called with float arguments. + * Fixed dead VIX API link. +- Update to version 2.2.27 + * Fix symbols in "Symbol selection" dialog are not placed in + alphabetical order. + * Fix link duplicates in topology summary. + * chore : use --no-cache-dir flag to pip in dockerfiles to save + space. + +------------------------------------------------------------------- Old: ---- gns3-gui-2.2.26.tar.gz New: ---- gns3-gui-2.2.28.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gns3-gui.spec ++++++ --- /var/tmp/diff_new_pack.8kKiSd/_old 2021-12-21 18:41:09.173901914 +0100 +++ /var/tmp/diff_new_pack.8kKiSd/_new 2021-12-21 18:41:09.177901918 +0100 @@ -17,7 +17,7 @@ Name: gns3-gui -Version: 2.2.26 +Version: 2.2.28 Release: 0 Summary: GNS3 graphical interface for the GNS3 server License: GPL-3.0-or-later ++++++ gns3-gui-2.2.26.tar.gz -> gns3-gui-2.2.28.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gns3-gui-2.2.26/CHANGELOG new/gns3-gui-2.2.28/CHANGELOG --- old/gns3-gui-2.2.26/CHANGELOG 2021-10-08 12:32:04.000000000 +0200 +++ new/gns3-gui-2.2.28/CHANGELOG 2021-12-15 04:24:24.000000000 +0100 @@ -1,5 +1,16 @@ # Change Log +## 2.2.28 15/12/2021 + +* Fixed drawLine called with float arguments +* Fixed dead VIX API link + +## 2.2.27 12/11/2021 + +* Fix symbols in "Symbol selection" dialog are not placed in alphabetical order. Fixes #3245 +* Fix links duplicates in topology summary. Fixes #3251 +* chore : use --no-cache-dir flag to pip in dockerfiles to save space + ## 2.2.26 08/10/2021 * Upgrade embedded Python to version 3.7 in Windows package diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gns3-gui-2.2.26/Dockerfile new/gns3-gui-2.2.28/Dockerfile --- old/gns3-gui-2.2.26/Dockerfile 2021-10-08 12:32:04.000000000 +0200 +++ new/gns3-gui-2.2.28/Dockerfile 2021-12-15 04:24:24.000000000 +0100 @@ -8,7 +8,7 @@ ADD dev-requirements.txt /dev-requirements.txt ADD requirements.txt /requirements.txt -RUN pip3 install -r /dev-requirements.txt +RUN pip3 install --no-cache-dir -r /dev-requirements.txt ADD . /src WORKDIR /src diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gns3-gui-2.2.26/gns3/crash_report.py new/gns3-gui-2.2.28/gns3/crash_report.py --- old/gns3-gui-2.2.26/gns3/crash_report.py 2021-10-08 12:32:04.000000000 +0200 +++ new/gns3-gui-2.2.28/gns3/crash_report.py 2021-12-15 04:24:24.000000000 +0100 @@ -51,7 +51,7 @@ Report crash to a third party service """ - DSN = "https://803fefdf04db46ee9f4f245a53e58e70:91e2e200ee32481a976937182357e...@o19455.ingest.sentry.io/38506" + DSN = "https://afea6dfc1b52427daa40387216e31764:2aeb84def9164bfaa2136d2684892...@o19455.ingest.sentry.io/38506" _instance = None def __init__(self): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gns3-gui-2.2.26/gns3/dialogs/setup_wizard.py new/gns3-gui-2.2.28/gns3/dialogs/setup_wizard.py --- old/gns3-gui-2.2.26/gns3/dialogs/setup_wizard.py 2021-10-08 12:32:04.000000000 +0200 +++ new/gns3-gui-2.2.28/gns3/dialogs/setup_wizard.py 2021-12-15 04:24:24.000000000 +0100 @@ -127,7 +127,7 @@ from gns3.modules import VMware settings = VMware.instance().settings() if not os.path.exists(settings["vmrun_path"]): - QtWidgets.QMessageBox.critical(self, "VMware", "VMware vmrun tool could not be found, VMware or the VIX API (required for VMware player) is probably not installed. You can download it from https://www.vmware.com/support/developer/vix-api/. After installation you need to restart GNS3.") + QtWidgets.QMessageBox.critical(self, "VMware", "VMware vmrun tool could not be found, VMware or the VIX API (required for VMware player) is probably not installed. You can download it from https://customerconnect.vmware.com/downloads/details?downloadGroup=PLAYER-1400-VIX1170&productId=687. After installation you need to restart GNS3.") return self._refreshVMListSlot() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gns3-gui-2.2.26/gns3/dialogs/symbol_selection_dialog.py new/gns3-gui-2.2.28/gns3/dialogs/symbol_selection_dialog.py --- old/gns3-gui-2.2.26/gns3/dialogs/symbol_selection_dialog.py 2021-10-08 12:32:04.000000000 +0200 +++ new/gns3-gui-2.2.28/gns3/dialogs/symbol_selection_dialog.py 2021-12-15 04:24:24.000000000 +0100 @@ -108,6 +108,9 @@ item.setIcon(0, icon) Controller.instance().getStatic(symbol.url(), qpartial(render, item)) + + for parent in self._parents.values(): + parent.sortChildren(0, QtCore.Qt.AscendingOrder) self.adjustSize() def _searchTextChangedSlot(self, text): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gns3-gui-2.2.26/gns3/graphics_view.py new/gns3-gui-2.2.28/gns3/graphics_view.py --- old/gns3-gui-2.2.26/gns3/graphics_view.py 2021-10-08 12:32:04.000000000 +0200 +++ new/gns3-gui-2.2.28/gns3/graphics_view.py 2021-12-15 04:24:24.000000000 +0100 @@ -326,6 +326,8 @@ # connect the signals that let the graphics view knows about events such as # a new link creation or deletion. if self._topology.addLink(link): + source_node.addLink(link) + destination_node.addLink(link) link.add_link_signal.connect(self.addLinkSlot) link.delete_link_signal.connect(self.deleteLinkSlot) @@ -1661,11 +1663,11 @@ x = left while x < rect.right(): - painter.drawLine(x, rect.top(), x, rect.bottom()) + painter.drawLine(x, int(rect.top()), x, int(rect.bottom())) x += grid y = top while y < rect.bottom(): - painter.drawLine(rect.left(), y, rect.right(), y) + painter.drawLine(int(rect.left()), y, int(rect.right()), y) y += grid painter.restore() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gns3-gui-2.2.26/gns3/link.py new/gns3-gui-2.2.28/gns3/link.py --- old/gns3-gui-2.2.26/gns3/link.py 2021-10-08 12:32:04.000000000 +0200 +++ new/gns3-gui-2.2.28/gns3/link.py 2021-12-15 04:24:24.000000000 +0100 @@ -91,8 +91,6 @@ self._nodes = [] self._link_style = {} - self._source_node.addLink(self) - self._destination_node.addLink(self) body = self._prepareParams() if self._link_id: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gns3-gui-2.2.26/gns3/version.py new/gns3-gui-2.2.28/gns3/version.py --- old/gns3-gui-2.2.26/gns3/version.py 2021-10-08 12:32:04.000000000 +0200 +++ new/gns3-gui-2.2.28/gns3/version.py 2021-12-15 04:24:24.000000000 +0100 @@ -23,8 +23,8 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "2.2.26" -__version_info__ = (2, 2, 26, 0) +__version__ = "2.2.28" +__version_info__ = (2, 2, 28, 0) if "dev" in __version__: try: