Skip to content

Commit 15da6b2

Browse files
committed
Prepare releasing version 0.4.3
1 parent 6731115 commit 15da6b2

File tree

8 files changed

+38
-11
lines changed

8 files changed

+38
-11
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.2"
10+
version = "0.4.3"
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.2"
20+
cp -ra ../../ "${temp_dir}/songrec-0.4.3"
2121

22-
cd "${temp_dir}/songrec-0.4.2"
22+
cd "${temp_dir}/songrec-0.4.3"
2323

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

packaging/ppa/debian/changelog

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
songrec (0.4.3) bionic; urgency=low
2+
3+
* Prevent mission application icon when running (PR #163 thanks to @heldderarbeit)
4+
* Quit the application when doing Ctrl+Q (issue #181)
5+
* Change the Flatpak permission from --device=dri to --device=all, because --device=dri made it impossible to change the audio input source to monitor mode on certain recent Flatpak/PipeWire combinations (issue #177)
6+
* Fix usage of the Context menu in the Favourites window (PR #179 from @damonhayhurst and issue #178)
7+
* Minor code refactoring (PR #153 from @dotX12) and bug fixes, including with building in --debug mode (issue #159)
8+
* Remove the "Play Shazam lure" button, as it is no more functional with recent Shazam versions (issue #170)
9+
* Update Slovak translation from issue #23 (thanks to @dodog)
10+
* Update Portuguese translation from PR #172 (thanks to @marcelocripe)
11+
* Update the `rodio` crate dependency to drop the requirement on the `minimp3` library, that prevented building on certain platforms
12+
13+
-- Marin <marin-m@users.noreply.github.com> Sun, 29 Sep 2024 14:38:07 +0200
14+
115
songrec (0.4.2) bionic; urgency=low
216

317
* Add a Catalan translation (thanks to @pgiuli in issue #23)

packaging/ppa/upload_source_package.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ function cleanup_dirs {
1717

1818
trap cleanup_dirs INT TERM
1919

20-
for version in bionic focal jammy lunar mantic noble; do
20+
for version in bionic focal jammy lunar mantic noble oracular; do
2121

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

24-
cp -ra ../../ "${temp_dir}/songrec-0.4.2${version}"
24+
cp -ra ../../ "${temp_dir}/songrec-0.4.3${version}"
2525

26-
cd "${temp_dir}/songrec-0.4.2${version}"
26+
cd "${temp_dir}/songrec-0.4.3${version}"
2727

2828
mkdir -p .cargo
2929
cargo vendor --locked vendor | sed 's/^directory = ".*"/directory = "vendor"/g' > .cargo/config.toml
@@ -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.2${version}_source.changes"
52+
dput ppa:marin-m/songrec "../../songrec_0.4.3${version}_source.changes"
5353

5454
cd "${ORIG_DIR}"
5555

56-
rm -rf "${temp_dir}/songrec-0.4.2${version}"
56+
rm -rf "${temp_dir}/songrec-0.4.3${version}"
5757

5858
done
5959

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

+13
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,19 @@ https://hughsie.github.io/oars/index.html
2727
-->
2828
<content_rating type="oars-1.0" />
2929
<releases>
30+
<release version="0.4.3" date="2024-07-29">
31+
<description>
32+
<p>Prevent mission application icon when running (PR #163 thanks to @heldderarbeit)</p>
33+
<p>Quit the application when doing Ctrl+Q (issue #181)</p>
34+
<p>Change the Flatpak permission from --device=dri to --device=all, because --device=dri made it impossible to change the audio input source to monitor mode on certain recent Flatpak/PipeWire combinations (issue #177)</p>
35+
<p>Fix usage of the Context menu in the Favourites window (PR #179 from @damonhayhurst and issue #178)</p>
36+
<p>Minor code refactoring (PR #153 from @dotX12) and bug fixes, including with building in --debug mode (issue #159)</p>
37+
<p>Remove the "Play Shazam lure" button, as it is no more functional with recent Shazam versions (issue #170)</p>
38+
<p>Update Slovak translation from issue #23 (thanks to @dodog)</p>
39+
<p>Update Portuguese translation from PR #172 (thanks to @marcelocripe)</p>
40+
<p>Update the `rodio` crate dependency to drop the requirement on the `minimp3` library, that prevented building on certain platforms</p>
41+
</description>
42+
</release>
3043
<release version="0.4.2" date="2024-01-22">
3144
<description>
3245
<p>Add a Catalan translation (thanks to @pgiuli in issue #23)</p>

src/gui/interface.glade

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@
224224
<property name="type-hint">dialog</property>
225225
<property name="transient-for">window</property>
226226
<property name="program-name">SongRec</property>
227-
<property name="version">0.4.2</property>
227+
<property name="version">0.4.3</property>
228228
<property name="website">https://github.com/marin-m/SongRec</property>
229229
<property name="authors">© Marin Moulinier
230230
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.2")
65+
.version("0.4.3")
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)