Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
gottcode committed Jul 2, 2022
1 parent 4702ecc commit aa8a77b
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
cmake_minimum_required(VERSION 3.16)

# Configure project
project(focuswriter VERSION 1.8.0 LANGUAGES CXX)
project(focuswriter VERSION 1.8.1 LANGUAGES CXX)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.8.1
-----
* Always write plain text as UTF-8.
* Always write RTF as codepage 1252.
* Replaced QTextCodec with ICU.
* Translation updates: Estonian, German.

1.8.0
-----
* FIXED: Lines were randomly duplicated in ODT.
Expand Down
2 changes: 1 addition & 1 deletion mac_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

APP='FocusWriter'
BUNDLE="$APP.app"
VERSION='1.8.0'
VERSION='1.8.1'

# Remove any previous disk folder or DMG
echo -n 'Preparing... '
Expand Down
10 changes: 10 additions & 0 deletions resources/unix/focuswriter.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,16 @@
<content_rating type="oars-1.1"/>

<releases>
<release version="1.8.1" date="2022-07-02">
<description>
<ul>
<li>Always write plain text as UTF-8</li>
<li>Always write RTF as codepage 1252</li>
<li>Replaced QTextCodec with ICU</li>
<li>Translation updates: Estonian, German</li>
</ul>
</description>
</release>
<release version="1.8.0" date="2022-06-19">
<description>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion resources/windows/installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
!define APPNAME "FocusWriter"
!define VERSIONMAJOR 1
!define VERSIONMINOR 8
!define VERSIONPATCH 0
!define VERSIONPATCH 1
!define APPVERSION "${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONPATCH}"
!define ABOUTURL "https://gottcode.org/focuswriter/"

Expand Down
2 changes: 1 addition & 1 deletion windows_deploy.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

SET SRCDIR=..\focuswriter
SET APP=FocusWriter
SET VERSION=1.8.0
SET VERSION=1.8.1

ECHO Copying executable
MKDIR %SRCDIR%\%APP%
Expand Down

0 comments on commit aa8a77b

Please sign in to comment.