* updated r2 to 5ec6cde4 (this fixes heap corruption and null pointer dereferences while starting iaito)
* fix build (no need to update iaito_win32 because no changes were made to the api)
Adds a QShortcut to refresh the disasm editor. To make this work the
default parameter of the slot MemoryWidget::refreshDisasm() had to be
defined in the header/at declaration point, else the connect failed.
* Fixed a lot of warnings and removed waste code
* Fixed more warnings and removed more waste code
* restore XrefsDialog::updateLabels
This function is used in memorywidget.cpp
* Fix crash on invalid asm/hex
Added nullptr checks because the called functions can (and will)
return NULL
* Call disassemble when hex2asm is clicked
* Change order on != comparison
* Fix missing whitspace
* cleanup: get the include and lib path from r2
* clean up of the main project file
* check if r2 is available
* corrected r2 binary name m(
* qmake error if libr not found
Because the project won't build if r2 or the paths are not found emit
an error
* removed comments and unused variable
* Add 'make install' for AppImage
* Use 'make install' in travis build
* Register custom fonts once
The QHelpers functions registered the fonts on every call, which is not
necessary.
- added anonymous namespace for internal linkage
- added helper function for font registration
* Move helper functions from class to namespace
Fixes a possible memleak, because up until now the QHelpers object was
allocated with new without a parent QObject or following delete.
* Removed unused functions
* Check if file exist before opening
When opening a file writing its path directly on the textfield, it wasn't checking if exists (also it wasn't adding it to recent list)
* Update newfiledialog.cpp