mirror of
https://github.com/spalencsar/bearwave.git
synced 2026-07-06 22:24:17 +02:00
Bump version to 1.0.2
This commit is contained in:
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.0.2] - 2026-05-28
|
||||
|
||||
### Added
|
||||
|
||||
- SPDX license identifiers (GPL-3.0-or-later) to all source files.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
project(bearwave VERSION 1.0.1 LANGUAGES CXX)
|
||||
project(bearwave VERSION 1.0.2 LANGUAGES CXX)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
@@ -59,6 +59,19 @@
|
||||
</provides>
|
||||
|
||||
<releases>
|
||||
<release version="1.0.2" date="2026-05-28">
|
||||
<description>
|
||||
<ul>
|
||||
<li>Fixed crash in IcyReader when changing or stopping streams</li>
|
||||
<li>Fixed metadata overwrite bug where valid ICY stream metadata was cleared</li>
|
||||
<li>Fixed DBus crash under KDE Plasma Wayland</li>
|
||||
<li>Fixed regex parser bug with stream titles containing apostrophes</li>
|
||||
<li>Fixed infinite loading of radio stations by adding transfer timeout</li>
|
||||
<li>Added single instance check via DBus</li>
|
||||
<li>Added SPDX license identifiers and relicensed to GPL-3.0-or-later</li>
|
||||
</ul>
|
||||
</description>
|
||||
</release>
|
||||
<release version="1.0.1" date="2026-05-23">
|
||||
<description>
|
||||
<ul>
|
||||
|
||||
@@ -22,7 +22,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.1"));
|
||||
QApplication::setApplicationVersion(QStringLiteral("1.0.2"));
|
||||
|
||||
QApplication app(argc, argv);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user