Hello community,

here is the log from the commit of package qhexedit2 for openSUSE:Factory 
checked in at 2016-08-03 11:45:17
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qhexedit2 (Old)
 and      /work/SRC/openSUSE:Factory/.qhexedit2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "qhexedit2"

Changes:
--------
--- /work/SRC/openSUSE:Factory/qhexedit2/qhexedit2.changes      2016-07-09 
09:22:50.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.qhexedit2.new/qhexedit2.changes 2016-08-03 
11:45:28.000000000 +0200
@@ -1,0 +2,7 @@
+Mon Aug  1 21:44:40 UTC 2016 - aloi...@gmx.com
+
+- Update to version 0.7.8
+  * Adjust include directory for qt5 in setup.py for Ubuntu 16.04
+  * Initialize values in constructor
+
+-------------------------------------------------------------------

Old:
----
  qhexedit2-0.7.7.tar.gz

New:
----
  qhexedit2-0.7.8.tar.gz

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

Other differences:
------------------
++++++ qhexedit2.spec ++++++
--- /var/tmp/diff_new_pack.OwJL7S/_old  2016-08-03 11:45:29.000000000 +0200
+++ /var/tmp/diff_new_pack.OwJL7S/_new  2016-08-03 11:45:29.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           qhexedit2
-Version:        0.7.7
+Version:        0.7.8
 Release:        0
 Summary:        Qt-based hex editor
 License:        LGPL-2.0

++++++ qhexedit2-0.7.7.tar.gz -> qhexedit2-0.7.8.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qhexedit2-0.7.7/doc/release.txt 
new/qhexedit2-0.7.8/doc/release.txt
--- old/qhexedit2-0.7.7/doc/release.txt 2016-04-14 19:15:41.000000000 +0200
+++ new/qhexedit2-0.7.8/doc/release.txt 2016-08-01 22:19:26.000000000 +0200
@@ -1,3 +1,8 @@
+Release 0.7.8, 2016-08-01
+-------------------------
+- Adjust include directory for qt5 in setup.py for Ubuntu 16.04
+- Initialize values in constructor
+
 Release 0.7.7, 2016-04-14
 -------------------------
 - Take horizontal scrolling position into account, when calculation cursor
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qhexedit2-0.7.7/setup.py new/qhexedit2-0.7.8/setup.py
--- old/qhexedit2-0.7.7/setup.py        2016-04-14 19:15:41.000000000 +0200
+++ new/qhexedit2-0.7.8/setup.py        2016-08-01 22:19:26.000000000 +0200
@@ -98,7 +98,7 @@
                                       lib + ".framework", "Headers")]
 else:
     if PyQt_Version == 'PyQt5':
-        for qt_inc_dir in ('/usr/include/qt', '/usr/include/qt5'):
+        for qt_inc_dir in ('/usr/include/qt', 
'/usr/include/x86_64-linux-gnu/qt5'):
             include_dirs.append(qt_inc_dir)
             include_dirs += [os.path.join(qt_inc_dir, lib) for lib in qt_libs]
         libraries = ["Qt5" + lib[2:] for lib in qt_libs]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qhexedit2-0.7.7/src/qhexedit.cpp 
new/qhexedit2-0.7.8/src/qhexedit.cpp
--- old/qhexedit2-0.7.7/src/qhexedit.cpp        2016-04-14 19:15:41.000000000 
+0200
+++ new/qhexedit2-0.7.8/src/qhexedit.cpp        2016-08-01 22:19:26.000000000 
+0200
@@ -14,6 +14,15 @@
 
 QHexEdit::QHexEdit(QWidget *parent) : QAbstractScrollArea(parent)
 {
+    _addressArea = true;
+    _addressWidth = 4;
+    _asciiArea = true;
+    _overwriteMode = true;
+    _highlighting = true;
+    _readOnly = false;
+    _cursorPosition = 0;
+    _lastEventSize = 0;
+
     _chunks = new Chunks();
     _undoStack = new UndoStack(_chunks, this);
 #ifdef Q_OS_WIN32
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/qhexedit2-0.7.7/src/qhexedit.h 
new/qhexedit2-0.7.8/src/qhexedit.h
--- old/qhexedit2-0.7.7/src/qhexedit.h  2016-04-14 19:15:41.000000000 +0200
+++ new/qhexedit2-0.7.8/src/qhexedit.h  2016-08-01 22:19:26.000000000 +0200
@@ -11,7 +11,7 @@
 /** \mainpage
 QHexEdit is a binary editor widget for Qt.
 
-\version Version 0.7.7
+\version Version 0.7.8
 \image html qhexedit.png
 */
 


Reply via email to