Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
gottcode committed Jun 19, 2022
1 parent f4107bd commit 4245a0a
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 5 deletions.
4 changes: 2 additions & 2 deletions 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.7.6 LANGUAGES CXX)
project(focuswriter VERSION 1.8.0 LANGUAGES CXX)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down Expand Up @@ -170,7 +170,7 @@ if(ENABLE_LINK_TIME_OPTIMIZATION)
endif()
endif()

option(ENABLE_STRIP "Enable automatic stripping of release builds" OFF)
option(ENABLE_STRIP "Enable automatic stripping of builds" OFF)
if(ENABLE_STRIP)
add_custom_command(TARGET focuswriter
POST_BUILD
Expand Down
16 changes: 16 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
1.8.0
-----
* FIXED: Lines were randomly duplicated in ODT.
* FIXED: Did not read text from lists in ODT.
* FIXED: Formatting was lost when restoring untitled documents from cache.
* FIXED: Loading headings caused document to shift vertically.
* FIXED: Timers did not show countdown in tooltip.
* FIXED: Sometimes could not remove dictionaries.
* Only restore changed files from cache.
* Refactored code.
* Removed XPM icon.
* Switched to Qt 6.
* Updated Unicode symbols database.
* Updated Windows dictionaries.
* Translation updates: Armenian, Bosnian, Czech, Dutch, French, Georgian, Italian, Lithuanian, Norwegian Bokmål, Norwegian Bokmål (Norway), Portuguese, Romanian, Swedish, Turkish, Ukrainian.

1.7.6
-----
* FIXED: Did not load locales with underscores.
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=$(git describe)
VERSION='1.8.0'

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

<releases>
<release version="1.8.0" date="2022-06-19">
<description>
<ul>
<li>FIXED: Lines were randomly duplicated in ODT</li>
<li>FIXED: Did not read text from lists in ODT</li>
<li>FIXED: Formatting was lost when restoring untitled documents from cache</li>
<li>FIXED: Loading headings caused document to shift vertically</li>
<li>FIXED: Timers did not show countdown in tooltip</li>
<li>FIXED: Sometimes could not remove dictionaries</li>
<li>Only restore changed files from cache</li>
<li>Refactored code</li>
<li>Removed XPM icon</li>
<li>Switched to Qt 6</li>
<li>Updated Unicode symbols database</li>
<li>Updated Windows dictionaries</li>
<li>Translation updates: Armenian, Bosnian, Czech, Dutch, French, Georgian, Italian, Lithuanian, Norwegian Bokmål, Norwegian Bokmål (Norway), Portuguese, Romanian, Swedish, Turkish, Ukrainian</li>
</ul>
</description>
</release>
<release version="1.7.6" date="2020-04-20">
<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 @@ -3,7 +3,7 @@

!define APPNAME "FocusWriter"
!define VERSIONMAJOR 1
!define VERSIONMINOR 7
!define VERSIONMINOR 8
!define VERSIONPATCH 0
!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
FOR /f %%i IN ('git describe') DO SET VERSION=%%i
SET VERSION=1.8.0

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

0 comments on commit 4245a0a

Please sign in to comment.