mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 19:36:11 +00:00
Changes for 1.3 release
This commit is contained in:
parent
4cc5e49a24
commit
8849f25a8d
@ -1,4 +1,4 @@
|
|||||||
version: '1.2-git-{build}'
|
version: '1.3-git-{build}'
|
||||||
skip_tags: true
|
skip_tags: true
|
||||||
image: 'Visual Studio 2015'
|
image: 'Visual Studio 2015'
|
||||||
clone_depth: 1
|
clone_depth: 1
|
||||||
|
2
.github/ISSUE_TEMPLATE.md
vendored
2
.github/ISSUE_TEMPLATE.md
vendored
@ -9,7 +9,7 @@
|
|||||||
| OS/arch/bits (mandatory) | Debian arm 64, Ubuntu x86 32
|
| OS/arch/bits (mandatory) | Debian arm 64, Ubuntu x86 32
|
||||||
| File format of the file you reverse (mandatory) | PE, ELF etc.
|
| File format of the file you reverse (mandatory) | PE, ELF etc.
|
||||||
| Architecture/bits of the file (mandatory) | PPC, x86/32, x86/64 etc.
|
| Architecture/bits of the file (mandatory) | PPC, x86/32, x86/64 etc.
|
||||||
| Cutter and r2 version, See About Cutter (mandatory) | Version 1.2 / Using r2-2.2.0-431-g911df601e
|
| Cutter and r2 version, See About Cutter (mandatory) | Version 1.3 / Using r2 2.4.0-56-g4dffa5cd2
|
||||||
| Show version information **full output** (See About Cutter) in a pastebin document (mandatory) | https://gist.github.com/
|
| Show version information **full output** (See About Cutter) in a pastebin document (mandatory) | https://gist.github.com/
|
||||||
|
|
||||||
### Expected behavior
|
### Expected behavior
|
||||||
|
2
radare2
2
radare2
@ -1 +1 @@
|
|||||||
Subproject commit 70bd99da259438fbe552b7debfe68c571cdcd2da
|
Subproject commit 4dffa5cd2e7fec369b6ee55d7e43c8039e8aa7b5
|
@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1)
|
|||||||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
|
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
|
||||||
include(DisallowInSource)
|
include(DisallowInSource)
|
||||||
|
|
||||||
project(Cutter VERSION 1.2)
|
project(Cutter VERSION 1.3)
|
||||||
|
|
||||||
option(CUTTER_ENABLE_JUPYTER "Enable Jupyter integration. Requires Python >= 3.3." ON)
|
option(CUTTER_ENABLE_JUPYTER "Enable Jupyter integration. Requires Python >= 3.3." ON)
|
||||||
option(CUTTER_ENABLE_QTWEBENGINE "Use QtWebEngine for in-app Jupyter Browser. Unused if CUTTER_ENABLE_JUPYTER=OFF." ON)
|
option(CUTTER_ENABLE_QTWEBENGINE "Use QtWebEngine for in-app Jupyter Browser. Unused if CUTTER_ENABLE_JUPYTER=OFF." ON)
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
#define __question(x) (QMessageBox::Yes==QMessageBox::question (this, "Alert", QString(x), QMessageBox::Yes| QMessageBox::No))
|
#define __question(x) (QMessageBox::Yes==QMessageBox::question (this, "Alert", QString(x), QMessageBox::Yes| QMessageBox::No))
|
||||||
|
|
||||||
#define APPNAME "Cutter"
|
#define APPNAME "Cutter"
|
||||||
#define CUTTER_VERSION "1.2"
|
#define CUTTER_VERSION "1.3"
|
||||||
|
|
||||||
#define Core() (CutterCore::getInstance())
|
#define Core() (CutterCore::getInstance())
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ TEMPLATE = app
|
|||||||
TARGET = Cutter
|
TARGET = Cutter
|
||||||
|
|
||||||
# The application version
|
# The application version
|
||||||
VERSION = 1.2
|
VERSION = 1.3
|
||||||
|
|
||||||
ICON = img/cutter.icns
|
ICON = img/cutter.icns
|
||||||
|
|
||||||
|
@ -153,6 +153,7 @@ void TypesWidget::setScrollMode()
|
|||||||
|
|
||||||
void TypesWidget::on_typesTreeView_doubleClicked(const QModelIndex &index)
|
void TypesWidget::on_typesTreeView_doubleClicked(const QModelIndex &index)
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(index);
|
||||||
// TypeDescription exp = index.data(TypesModel::TypeDescriptionRole).value<TypeDescription>();
|
// TypeDescription exp = index.data(TypesModel::TypeDescriptionRole).value<TypeDescription>();
|
||||||
// CutterCore::getInstance()->seek(exp.vaddr);
|
// CutterCore::getInstance()->seek(exp.vaddr);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user