Skip to content

Commit

Permalink
Cutter 1.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
xarkes committed Jul 2, 2018
1 parent 520bee8 commit 9309486
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '1.4-git-{build}'
version: '1.5-git-{build}'
skip_tags: true
image: 'Visual Studio 2015'
clone_depth: 1
Expand Down Expand Up @@ -82,7 +82,7 @@ deploy:
auth_token:
secure: 2SmsqS2RaX2N5c9UwUcfBwNmMX64FfPAZFShLyxIkZXiC8vLaYCHToWxBYEuWRSk
artifact: "%ARTIFACT_NAME%"
draft: false
draft: true
prerelease: false
on:
branch: master
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.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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion radare2
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.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)
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.5" date="2018-07-02" />
<release version="1.4" date="2018-04-24" />
<release version="1.3" date="2018-03-09" />
<release version="1.2" date="2018-01-30" />
Expand Down
2 changes: 1 addition & 1 deletion src/Cutter.h
Original file line number Diff line number Diff line change
Expand Up @@ -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())

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.4
VERSION = 1.5

ICON = img/cutter.icns

Expand Down

0 comments on commit 9309486

Please sign in to comment.