Skip to content

Commit

Permalink
version 3.9.1
Browse files Browse the repository at this point in the history
Fix #319
  • Loading branch information
Canop committed Jan 28, 2025
1 parent d3d8aa1 commit 108520b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<a name="v3.9.1"></a>
### v3.9.1 - 2025/01/28
- as compilation of Alsa can be a problem on some systems, the "sound" feature is now disabled by default. You can enable it by compiling with `--features "sound"` - Fix #319

<a name="v3.9.0"></a>
### v3.9.0 - 2025/01/26
- sound can be enabled with `sound.enabled = true`, which allows adding job parameters such as `on_success = "play-sound(name=90s-game-ui-6,volume=50)"` and `on_failure = "play-sound(name=beep-warning)"` - Fix #303
Expand Down
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.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bacon"
version = "3.9.0"
version = "3.9.1"
authors = ["dystroy <[email protected]>"]
repository = "https://github.com/Canop/bacon"
description = "background rust compiler"
Expand All @@ -12,7 +12,7 @@ readme = "README.md"
rust-version = "1.76"

[features]
default = ["sound"]
default = []
clipboard = ["arboard"]
sound = ["rodio"]

Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ Below is only a short overview.

Run this command too if you want to update bacon. Configuration has always been retro-compatible so you won't lose anything.

Some features are disabled by default. You may enable them with

cargo install --features "clipboard sound"

## check the current project

bacon
Expand Down
4 changes: 4 additions & 0 deletions website/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ cargo install --locked bacon

Run this command too if you want to update bacon. Configuration has always been retro-compatible so you won't lose anything.

Some features are disabled by default. You may enable them with

cargo install --features "clipboard sound"

# Usage

Launch bacon in a terminal you'll keep visible
Expand Down

0 comments on commit 108520b

Please sign in to comment.