Skip to content

Commit

Permalink
[General] bump version to 0.8.1 and update changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
buschmann23 committed Mar 18, 2023
1 parent 7c0f5f0 commit dc5726a
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Fuoten 0.8.1 - to be released
Fuoten 0.8.1 - 2023-03-18
- SailfishOS
* improved: add Audio to the list of SailJail permissions to allow audio playback im WebView
* fixed: add Audio to the list of SailJail permissions to allow audio playback im WebView (#81)
* fixed: default value for opening articles is not used (#82)

Fuoten 0.8.0 - 2022-03-06
- General
Expand Down
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.0 FATAL_ERROR)
cmake_policy(SET CMP0048 NEW)

project(fuoten
VERSION 0.8.0
VERSION 0.8.1
DESCRIPTION "Qt based client for the Nextcloud News Application"
HOMEPAGE_URL "https://github.com/Huessenbergnetz/Fuoten"
LANGUAGES CXX)
Expand Down
4 changes: 4 additions & 0 deletions rpm/harbour-fuoten.changes
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
# * date Author's Name <author's email> version-release
# - Summary of changes

* Sat Mar 18 2023 Matthias Fehring <> 0.8.1
* fixed: default value for opening articles is not used (#82)
* fixed: allow audio for SailJail to play videos in internal web view with sound (#81)

* Sun Mar 6 2022 Matthias Fehring <> 0.8.0
* new: add default config values (#76)
* improved: switch to CMake (#71)
Expand Down
2 changes: 1 addition & 1 deletion rpm/harbour-fuoten.spec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Name: harbour-fuoten
# << macros

Summary: ownCloud/Nextcloud News App Client
Version: 0.8.0
Version: 0.8.1
Release: 1
Group: Applications/Internet
License: GPL-3.0
Expand Down
2 changes: 1 addition & 1 deletion rpm/harbour-fuoten.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Name: harbour-fuoten
Summary: ownCloud/Nextcloud News App Client
Version: 0.8.0
Version: 0.8.1
Release: 1
# The contents of the Group field should be one of the groups listed here:
# http://gitorious.org/meego-developer-tools/spectacle/blobs/master/data/GROUPS
Expand Down
5 changes: 3 additions & 2 deletions sailfishos/qml/common/models/ChangelogModel.qml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ import QtQuick 2.2
ListModel {
ListElement {
version: "0.8.1"
date: 1676184384000
date: 1679137632000
entries: [
ListElement { type: 1; issue: ""; description: "add Audio to the list of SailJail permissions to allow audio playback im WebView" }
ListElement { type: 2; issue: "81"; description: "add Audio to the list of SailJail permissions to allow audio playback im WebView" },
ListElement { type: 2; issue: "82"; description: "default value for opening articles is not used" }
]
}

Expand Down
2 changes: 1 addition & 1 deletion sailfishos/qml/common/pages/About.qml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ AboutPage {
appDescription: qsTrId("about-desc")
appHomepage: "https://github.com/Huessenbergnetz/Fuoten"
appCopyrightYearFrom: "2016"
appCopyrightYearTo: "2022"
appCopyrightYearTo: "2023"
appCopyrightHolder: "Matthias Fehring"
appLicense: "GNU General Public License, Version 3"
appLicenseFile: "GPLv3.qml"
Expand Down

0 comments on commit dc5726a

Please sign in to comment.