From 930948677072bfc4580c049d41b19904c23be351 Mon Sep 17 00:00:00 2001 From: xarkes Date: Mon, 2 Jul 2018 13:51:30 +0200 Subject: [PATCH] Cutter 1.5 release --- .appveyor.yml | 4 ++-- .github/ISSUE_TEMPLATE.md | 2 +- README.md | 6 +++--- radare2 | 2 +- src/CMakeLists.txt | 2 +- src/Cutter.appdata.xml | 1 + src/Cutter.h | 2 +- src/Cutter.pro | 2 +- 8 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 0fe777606..5cc6dbb36 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,4 +1,4 @@ -version: '1.4-git-{build}' +version: '1.5-git-{build}' skip_tags: true image: 'Visual Studio 2015' clone_depth: 1 @@ -82,7 +82,7 @@ deploy: auth_token: secure: 2SmsqS2RaX2N5c9UwUcfBwNmMX64FfPAZFShLyxIkZXiC8vLaYCHToWxBYEuWRSk artifact: "%ARTIFACT_NAME%" - draft: false + draft: true prerelease: false on: branch: master diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 764525f2b..57a1acdd2 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.4 / Using r2 2.5.0-105-gc79874941 +| Cutter and r2 version, See About Cutter (mandatory) | Version 1.5 / Using r2 2.6.9-159d16b34550f4 | Show version information **full output** (See About Cutter) in a pastebin document (mandatory) | https://gist.github.com/ ### Expected behavior diff --git a/README.md b/README.md index b059361e9..05219d3b8 100644 --- a/README.md +++ b/README.md @@ -18,9 +18,9 @@ Cutter is not aimed at existing radare2 users. It instead focuses on those whose Cutter is available for all platforms (Linux, OS X, Windows). You can download the latest release [here](https://github.com/radareorg/cutter/releases). - * Linux: use the [AppImage](https://github.com/radareorg/cutter/releases/download/v1.4/Cutter-v1.4-x86_64.AppImage) file. Then just make it executable and run it: - * `chmod +x Cutter-v1.4-x86_64.AppImage` - * `./Cutter-v1.4-x86_64.AppImage` + * Linux: use the [AppImage](https://github.com/radareorg/cutter/releases/download/v1.5/Cutter-v1.5-x86_64.AppImage) file. Then just make it executable and run it: + * `chmod +x Cutter-v1.5-x86_64.AppImage` + * `./Cutter-v1.5-x86_64.AppImage` ### Building from source diff --git a/radare2 b/radare2 index 896b987f9..159d16b34 160000 --- a/radare2 +++ b/radare2 @@ -1 +1 @@ -Subproject commit 896b987f9d79ce7a359746952ea83ffe25ebfb0e +Subproject commit 159d16b34550f4a83ee496839981c8316339ac4d diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 7f416a666..92c62a4a1 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.4) +project(Cutter VERSION 1.5) 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.appdata.xml b/src/Cutter.appdata.xml index cda8eee08..d550b973c 100644 --- a/src/Cutter.appdata.xml +++ b/src/Cutter.appdata.xml @@ -26,6 +26,7 @@ http://beta.rada.re/en/latest/cutter.html + diff --git a/src/Cutter.h b/src/Cutter.h index 8d814a716..2cb571eff 100644 --- a/src/Cutter.h +++ b/src/Cutter.h @@ -25,7 +25,7 @@ #define __question(x) (QMessageBox::Yes==QMessageBox::question (this, "Alert", QString(x), QMessageBox::Yes| QMessageBox::No)) #define APPNAME "Cutter" -#define CUTTER_VERSION "1.4" +#define CUTTER_VERSION "1.5" #define Core() (CutterCore::getInstance()) diff --git a/src/Cutter.pro b/src/Cutter.pro index 8bf2a5493..cc752edf9 100644 --- a/src/Cutter.pro +++ b/src/Cutter.pro @@ -3,7 +3,7 @@ TEMPLATE = app TARGET = Cutter # The application version -VERSION = 1.4 +VERSION = 1.5 ICON = img/cutter.icns