Version 1.7.1

This commit is contained in:
Florian Märkl 2018-08-25 12:16:04 +02:00
parent 5342651e67
commit d510897ad1
6 changed files with 6 additions and 5 deletions

View File

@ -1,4 +1,4 @@
version: '1.7-git-{build}'
version: '1.7.1-git-{build}'
image: 'Visual Studio 2015'
clone_depth: 1

View File

@ -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.7 / Using r2 2.8.0
| Cutter and r2 version, See About Cutter (mandatory) | Version 1.7.1 / Using r2 2.8.0
| Show version information **full output** (See About Cutter) in a pastebin document (mandatory) | https://gist.github.com/
### Expected behavior

View File

@ -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.7)
project(Cutter VERSION 1.7.1)
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)

View File

@ -26,6 +26,7 @@
</screenshots>
<url type="homepage">http://beta.rada.re/en/latest/cutter.html</url>
<releases>
<release version="1.7.1" date="2018-08-25" />
<release version="1.7" date="2018-08-17" />
<release version="1.6" date="2018-07-13" />
<release version="1.5" date="2018-07-02" />

View File

@ -26,7 +26,7 @@
#define __question(x) (QMessageBox::Yes==QMessageBox::question (this, "Alert", QString(x), QMessageBox::Yes| QMessageBox::No))
#define APPNAME "Cutter"
#define CUTTER_VERSION "1.7"
#define CUTTER_VERSION "1.7.1"
#define Core() (CutterCore::getInstance())

View File

@ -3,7 +3,7 @@ TEMPLATE = app
TARGET = Cutter
# The application version
VERSION = 1.7
VERSION = 1.7.1
#required QT version
lessThan(QT_MAJOR_VERSION, 5): error("requires Qt 5")