Bump version to 0.3.0

This commit is contained in:
Avery
2023-12-27 23:43:16 -05:00
parent 8d3a12bfab
commit fa2ca2d718
3 changed files with 29 additions and 2 deletions

View File

@@ -85,6 +85,33 @@
</provides> </provides>
<releases> <releases>
<release version="0.3.0" date="2023-12-27">
<description>
<p>Happy holidays/new year! This release adds several new features and bugfixes.</p>
<p>Features:</p>
<ul>
<li>You can now search your library by pressing the search button, or Ctrl + F</li>
<li>Media playback will now be reported over MPRIS, allowing for better integration with
your desktop (such as controlling playback with media keys)</li>
<li>Idling is now inhibited during playback to prevent your system from locking the screen
or going to sleep</li>
</ul>
<p>Changes and bugfixes:</p>
<ul>
<li>Adjustments to library design</li>
<li>A status page is now shown if your server is offline, or if there's an error loading
your library</li>
<li>Fixed library collections sometimes showing folders and missing nested items</li>
<li>The previous window size will be restored when opening the app</li>
<li>Translation updates from Weblate - thanks to Codeberg users Fjuro, Filipe Motta,
Heimen Stoffels, ThetaDev, yareg, K0RR, nikolar, gloopsies, k1llo, Sergio Varela, and
DegradingVagabond!</li>
</ul>
</description>
</release>
<release version="0.2.1" date="2023-12-06"> <release version="0.2.1" date="2023-12-06">
<description> <description>
<p>This release contains minor changes and bug fixes.</p> <p>This release contains minor changes and bug fixes.</p>

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "delfin" name = "delfin"
version = "0.2.1" version = "0.3.0"
edition = "2021" edition = "2021"
rust-version = "1.74.0" rust-version = "1.74.0"

View File

@@ -1,7 +1,7 @@
project( project(
'delfin', 'delfin',
'rust', 'rust',
version: '0.2.1', version: '0.3.0',
# bad hack to compile libvideo-player-mpv # bad hack to compile libvideo-player-mpv
subproject_dir: 'video_player_mpv', subproject_dir: 'video_player_mpv',
meson_version: '>= 0.59', meson_version: '>= 0.59',