From 8849f25a8d7e0d53ae249c5d7f4e0af4d6ac90a7 Mon Sep 17 00:00:00 2001 From: xarkes Date: Fri, 9 Mar 2018 16:28:04 +0100 Subject: [PATCH] Changes for 1.3 release --- .appveyor.yml | 2 +- .github/ISSUE_TEMPLATE.md | 2 +- radare2 | 2 +- src/CMakeLists.txt | 2 +- src/Cutter.h | 2 +- src/Cutter.pro | 2 +- src/widgets/TypesWidget.cpp | 1 + 7 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 709973ad..d0b78925 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,4 +1,4 @@ -version: '1.2-git-{build}' +version: '1.3-git-{build}' skip_tags: true image: 'Visual Studio 2015' clone_depth: 1 diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 0b5f80f5..d6d0dd93 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -9,7 +9,7 @@ | OS/arch/bits (mandatory) | Debian arm 64, Ubuntu x86 32 | File format of the file you reverse (mandatory) | PE, ELF 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/ ### Expected behavior diff --git a/radare2 b/radare2 index 70bd99da..4dffa5cd 160000 --- a/radare2 +++ b/radare2 @@ -1 +1 @@ -Subproject commit 70bd99da259438fbe552b7debfe68c571cdcd2da +Subproject commit 4dffa5cd2e7fec369b6ee55d7e43c8039e8aa7b5 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6209fbe2..e002ee89 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.1) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") 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_QTWEBENGINE "Use QtWebEngine for in-app Jupyter Browser. Unused if CUTTER_ENABLE_JUPYTER=OFF." ON) diff --git a/src/Cutter.h b/src/Cutter.h index 00278fae..b6eb0b02 100644 --- a/src/Cutter.h +++ b/src/Cutter.h @@ -30,7 +30,7 @@ #define __question(x) (QMessageBox::Yes==QMessageBox::question (this, "Alert", QString(x), QMessageBox::Yes| QMessageBox::No)) #define APPNAME "Cutter" -#define CUTTER_VERSION "1.2" +#define CUTTER_VERSION "1.3" #define Core() (CutterCore::getInstance()) diff --git a/src/Cutter.pro b/src/Cutter.pro index 7c6ecec3..f672afbf 100644 --- a/src/Cutter.pro +++ b/src/Cutter.pro @@ -3,7 +3,7 @@ TEMPLATE = app TARGET = Cutter # The application version -VERSION = 1.2 +VERSION = 1.3 ICON = img/cutter.icns diff --git a/src/widgets/TypesWidget.cpp b/src/widgets/TypesWidget.cpp index 9392387e..211292cf 100644 --- a/src/widgets/TypesWidget.cpp +++ b/src/widgets/TypesWidget.cpp @@ -153,6 +153,7 @@ void TypesWidget::setScrollMode() void TypesWidget::on_typesTreeView_doubleClicked(const QModelIndex &index) { + Q_UNUSED(index); // TypeDescription exp = index.data(TypesModel::TypeDescriptionRole).value(); // CutterCore::getInstance()->seek(exp.vaddr); }