Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 0.6.0 - 2026-05-09

- Replace the direct WirePlumber Python integration with pipewire-gobject for
app-facing PipeWire registry, metadata, routing, and monitor-capture access.
- Bundle pipewire-gobject 0.3.4 in Flatpak and require
`pipewire-gobject>=0.3.4,<0.4` for PyPI installs.
- Keep system-wide EQ, monitor capture, output changes, and shutdown behavior
covered by a live nested-GNOME/AT-SPI runtime smoke test.
- Remove the old WirePlumber 0.4 compatibility build path and tighten release
preflight around the new PipeWire dependency boundary.

## 0.5.1 - 2026-05-07

- Keep routing, EQ, analyzer, and output-preset switches synchronized with
Expand Down
13 changes: 11 additions & 2 deletions data/io.github.bhack.mini-eq.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,27 @@
</description>
<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/bhack/mini-eq/v0.5.1/docs/screenshots/mini-eq.png</image>
<image>https://raw.githubusercontent.com/bhack/mini-eq/v0.6.0/docs/screenshots/mini-eq.png</image>
<caption>Adjust sound output with equalizer controls</caption>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/bhack/mini-eq/v0.5.1/docs/screenshots/mini-eq-dark.png</image>
<image>https://raw.githubusercontent.com/bhack/mini-eq/v0.6.0/docs/screenshots/mini-eq-dark.png</image>
<caption>Use the equalizer with dark style</caption>
</screenshot>
</screenshots>
<url type="homepage">https://github.com/bhack/mini-eq</url>
<url type="bugtracker">https://github.com/bhack/mini-eq/issues</url>
<url type="vcs-browser">https://github.com/bhack/mini-eq</url>
<releases>
<release version="0.6.0" date="2026-05-09">
<description>
<ul>
<li>Use pipewire-gobject for PipeWire registry, metadata, routing, and monitor capture.</li>
<li>Bundle pipewire-gobject 0.3.4 in Flatpak and remove the old WirePlumber 0.4 compatibility build path.</li>
<li>Improve live runtime validation for routing, monitor capture, output changes, and shutdown behavior.</li>
</ul>
</description>
</release>
<release version="0.5.1" date="2026-05-07">
<description>
<ul>
Expand Down
Binary file modified docs/screenshots/mini-eq-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/screenshots/mini-eq.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/social-preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "mini-eq"
version = "0.5.1"
version = "0.6.0"
description = "Compact PipeWire system-wide parametric equalizer for Linux desktops."
readme = "README.md"
requires-python = ">=3.11"
Expand Down
4 changes: 2 additions & 2 deletions tools/demo_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __init__(self) -> None:
self.analyzer_levels_callback = None
self.analyzer_loudness_callback = None
self.analyzer_enabled = False
self.route_enabled = False
self.routed = False
self.demo_sink = PipeWireNode(
bound_id=101,
object_serial="101",
Expand Down Expand Up @@ -151,7 +151,7 @@ def set_analyzer_enabled(self, enabled: bool) -> bool:
return True

def route_system_audio(self, enabled: bool) -> None:
self.route_enabled = enabled
self.routed = enabled

def follow_system_default_output(self) -> None:
self.follow_default_output = True
Expand Down
Loading