Skip to content

Commit ed4ed7b

Browse files
committed
Prepare releasing version 0.4.1
1 parent 2aa68b4 commit ed4ed7b

File tree

8 files changed

+25
-10
lines changed

8 files changed

+25
-10
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repository = "https://github.com/marin-m/SongRec"
77
readme = "README.md"
88
keywords = ["shazam", "audio", "audio-fingerprinting"]
99
categories = ["multimedia::audio", "command-line-utilities"]
10-
version = "0.4.0"
10+
version = "0.4.1"
1111
authors = ["marin-m"]
1212
edition = "2018"
1313

packaging/ppa/build_binary_package.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ trap cleanup_dirs INT TERM
1717

1818
rm -rf ../../target/ ../../vendor/ ../../.flatpak-builder ../flatpak/.flatpak-builder ../../repo
1919

20-
cp -ra ../../ "${temp_dir}/songrec-0.4.0+2"
20+
cp -ra ../../ "${temp_dir}/songrec-0.4.1"
2121

22-
cd "${temp_dir}/songrec-0.4.0+2"
22+
cd "${temp_dir}/songrec-0.4.1"
2323

2424
mkdir -p .cargo
2525
cargo vendor --locked vendor | sed 's/^directory = ".*"/directory = "vendor"/g' > .cargo/config

packaging/ppa/debian/changelog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
songrec (0.4.1) bionic; urgency=low
2+
3+
* Add a Korean translation (thanks to @MarongHappy in PR #146)
4+
* Re-integrate MPRIS compatibility code in the default builds, with an opt-in GUI option
5+
* Add a simple preference window and an about dialog
6+
7+
-- Marin <marin-m@users.noreply.github.com> Sun, 14 Jan 2024 14:32:00 +0100
8+
19
songrec (0.4.0+2) bionic; urgency=low
210

311
* Fix the `libpulse` dependency into `libpulse0` in the Debian package specification.

packaging/ppa/upload_source_package.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ for version in bionic focal jammy lunar mantic noble; do
2121

2222
rm -rf ../../target/ ../../vendor/ ../../.flatpak-builder ../flatpak/.flatpak-builder ../../repo ../../.cargo
2323

24-
cp -ra ../../ "${temp_dir}/songrec-0.4.0+2${version}"
24+
cp -ra ../../ "${temp_dir}/songrec-0.4.1${version}"
2525

26-
cd "${temp_dir}/songrec-0.4.0+2${version}"
26+
cd "${temp_dir}/songrec-0.4.1${version}"
2727

2828
mkdir -p .cargo
2929
cargo vendor --locked vendor | sed 's/^directory = ".*"/directory = "vendor"/g' > .cargo/config
@@ -49,11 +49,11 @@ for version in bionic focal jammy lunar mantic noble; do
4949

5050
# Push to Launchpad
5151

52-
dput ppa:marin-m/songrec "../../songrec_0.4.0+2${version}_source.changes"
52+
dput ppa:marin-m/songrec "../../songrec_0.4.1${version}_source.changes"
5353

5454
cd "${ORIG_DIR}"
5555

56-
rm -rf "${temp_dir}/songrec-0.4.0+2${version}"
56+
rm -rf "${temp_dir}/songrec-0.4.1${version}"
5757

5858
done
5959

packaging/rootfs/usr/share/metainfo/com.github.marinm.songrec.metainfo.xml

+7
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@ https://hughsie.github.io/oars/index.html
2828
-->
2929
<content_rating type="oars-1.0" />
3030
<releases>
31+
<release version="0.4.1" date="2024-01-14">
32+
<description>
33+
<p>Add a Korean translation (thanks to @MarongHappy in PR #146)</p>
34+
<p>Re-integrate MPRIS compatibility code in the default builds, with an opt-in GUI option</p>
35+
<p>Add a simple preference window and an about dialog</p>
36+
</description>
37+
</release>
3138
<release version="0.4.0" date="2023-12-24">
3239
<description>
3340
<p>Use libpulse (when available) for displaying the list of selectable audio input devices by default, instead of alsalib for listing audio inputs and pactl for switching to a monitor mode device, so that the list of devices displays correct values on PipeWire/PulseAudio-based systems.</p>

src/gui/interface.glade

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230
<property name="type-hint">dialog</property>
231231
<property name="transient-for">window</property>
232232
<property name="program-name">SongRec</property>
233-
<property name="version">0.4.0</property>
233+
<property name="version">0.4.1</property>
234234
<property name="website">https://github.com/marin-m/SongRec</property>
235235
<property name="authors">© Marin Moulinier
236236
Contributors https://github.com/marin-m/SongRec/graphs/contributors</property>

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ use clap::{App, Arg};
6262
macro_rules! base_app {
6363
() => {
6464
App::new("SongRec")
65-
.version("0.4.0")
65+
.version("0.4.1")
6666
.about(gettext("An open-source Shazam client for Linux, written in Rust.").as_str())
6767
.subcommand(
6868
App::new("listen")

0 commit comments

Comments
 (0)