Skip to content

Commit

Permalink
Prepare releasing version 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
marin-m committed Sep 29, 2024
1 parent 6731115 commit 15da6b2
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repository = "https://github.com/marin-m/SongRec"
readme = "README.md"
keywords = ["shazam", "audio", "audio-fingerprinting"]
categories = ["multimedia::audio", "command-line-utilities"]
version = "0.4.2"
version = "0.4.3"
authors = ["marin-m"]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions packaging/ppa/build_binary_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ trap cleanup_dirs INT TERM

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

cp -ra ../../ "${temp_dir}/songrec-0.4.2"
cp -ra ../../ "${temp_dir}/songrec-0.4.3"

cd "${temp_dir}/songrec-0.4.2"
cd "${temp_dir}/songrec-0.4.3"

mkdir -p .cargo
cargo vendor --locked vendor | sed 's/^directory = ".*"/directory = "vendor"/g' > .cargo/config.toml
Expand Down
14 changes: 14 additions & 0 deletions packaging/ppa/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
songrec (0.4.3) bionic; urgency=low

* Prevent mission application icon when running (PR #163 thanks to @heldderarbeit)
* Quit the application when doing Ctrl+Q (issue #181)
* 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)
* Fix usage of the Context menu in the Favourites window (PR #179 from @damonhayhurst and issue #178)
* Minor code refactoring (PR #153 from @dotX12) and bug fixes, including with building in --debug mode (issue #159)
* Remove the "Play Shazam lure" button, as it is no more functional with recent Shazam versions (issue #170)
* Update Slovak translation from issue #23 (thanks to @dodog)
* Update Portuguese translation from PR #172 (thanks to @marcelocripe)
* Update the `rodio` crate dependency to drop the requirement on the `minimp3` library, that prevented building on certain platforms

-- Marin <[email protected]> Sun, 29 Sep 2024 14:38:07 +0200

songrec (0.4.2) bionic; urgency=low

* Add a Catalan translation (thanks to @pgiuli in issue #23)
Expand Down
10 changes: 5 additions & 5 deletions packaging/ppa/upload_source_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ function cleanup_dirs {

trap cleanup_dirs INT TERM

for version in bionic focal jammy lunar mantic noble; do
for version in bionic focal jammy lunar mantic noble oracular; do

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

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

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

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

# Push to Launchpad

dput ppa:marin-m/songrec "../../songrec_0.4.2${version}_source.changes"
dput ppa:marin-m/songrec "../../songrec_0.4.3${version}_source.changes"

cd "${ORIG_DIR}"

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

done

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,19 @@ https://hughsie.github.io/oars/index.html
-->
<content_rating type="oars-1.0" />
<releases>
<release version="0.4.3" date="2024-07-29">
<description>
<p>Prevent mission application icon when running (PR #163 thanks to @heldderarbeit)</p>
<p>Quit the application when doing Ctrl+Q (issue #181)</p>
<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>
<p>Fix usage of the Context menu in the Favourites window (PR #179 from @damonhayhurst and issue #178)</p>
<p>Minor code refactoring (PR #153 from @dotX12) and bug fixes, including with building in --debug mode (issue #159)</p>
<p>Remove the "Play Shazam lure" button, as it is no more functional with recent Shazam versions (issue #170)</p>
<p>Update Slovak translation from issue #23 (thanks to @dodog)</p>
<p>Update Portuguese translation from PR #172 (thanks to @marcelocripe)</p>
<p>Update the `rodio` crate dependency to drop the requirement on the `minimp3` library, that prevented building on certain platforms</p>
</description>
</release>
<release version="0.4.2" date="2024-01-22">
<description>
<p>Add a Catalan translation (thanks to @pgiuli in issue #23)</p>
Expand Down
2 changes: 1 addition & 1 deletion src/gui/interface.glade
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@
<property name="type-hint">dialog</property>
<property name="transient-for">window</property>
<property name="program-name">SongRec</property>
<property name="version">0.4.2</property>
<property name="version">0.4.3</property>
<property name="website">https://github.com/marin-m/SongRec</property>
<property name="authors">© Marin Moulinier
Contributors https://github.com/marin-m/SongRec/graphs/contributors</property>
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ use clap::{App, Arg};
macro_rules! base_app {
() => {
App::new("SongRec")
.version("0.4.2")
.version("0.4.3")
.about(gettext("An open-source Shazam client for Linux, written in Rust.").as_str())
.subcommand(
App::new("listen")
Expand Down

0 comments on commit 15da6b2

Please sign in to comment.