Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
gottcode committed Sep 1, 2022
1 parent 64eb278 commit ccab950
Show file tree
Hide file tree
Showing 6 changed files with 27 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.1 LANGUAGES CXX)
project(focuswriter VERSION 1.8.2 LANGUAGES CXX)

set(project_copyright "2008-2022 Graeme Gott")

Expand Down
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
1.8.2
-----
* FIXED: Could not change language in portable mode.
* FIXED: Crashed during paste from context menu.
* FIXED: First line indent was lost on empty paragraphs.
* Always write RTF as Latin1.
* Replaced ICU with iconv.
* Improved Linux deployment.
* Translation updates: German, Korean, Portuguese (Brazil), Russian, Swedish.

1.8.1
-----
* Always write plain text as UTF-8.
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.1'
VERSION='1.8.2'

# Locate deployment script
BIN_DIR=$(pwd)
Expand Down
13 changes: 13 additions & 0 deletions resources/unix/focuswriter.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,19 @@
<content_rating type="oars-1.1"/>

<releases>
<release version="1.8.2" date="2022-09-01">
<description>
<ul>
<li>FIXED: Could not change language in portable mode</li>
<li>FIXED: Crashed during paste from context menu</li>
<li>FIXED: First line indent was lost on empty paragraphs</li>
<li>Always write RTF as Latin1</li>
<li>Replaced ICU with iconv</li>
<li>Improved Linux deployment</li>
<li>Translation updates: German, Korean, Portuguese (Brazil), Russian, Swedish</li>
</ul>
</description>
</release>
<release version="1.8.1" date="2022-07-02">
<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 1
!define VERSIONPATCH 2
!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.1
SET VERSION=1.8.2

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

0 comments on commit ccab950

Please sign in to comment.