Releases: Simsys/qhexedit2
Releases · Simsys/qhexedit2
Minor bug fixes
Release 0.7.5, 2016-04-07
- Cursor position in insert mode (when deleting last byte) corrected
- resetSelection() now clips to max data size
- setSelection() now clips to max data size
Help MSVC and some old compilers, justify properties, minor bugfix
Release 0.7.4, 2015-09-17
- Include some get/set functions in the definition of Q_PROPERTY, change lib version to 2.1.0
- Definition of property "data" should mention signal "dataChanged"
- Replace these "and" and "or" with their counterparts "&&" and "||"
- LONG_LONG_MAX should not be used
- Wrap 64-bit literals with Q_INT64_C() …
- Initialize _readOnly property explicitly
Support PyQt5
Release 0.7.3, 2015-06-01
- Get ready for PyQt5
- Use palette colors instead of inventing new colors if possible
Change lib version to 2.0.0
Release 0.7.2, 2015-05-19
- Change library version to 2.0.0, because the ABI has incompatible changes
Change lib version to 1.1.0
Release 0.7.1, 2015-05-19
- Change library version to 1.1.0, because the ABI has changed
QHexEdit is now based on QIODevice, can edit large files
Release 0.7.0, 2015-05-18
- QHexEdit is now based on QIODevice. The data shown is not buffered in memory. QHexEdit can show now very big files (> 2 gigabytes) without any problems
- QHexEdit has also a QByteArray based, backward compatible (as far as possible) interface for convenience
- Changes on the data will be stored in copied memory chunks, the base file will only read (QIODevice::ReadOnly)
- QHexEdit is now directly derived from QAbstractScrollArea
- The Widget calculates now all dimensions dynamically, hence small or big fonts will be shown properly on all screens
- You can use also proportional fonts, though it is not recommended
- Paint event needs very low cpu activity, when editor is in idle mode without user actions. Only the section of the data is rendered, which is shown to the user
- Several bugfixes.
Bugfix
Features, Bugfixes
Release 0.6.6, 2015-05-01
- Feature Adding drag and drop
- Feature Adding toolbar buttons for undo, redo and find
- Bugfix Selection is allways shown to end of file
Features, Bugfixes
Release 0.6.5, 2015-04-16
- Feature Python Example ready for Python 2 and 3
- Bugfix Handling overwriteMode Flag
Features, Bugfixes
Release 0.6.4, 2015-04-09
- Feature Ready for Qt5
- Feature Show Selection in ASCII Part
- Bugfix Selecting last item in a row
- Bugfix Scroll Bar not shown when extra data inserted
- Bugfix address area doesn't update when changed ouside
- Bugfix Error while saving (Example)