Skip to content

Commit

Permalink
Version 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thestr4ng3r committed Aug 25, 2018
1 parent 5342651 commit d510897
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '1.7-git-{build}'
version: '1.7.1-git-{build}'
image: 'Visual Studio 2015'
clone_depth: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions src/Cutter.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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" />
Expand Down
2 changes: 1 addition & 1 deletion src/Cutter.h
Original file line number Diff line number Diff line change
Expand Up @@ -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())

Expand Down
2 changes: 1 addition & 1 deletion src/Cutter.pro
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit d510897

Please sign in to comment.