mirror of
https://github.com/spalencsar/bearwave.git
synced 2026-07-06 22:24:17 +02:00
release: bump version to 1.0.5
Document CI test fix and publish release metadata for AppStream and README.
This commit is contained in:
10
CHANGELOG.md
10
CHANGELOG.md
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.0.5] - 2026-06-20
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix unit tests aborting in headless CI/Docker by using Qt offscreen platform and FFmpeg media backend.
|
||||
|
||||
### Changed
|
||||
|
||||
- Document 1.0.4 changes in README and CONTRIBUTING; run `ctest` and broader `qmllint` in CI.
|
||||
|
||||
## [1.0.4] - 2026-06-20
|
||||
|
||||
### Security
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
project(bearwave VERSION 1.0.4 LANGUAGES CXX)
|
||||
project(bearwave VERSION 1.0.5 LANGUAGES CXX)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
@@ -9,9 +9,9 @@ BearWave is designed for fast station browsing, simple playback controls, favori
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
**Current release:** [1.0.4](CHANGELOG.md#104---2026-06-20) (2026-06-20) — security hardening, playback/tray/MPRIS fixes, modular QML UI.
|
||||
**Current release:** [1.0.5](CHANGELOG.md#105---2026-06-20) (2026-06-20) — includes [1.0.4](CHANGELOG.md#104---2026-06-20) security/stability/QML refactor plus CI test fixes.
|
||||
|
||||
## Screenshots
|
||||
|
||||
|
||||
@@ -59,6 +59,14 @@
|
||||
</provides>
|
||||
|
||||
<releases>
|
||||
<release version="1.0.5" date="2026-06-20">
|
||||
<description>
|
||||
<ul>
|
||||
<li>Fixed headless CI unit tests (Qt offscreen + FFmpeg backend)</li>
|
||||
<li>Includes 1.0.4: URL validation, playback/tray/MPRIS fixes, modular QML UI</li>
|
||||
</ul>
|
||||
</description>
|
||||
</release>
|
||||
<release version="1.0.4" date="2026-06-20">
|
||||
<description>
|
||||
<ul>
|
||||
|
||||
@@ -25,7 +25,7 @@ int main(int argc, char *argv[])
|
||||
QApplication::setApplicationName(QStringLiteral("BearWave"));
|
||||
QApplication::setDesktopFileName(QStringLiteral("de.nerdbear.bearwave"));
|
||||
QApplication::setOrganizationName(QStringLiteral("BearWave"));
|
||||
QApplication::setApplicationVersion(QStringLiteral("1.0.4"));
|
||||
QApplication::setApplicationVersion(QStringLiteral("1.0.5"));
|
||||
|
||||
QApplication app(argc, argv);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user