repo
stringlengths
5
53
pr_number
int32
1
321k
task_type
stringclasses
2 values
issue_text
stringlengths
0
81.2k
pr_title
stringlengths
1
319
pr_body
stringlengths
0
105k
base_sha
stringlengths
40
40
head_sha
stringlengths
40
40
gold_diff
stringlengths
0
202M
changed_files
listlengths
0
100
review_threads
listlengths
0
100
test_patch
stringlengths
0
23.4M
merged
bool
1 class
Alexays/Waybar
5,007
issue_to_patch
Various toctou fixes
There are several [toctou](https://en.wikipedia.org/wiki/Time-of-check_to_time-of-use) bugs, especially in `battery.cpp`. Waybar checks if a file exists, _then after that_ opens it. If the file disappears in the time between the check and the open/read, Waybar will crash. This fixes many of those bugs by removing the `...
cca8dc38b6ed25ef78920669c5653748f31e4ba6
5af324f375edf8a6a033869d5386e711b4e49f10
diff --git a/src/AAppIconLabel.cpp b/src/AAppIconLabel.cpp index b72906c3aa..784f30c2e4 100644 --- a/src/AAppIconLabel.cpp +++ b/src/AAppIconLabel.cpp @@ -33,21 +33,21 @@ std::string toLowerCase(const std::string& input) { std::optional<std::string> getFileBySuffix(const std::string& dir, const std::string& suffix, ...
[ "src/AAppIconLabel.cpp", "src/modules/battery.cpp", "src/modules/cpu_frequency/linux.cpp" ]
[]
true
Alexays/Waybar
4,982
issue_to_patch
fix the io failure for hotplug-in device
related issue #4901. When remove the device that need power-management, Waybar would crash due to uncatch exception
202ae4bd5f2d8865704761211b3004d2fcd2d7d8
ac62754b289569b71da33f6982c63eb927796182
diff --git a/src/modules/battery.cpp b/src/modules/battery.cpp index d39c49204..30be3857e 100644 --- a/src/modules/battery.cpp +++ b/src/modules/battery.cpp @@ -126,7 +126,14 @@ void waybar::modules::Battery::refreshBatteries() { // Ignore non-system power supplies unless explicitly requested if (...
[ "src/modules/battery.cpp" ]
[]
true
Alexays/Waybar
4,990
issue_to_patch
fix(sni): use std::make_unique for Item allocation
Replace raw allocation of Item with std::make_unique to improve memory safety and align with modern C++ practices. Using std::make_unique avoids manual ownership handling and ensures exception safety during object construction, while preserving existing behavior. Tested: -Built successfully with Meson/Ninja -Ra...
3a321d934dda790f8ce8dc76d8e545abe1ec3251
7e9c46e4d15563ba6b4dc6e470b7a4b445c26c63
diff --git a/src/modules/sni/host.cpp b/src/modules/sni/host.cpp index 18eac643bf..567fbf9f7b 100644 --- a/src/modules/sni/host.cpp +++ b/src/modules/sni/host.cpp @@ -178,9 +178,11 @@ void Host::addRegisteredItem(const std::string& service) { return bus_name == item->bus_name && object_path == item->object_path; ...
[ "src/modules/sni/host.cpp" ]
[]
true
Alexays/Waybar
4,975
issue_to_patch
memory: feature - add "unit" config option
This PR adds a "unit" config option to the memory module to fix issue #2572. I also manually updated the documentation in /man.
1e965ccce06faf9515d0570329c12f7245d958ed
fc11789a4f6d437fd329cf3dada6ffb4b9aaa9e0
diff --git a/include/modules/memory.hpp b/include/modules/memory.hpp index 3b6342b344..c73ece23ac 100644 --- a/include/modules/memory.hpp +++ b/include/modules/memory.hpp @@ -19,9 +19,13 @@ class Memory : public ALabel { private: void parseMeminfo(); + static float calc_divisor(const std::string& divisor); + ...
[ "include/modules/memory.hpp", "man/waybar-memory.5.scd", "src/modules/memory/common.cpp" ]
[]
true
Alexays/Waybar
4,967
issue_to_patch
Network: fix: delete correct address type
This fixes at least two situations where Waybar thinks the interface is in "linked" (no IP) state even though there is an IP address assigned: 1. When only one of the address type is deleted (For example IPv6 with `ip addr del dev wlan0 <IPv6 here>`), even though the other type (IPv4) is still available. 2. In my s...
1e965ccce06faf9515d0570329c12f7245d958ed
16886117b3645db1cc32055a9732b4b9cf1562d9
diff --git a/src/modules/network.cpp b/src/modules/network.cpp index a39a5ed3d..6dbb8bf05 100644 --- a/src/modules/network.cpp +++ b/src/modules/network.cpp @@ -677,12 +677,15 @@ int waybar::modules::Network::handleEvents(struct nl_msg* msg, void* data) { changed_cidr); } ...
[ "src/modules/network.cpp" ]
[]
true
Alexays/Waybar
4,964
issue_to_patch
fix(network): prevent near-zero bandwidth on rapid event-driven updates
## Summary - Network bandwidth shows near-zero values during downloads when netlink events fire between timer intervals - `update()` is called from both the timer thread and event handlers (link/addr/route changes), each call consuming the byte delta and resetting `bandwidth_down_total_` - Cache the last computed ba...
49460defdc9876acae4212769daab9bbe0666d61
753294dbf4da6a7276e072c314fc7c078a8404c4
diff --git a/include/modules/network.hpp b/include/modules/network.hpp index 3bc43b2381..66fc6d04c7 100644 --- a/include/modules/network.hpp +++ b/include/modules/network.hpp @@ -70,6 +70,8 @@ class Network : public ALabel { unsigned long long bandwidth_down_total_{0}; unsigned long long bandwidth_up_total_{0};...
[ "include/modules/network.hpp", "src/modules/network.cpp" ]
[]
true
Alexays/Waybar
4,970
issue_to_patch
fix(bar): ensure exception safety for group module allocation
Replace raw allocation of group modules with std::unique_ptr to ensure exception safety during initialization. If getModules throws or a module fails to initialize, the allocated object is properly cleaned up before ownership transfer. Tested with: - simple group modules - nested groups - invalid module conf...
1e965ccce06faf9515d0570329c12f7245d958ed
36518e4eca9ccfc09403b80466621fd58a1fabfb
diff --git a/src/bar.cpp b/src/bar.cpp index 6a78707eb..6e81332c7 100644 --- a/src/bar.cpp +++ b/src/bar.cpp @@ -545,9 +545,11 @@ void waybar::Bar::getModules(const Factory& factory, const std::string& pos, if (group_config["modules"].isNull()) { spdlog::warn("Group definition '{}' has not been ...
[ "src/bar.cpp" ]
[]
true
Alexays/Waybar
4,966
issue_to_patch
niri/workspaces: feature - add "hide-empty" config option
This PR adds "hide-empty" option for niri/workspace module. #4965
1e965ccce06faf9515d0570329c12f7245d958ed
8b1e5740634093b89582d9708981aeb37b8f09ab
diff --git a/src/modules/niri/workspaces.cpp b/src/modules/niri/workspaces.cpp index 3e8a432efa..97d15215a0 100644 --- a/src/modules/niri/workspaces.cpp +++ b/src/modules/niri/workspaces.cpp @@ -114,6 +114,11 @@ void Workspaces::doUpdate() { button.show(); else button.hide(); + } else if (co...
[ "src/modules/niri/workspaces.cpp" ]
[]
true
Alexays/Waybar
4,973
issue_to_patch
Group ref fix
#4969
1e965ccce06faf9515d0570329c12f7245d958ed
ae11954398e5d9692805d46f8d52b6ffbf7e3597
diff --git a/src/bar.cpp b/src/bar.cpp index 6a78707eb9..f42f31a39f 100644 --- a/src/bar.cpp +++ b/src/bar.cpp @@ -541,7 +541,7 @@ void waybar::Bar::getModules(const Factory& factory, const std::string& pos, auto vertical = (group != nullptr ? group->getBox().get_orientation() ...
[ "src/bar.cpp", "src/modules/niri/workspaces.cpp" ]
[]
true
Alexays/Waybar
4,960
issue_to_patch
feat(client): add support for 8-bit hex color codes in CSS
This allows users to use #RRGGBBAA format in their style.css. The client now detects 8-bit hex codes, transforms them into GTK-compatible rgba() syntax, and loads the modified data into the CSS provider. - Added utility to detect 8-bit hex patterns. - Added transformation logic to convert hex alpha to decimal. - I...
49460defdc9876acae4212769daab9bbe0666d61
a9aab4e3569a0c771a873e2a4b1c8695f70430e9
diff --git a/include/util/hex_checker.hpp b/include/util/hex_checker.hpp new file mode 100644 index 0000000000..27a84d1f68 --- /dev/null +++ b/include/util/hex_checker.hpp @@ -0,0 +1,17 @@ +#pragma once + +#include <string> + +/** + * Result of transforming 8-bit hex codes to rgba(). + */ +struct TransformResult { + s...
[ "include/util/hex_checker.hpp", "meson.build", "src/client.cpp", "src/util/transform_8bit_to_rgba.cpp" ]
[]
true
Alexays/Waybar
4,962
issue_to_patch
fix: prevent resource leak when rebinding dwl globals
zdwl_ipc_manager_v2 and wl_seat are assigned via wl_registry_bind without checking for existing instances. If handle_global is triggered multiple times, previously bound objects may be overwritten without being released, leading to potential resource leaks. Destroy existing objects before rebinding to prevent res...
49460defdc9876acae4212769daab9bbe0666d61
3f69bacff018371507c9a8f8dbd78aa558a02cd1
diff --git a/src/modules/dwl/tags.cpp b/src/modules/dwl/tags.cpp index 399c7d4b0a..243aaa927c 100644 --- a/src/modules/dwl/tags.cpp +++ b/src/modules/dwl/tags.cpp @@ -70,17 +70,33 @@ static const zdwl_ipc_output_v2_listener output_status_listener_impl{ static void handle_global(void* data, struct wl_registry* regist...
[ "src/modules/dwl/tags.cpp" ]
[]
true
Alexays/Waybar
1,784
issue_to_patch
exec runs after on-* events
This is a fix for issue #1681. `exec` now runs after `on-click`, `on-click-right`, `on-*` events. Test sample: ```json "custom/camera": { "exec": "notify-send exec; echo exec", "interval": "once", "on-click": "notify-send on-click && sleep 5", "exec-on-event": true, "tooltip": false, ...
6206cebd758aee14980d3d617d80dd934bd4db6c
d6b6158ae97651cb556ad388b365069843877ed0
diff --git a/include/AModule.hpp b/include/AModule.hpp index 2ffc429ca..2fcbfc23d 100644 --- a/include/AModule.hpp +++ b/include/AModule.hpp @@ -36,6 +36,7 @@ class AModule : public IModule { SCROLL_DIR getScrollDir(GdkEventScroll *e); bool tooltipEnabled() const; + std::vector<int> pid_children_; const std...
[ "include/AModule.hpp", "src/AModule.cpp", "src/modules/custom.cpp" ]
[]
true
Alexays/Waybar
4,789
issue_to_patch
fix(json): use local CharReaderBuilder for thread safety
## Problem Crash with: ``` unhandled exception (type std::exception) in signal handler: what: in Json::Value::find(begin, end): requires objectValue or nullValue ``` ## Root Cause The `JsonParser` class uses a shared `CharReaderBuilder` member that gets accessed concurrently from multiple threads: - **IPC thread**:...
b4854f96a3a1f89ddae66f8216ea79411371167a
1639dec7d87e1aefc15bcd1603d7634844ee3d26
diff --git a/include/util/json.hpp b/include/util/json.hpp index f0736f9ba..5f756f353 100644 --- a/include/util/json.hpp +++ b/include/util/json.hpp @@ -30,15 +30,16 @@ class JsonParser { std::istringstream jsonStream(modifiedJsonStr); std::string errs; - if (!Json::parseFromStream(m_readerBuilder, jsonS...
[ "include/util/json.hpp" ]
[]
true
Alexays/Waybar
4,943
issue_to_patch
Network bandwidth is not calculated correctly if forced to reload Using the (somewhat) new bandwidth format options in the network module, I can force the bandwidth to update by clicking on the module twice (switching in and out of alt-mode), but the displayed bandwidth is too small (checked by running a speedtest)....
Fix network bandwidth rate calculation for early updates
### Summary Compute network bandwidth rates using the actual elapsed time between samples instead of the configured polling interval. This fixes #3718 , i.e. underreported bandwidth values when the network module is updated more frequently than its nominal interval, such as when multiple bars are active on differen...
ab7bfdb297357633b80eb146c419d8905e362e32
dc31db6d0c79e30fe5c5f219d8c53f1d4bfdb74c
diff --git a/include/modules/network.hpp b/include/modules/network.hpp index 4abe26bd1..3bc43b238 100644 --- a/include/modules/network.hpp +++ b/include/modules/network.hpp @@ -70,6 +70,7 @@ class Network : public ALabel { unsigned long long bandwidth_down_total_{0}; unsigned long long bandwidth_up_total_{0}; +...
[ "include/modules/network.hpp", "src/modules/network.cpp" ]
[]
true
Alexays/Waybar
4,946
issue_to_patch
fix: prevent resource leak when rebinding Wayland globals
Wayland globals (xdg_output_manager and idle_inhibit_manager) are assigned via wl_registry_bind without checking for existing instances. If handleGlobal is triggered multiple times, previously bound objects may be overwritten without being released, leading to potential resource leaks. This patch ensures that e...
ab7bfdb297357633b80eb146c419d8905e362e32
1aa32def3bff7a1af47f20440f443d53a60a9c46
diff --git a/src/client.cpp b/src/client.cpp index 103b093f5..1da3ffcb3 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -19,11 +19,26 @@ waybar::Client* waybar::Client::inst() { void waybar::Client::handleGlobal(void* data, struct wl_registry* registry, uint32_t name, const char*...
[ "src/client.cpp" ]
[]
true
Alexays/Waybar
4,953
issue_to_patch
Fix unnecessary allocation in GTK callback
This reverts #4925. After reviewing the lifetime guarantees of menuActionsMap_, the original c_str() usage is already safe in this context. The use of g_strdup is unnecessary here. Restoring the original implementation.
06c3d4393cdba6ee82cdbda43f8e73e04f91f81f
e55bff662e18cc853d6df5c820d05e3823f00ef1
diff --git a/src/ALabel.cpp b/src/ALabel.cpp index b23926d8f..795f87f19 100644 --- a/src/ALabel.cpp +++ b/src/ALabel.cpp @@ -116,9 +116,8 @@ ALabel::ALabel(const Json::Value& config, const std::string& name, const std::st } submenus_[key] = GTK_MENU_ITEM(item); menuActionsMap_[key] = it->asSt...
[ "src/ALabel.cpp" ]
[]
true
Alexays/Waybar
4,925
issue_to_patch
Fix menu-actions GTK callback pointer handling
Fix pointer lifetime handling for menu-actions GTK callbacks. The previous implementation passed a temporary pointer (`c_str()`) to the GTK callback, which could become invalid after the function scope ended. This patch ensures the pointer remains valid by allocating a copy of the string using `g_strdup`, providi...
100349a5c7f45a032712c1ec85696164d44e5430
196589cf321ef4fdf848d18f1e249199bc7821e9
diff --git a/src/ALabel.cpp b/src/ALabel.cpp index 795f87f19..b23926d8f 100644 --- a/src/ALabel.cpp +++ b/src/ALabel.cpp @@ -116,8 +116,9 @@ ALabel::ALabel(const Json::Value& config, const std::string& name, const std::st } submenus_[key] = GTK_MENU_ITEM(item); menuActionsMap_[key] = it->asSt...
[ "src/ALabel.cpp" ]
[]
true
Alexays/Waybar
4,945
issue_to_patch
clarify logical condition in wlr taskbar module
Clarify logical condition in wlr taskbar module The original condition relies on operator precedence between && and ||, which can be harder to read and may lead to misinterpretation. This change adds explicit parentheses to make the intended logic clear without altering behavior. No functional change.
ab7bfdb297357633b80eb146c419d8905e362e32
60c57b7195dabc750dfe1faca01ad936961b120b
diff --git a/src/modules/wlr/taskbar.cpp b/src/modules/wlr/taskbar.cpp index 2aef0ae37..bde909106 100644 --- a/src/modules/wlr/taskbar.cpp +++ b/src/modules/wlr/taskbar.cpp @@ -198,7 +198,7 @@ void Task::handle_title(const char* title) { title_ = title; hide_if_ignored(); - if (!with_icon_ && !with_name_ || ap...
[ "src/modules/wlr/taskbar.cpp" ]
[]
true
Alexays/Waybar
4,948
issue_to_patch
Network: Fix default interface selection.
When an interface is not specified for the network module, we parse the routing table to look for default routes. We have defined a default route to: - have a gateway specified, and - have no destination specified, or have an all-zero destination. Previous versions of Waybar had the second condition inverted, c...
ab7bfdb297357633b80eb146c419d8905e362e32
b64265bdf71eba390b0dbebcea674bfa5434c231
diff --git a/src/modules/network.cpp b/src/modules/network.cpp index a4f2bcc29..6c31324a9 100644 --- a/src/modules/network.cpp +++ b/src/modules/network.cpp @@ -744,16 +744,20 @@ int waybar::modules::Network::handleEvents(struct nl_msg* msg, void* data) { /* The destination address. * Should ...
[ "src/modules/network.cpp" ]
[]
true
Alexays/Waybar
4,939
issue_to_patch
chore: Stop using deprecated/removed Nerdfonts codepoints
These Nerdfonts codepoints were removed in [Nerdfonts 3.0.0](https://www.nerdfonts.com/releases#v3.0.0): > **Breaking 2: Material Design Icons Codepoints** > > The old Material Design Icon codepoints are finally dropped. Due to an historic mistake we placed them in between some asiatic glyphs, breaking that script...
6cb68737e64a851797a26566c7859b53eb2fd8bc
a05c7bc28ffaf889826102cb8e9ac75e9577b4ce
diff --git a/include/modules/gamemode.hpp b/include/modules/gamemode.hpp index f63861a38..89f66272b 100644 --- a/include/modules/gamemode.hpp +++ b/include/modules/gamemode.hpp @@ -26,7 +26,7 @@ class Gamemode : public AModule { const std::string DEFAULT_FORMAT = "{glyph}"; const std::string DEFAULT_FORMAT_ALT = ...
[ "include/modules/gamemode.hpp", "man/waybar-clock.5.scd", "man/waybar-gamemode.5.scd", "man/waybar-pulseaudio.5.scd", "man/waybar-river-mode.5.scd", "man/waybar-sway-mode.5.scd", "man/waybar-wireplumber.5.scd", "resources/config.jsonc" ]
[]
true
Alexays/Waybar
4,929
issue_to_patch
systemd-failed-units: add tooltip with list of failed units
Something I've been missing in the `systemd-failed-units` module: a way to see _which_ units failed. This implements it as a customizable tooltip. <img width="1018" height="318" alt="tooltip" src="https://github.com/user-attachments/assets/7d522f35-6505-40e9-8ba7-d720193ff6d9" /> Currently, the tooltip defaults t...
1019c9d2fe9432e7151cb336ab6b3d523d8cf123
e7c077ab9a5cd959bd412d18df84462cbd97e3b1
diff --git a/include/modules/systemd_failed_units.hpp b/include/modules/systemd_failed_units.hpp index ffb250821..3eda799a2 100644 --- a/include/modules/systemd_failed_units.hpp +++ b/include/modules/systemd_failed_units.hpp @@ -3,6 +3,7 @@ #include <giomm/dbusproxy.h> #include <string> +#include <vector> #inclu...
[ "include/modules/systemd_failed_units.hpp", "man/waybar-systemd-failed-units.5.scd", "src/modules/systemd_failed_units.cpp" ]
[]
true
Alexays/Waybar
3,863
issue_to_patch
add module wayfire/window, wayfire/workspaces
I implemented Wayfire integration (especially for workspaces and window) since it did not seem to exist. I have confirmed that it works in my environment, but please let me know if there is anything else I can do.
e9d0f2254de7d0bfb1c222cadfe866b830209f31
a88e5795a448ece7a19b88fc9a8b77a74b62726b
diff --git a/include/modules/wayfire/backend.hpp b/include/modules/wayfire/backend.hpp new file mode 100644 index 000000000..9d55c8200 --- /dev/null +++ b/include/modules/wayfire/backend.hpp @@ -0,0 +1,122 @@ +#pragma once + +#include <json/json.h> +#include <unistd.h> + +#include <functional> +#include <list> +#includ...
[ "include/modules/wayfire/backend.hpp", "include/modules/wayfire/window.hpp", "include/modules/wayfire/workspaces.hpp", "man/waybar-wayfire-window.5.scd", "man/waybar-wayfire-workspaces.5.scd", "meson.build", "src/factory.cpp", "src/modules/wayfire/backend.cpp", "src/modules/wayfire/window.cpp", "s...
[]
true
Alexays/Waybar
4,938
issue_to_patch
Hyprland IPC Crash with hyprland/window I am running into a seg fault when using hyprland/window with hyprland v0.54.1 on nixos. It fails to parse the new ipc is my guess as gdb is giving ``` Thread 9 ".waybar-wrapped" received signal SIGSEGV, Segmentation fault. [Switching to Thread 0x7fffdb6fc6c0 (LWP 33538)] 0x000...
fix(hyprland/window): Fix segfault caused by use-after-free
The window module registers itself with the Hyprland IPC singleton at the start of its constructor, before calling update(). If update() throws an exception (e.g. from an invalid format string), the object is destroyed without the destructor running, leaving a dangling pointer in the IPC callback list. When the IPC thr...
6cb68737e64a851797a26566c7859b53eb2fd8bc
83e1949dd8435d5f8991de366a8327a2a6e58786
diff --git a/src/modules/hyprland/window.cpp b/src/modules/hyprland/window.cpp index d3fe6edf9..2e3e0bb9e 100644 --- a/src/modules/hyprland/window.cpp +++ b/src/modules/hyprland/window.cpp @@ -19,20 +19,19 @@ std::shared_mutex windowIpcSmtx; Window::Window(const std::string& id, const Bar& bar, const Json::Value& co...
[ "src/modules/hyprland/window.cpp" ]
[]
true
Alexays/Waybar
4,937
issue_to_patch
Add an option for groups to start expanded by default Currently, group modules configured as drawers always initialize in a collapsed state. I would prefer my modules to be visible at a glance when Waybar starts up, giving me the option to collapse them later if I want a cleaner bar. Right now, I have to manually hove...
Add start-expanded option to group
Fixes #4936 This adds a new "start-expanded" option for the "drawer" object in the "group" module. Defaults to false to preserve backwards compatibility.
6cb68737e64a851797a26566c7859b53eb2fd8bc
6afe10864279dd09a66c13d222f61e9d1bcaa260
diff --git a/man/waybar.5.scd.in b/man/waybar.5.scd.in index 624798ed8..8b923eef9 100644 --- a/man/waybar.5.scd.in +++ b/man/waybar.5.scd.in @@ -363,6 +363,11 @@ A group may hide all but one element, showing them only on mouse hover. In order default: false ++ Whether left click should reveal the content rather tha...
[ "man/waybar.5.scd.in", "src/group.cpp" ]
[]
true
Alexays/Waybar
4,931
issue_to_patch
chore: remove heaptrack dump
Accidentally committed...
b77b1818f63492870f2e467d913d90d23d1c4c14
86234a8946787798ba39530ea3c74b017efe87d2
diff --git a/.gitignore b/.gitignore index f42bf85e5..f21700d6b 100644 --- a/.gitignore +++ b/.gitignore @@ -52,3 +52,4 @@ result-* .ccls-cache _codeql_detected_source_root +heaptrack* diff --git a/heaptrack.waybar.2711357.zst b/heaptrack.waybar.2711357.zst deleted file mode 100644 index 88921cba1..000000000 Binary...
[ ".gitignore", "heaptrack.waybar.2711357.zst" ]
[]
true
Alexays/Waybar
4,710
issue_to_patch
cava man
Hi @Alexays , this PR updates man file to align the documentation with the current behavior of the module. Wiki is updated as well
97eb60677e555221326009e0bc3def67e85d33f4
c8c3287be3a3c13701795c6dfb0f8fdfa40312d1
diff --git a/man/waybar-cava.5.scd b/man/waybar-cava.5.scd index 7825c38a2..95336e248 100644 --- a/man/waybar-cava.5.scd +++ b/man/waybar-cava.5.scd @@ -8,6 +8,8 @@ waybar - cava module *cava* module for karlstav/cava project. See it on github: https://github.com/karlstav/cava. +Module supports two different front...
[ "man/waybar-cava.5.scd" ]
[]
true
Alexays/Waybar
4,932
issue_to_patch
cava bump
Hi @Alexays, This PR is self-descriptive )
b77b1818f63492870f2e467d913d90d23d1c4c14
95f9922ccc6e931d161b6d846f83b747f63b01af
diff --git a/nix/default.nix b/nix/default.nix index 43b6e0970..1850a4149 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -6,13 +6,13 @@ }: let libcava = rec { - version = "0.10.7-beta"; + version = "0.10.7"; src = pkgs.fetchFromGitHub { owner = "LukashonakV"; repo = "cava"; #...
[ "nix/default.nix", "subprojects/libcava.wrap" ]
[]
true
Alexays/Waybar
4,924
issue_to_patch
Add simple calendar tooltip example for clock module
Adds a simple example showing how to display the calendar in the clock tooltip using `{calendar}`. This helps users understand how to configure a calendar tooltip in Waybar.
100349a5c7f45a032712c1ec85696164d44e5430
558c2753d79bcbaa87ef4c3c2cf4f63578bd6484
diff --git a/man/waybar-clock.5.scd b/man/waybar-clock.5.scd index b4b5d5b72..5c5509f69 100644 --- a/man/waybar-clock.5.scd +++ b/man/waybar-clock.5.scd @@ -259,7 +259,19 @@ View all valid format options in *strftime(3)* or have a look https://en.cpprefe "tooltip-format": "{tz_list}" } ``` +5. Simple calendar toolt...
[ "man/waybar-clock.5.scd" ]
[]
true
Alexays/Waybar
4,913
issue_to_patch
fix(tray): complete attention/overlay implementation
Top is current version, bottom shows the overlay/attention working with PR <img width="51" height="114" alt="image" src="https://github.com/user-attachments/assets/19ba21f1-24f9-4594-ab97-9c4e5fb97650" />
e425423648ea620627a0ba0c9c81173af18c0254
8e2e437ec665af43a7d16d80b53934ea3fefe733
diff --git a/include/modules/sni/host.hpp b/include/modules/sni/host.hpp index 7248ad2f4..d76ec74a4 100644 --- a/include/modules/sni/host.hpp +++ b/include/modules/sni/host.hpp @@ -16,7 +16,7 @@ class Host { public: Host(const std::size_t id, const Json::Value&, const Bar&, const std::function<void(std::un...
[ "include/modules/sni/host.hpp", "include/modules/sni/item.hpp", "include/modules/sni/tray.hpp", "src/modules/sni/host.cpp", "src/modules/sni/item.cpp", "src/modules/sni/tray.cpp", "src/modules/sni/watcher.cpp" ]
[]
true
Alexays/Waybar
4,910
issue_to_patch
fix(hyprland): misc hardening with ipc socket and events
Formatting handled in https://github.com/Alexays/Waybar/pull/4911
e425423648ea620627a0ba0c9c81173af18c0254
6317022304a49c0033c52f0c6cdfe038e88dd314
diff --git a/include/modules/hyprland/window.hpp b/include/modules/hyprland/window.hpp index 2be645942..9725d33a1 100644 --- a/include/modules/hyprland/window.hpp +++ b/include/modules/hyprland/window.hpp @@ -20,8 +20,8 @@ class Window : public waybar::AAppIconLabel, public EventHandler { private: struct Workspa...
[ "include/modules/hyprland/window.hpp", "include/modules/hyprland/workspaces.hpp", "src/modules/hyprland/backend.cpp", "src/modules/hyprland/language.cpp", "src/modules/hyprland/submap.cpp", "src/modules/hyprland/window.cpp", "src/modules/hyprland/workspaces.cpp", "test/hyprland/backend.cpp" ]
[]
diff --git a/test/hyprland/backend.cpp b/test/hyprland/backend.cpp index cc7295eca..ccc2da65a 100644 --- a/test/hyprland/backend.cpp +++ b/test/hyprland/backend.cpp @@ -86,6 +86,24 @@ TEST_CASE("XDGRuntimeDirExistsNoHyprDir", "[getSocketFolder]") { fs::remove_all(tempDir, ec); } +TEST_CASE("Socket folder is resol...
true
Alexays/Waybar
4,911
issue_to_patch
menus not showing after ef3d55980e The pop-up menu stopped popping up for me on Artix. With increased logging, the following errors occurred when attempting to show the menu: ``` (waybar:26625): Gtk-CRITICAL **: 22:12:48.111: gtk_widget_show_all: assertion 'GTK_IS_WIDGET (widget)' failed (waybar:26625): ...
fix(menu): keep popup menus alive after builder teardown
The popup menu was retrieved from GtkBuilder and stored in menu_, but the builder was unref'd immediately after construction. That left the later popup path operating on a builder-owned GtkMenu whose lifetime was no longer guaranteed, which matches the GTK_IS_WIDGET and GTK_IS_MENU assertions from the regression report...
68d4360c262f3aa77ae69ea04ad92114ca7ab7d4
790101f824513a6b48396fd956dd3a9dfae5ad4b
diff --git a/include/modules/sway/ipc/client.hpp b/include/modules/sway/ipc/client.hpp index eb0f32f9c..f6eb7c40e 100644 --- a/include/modules/sway/ipc/client.hpp +++ b/include/modules/sway/ipc/client.hpp @@ -13,8 +13,8 @@ #include "ipc.hpp" #include "util/SafeSignal.hpp" -#include "util/sleeper_thread.hpp" #inclu...
[ "include/modules/sway/ipc/client.hpp", "src/ALabel.cpp", "src/AModule.cpp", "src/modules/custom.cpp", "src/modules/hyprland/window.cpp", "src/modules/niri/backend.cpp", "test/utils/command.cpp" ]
[]
diff --git a/test/utils/command.cpp b/test/utils/command.cpp index 2ccb33830..053a2b77a 100644 --- a/test/utils/command.cpp +++ b/test/utils/command.cpp @@ -4,11 +4,12 @@ #include <catch2/catch.hpp> #endif +#include <sys/wait.h> +#include <unistd.h> + #include <cerrno> #include <list> #include <mutex> -#include ...
true
Alexays/Waybar
4,897
issue_to_patch
[BUG][Network] Inconsistent bandwidth calculation in tooltip (missing unit conversion) ## Description In **NETWORK** module, I noticed that the network bandwidth calculation logic in the `tooltip_text` is inconsistent with the `text`, resulting in incorrect values (off by a factor of **1000**). ## Context In a prev...
fix(network): align tooltip and tooltip text
Closes https://github.com/Alexays/Waybar/issues/4867 Also a small tweak to prevent the massive network spam i was seeing in logs.
fd086d0f3366206417bcf59cc18679e32154072f
c5449bd361bed8be9875c1322fd0d693ba975cdd
diff --git a/src/modules/network.cpp b/src/modules/network.cpp index 34dcc03c1..a25024e80 100644 --- a/src/modules/network.cpp +++ b/src/modules/network.cpp @@ -373,18 +373,26 @@ auto waybar::modules::Network::update() -> void { fmt::arg("cidr6", cidr6_), fmt::arg("frequency", fmt::format("{:.1f}", frequency...
[ "src/modules/network.cpp" ]
[]
true
Alexays/Waybar
4,892
issue_to_patch
fix(command): return non-zero when child exec fails
Child exec failure paths were returning success, which masked command launch errors from callers. I switched the child-side failure exits to _exit(127) and added errno-specific logging so failures propagate with actionable diagnostics.
fd086d0f3366206417bcf59cc18679e32154072f
79fb1d9f58d15cb3704a62359a7457451cbc0164
diff --git a/include/util/command.hpp b/include/util/command.hpp index b1adcd7c9..f6d2cabf8 100644 --- a/include/util/command.hpp +++ b/include/util/command.hpp @@ -20,6 +20,8 @@ extern std::list<pid_t> reap; namespace waybar::util::command { +constexpr int kExecFailureExitCode = 127; + struct res { int exit_c...
[ "include/util/command.hpp", "test/utils/command.cpp", "test/utils/meson.build" ]
[]
diff --git a/test/utils/command.cpp b/test/utils/command.cpp new file mode 100644 index 000000000..2ccb33830 --- /dev/null +++ b/test/utils/command.cpp @@ -0,0 +1,56 @@ +#if __has_include(<catch2/catch_test_macros.hpp>) +#include <catch2/catch_test_macros.hpp> +#else +#include <catch2/catch.hpp> +#endif + +#include <ce...
true
Alexays/Waybar
4,891
issue_to_patch
fix(hyprland-ipc): harden fd lifecycle and listener loop
Another slight implementation shift to protect against memory / open file leaks. Hyprland IPC had fd lifecycle risks on failure/shutdown paths and used a spin-sleep listener model. I initialized fd state defensively, tightened connect/close/shutdown handling, moved to blocking read with newline framing, and ad...
fd086d0f3366206417bcf59cc18679e32154072f
8d22d3e07a629470114edcebabe6d6fb6afe85cf
diff --git a/include/modules/hyprland/backend.hpp b/include/modules/hyprland/backend.hpp index 2e0ef6571..a6ebd1917 100644 --- a/include/modules/hyprland/backend.hpp +++ b/include/modules/hyprland/backend.hpp @@ -1,5 +1,6 @@ #pragma once +#include <atomic> #include <filesystem> #include <list> #include <mutex> @@...
[ "include/modules/hyprland/backend.hpp", "include/modules/sway/ipc/client.hpp", "include/modules/wayfire/backend.hpp", "include/util/scoped_fd.hpp", "src/modules/hyprland/backend.cpp", "src/modules/niri/backend.cpp", "src/modules/sway/ipc/client.cpp", "src/modules/wayfire/backend.cpp", "test/hyprland...
[]
diff --git a/test/hyprland/backend.cpp b/test/hyprland/backend.cpp index b83b839cb..cc7295eca 100644 --- a/test/hyprland/backend.cpp +++ b/test/hyprland/backend.cpp @@ -4,56 +4,114 @@ #include <catch2/catch.hpp> #endif -#include "fixtures/IPCTestFixture.hpp" +#include <system_error> + +#include "modules/hyprland/ba...
true
Alexays/Waybar
4,898
issue_to_patch
perf(memory): optimize string operations; remove deep copies, memdup, and icon theme rescanning
Bunch of different optimizations while profiling with heaptrack and valgrind to reduce memory churn. Mostly minimal gains from a lot of it but the sni optimizations do seem to help reduce a lot.
fd086d0f3366206417bcf59cc18679e32154072f
fe03dfaa3bb32622139a1a3b124d31af631e7837
diff --git a/heaptrack.waybar.2711357.zst b/heaptrack.waybar.2711357.zst new file mode 100644 index 000000000..88921cba1 Binary files /dev/null and b/heaptrack.waybar.2711357.zst differ diff --git a/include/modules/disk.hpp b/include/modules/disk.hpp index 1b4f31761..b576e19fc 100644 --- a/include/modules/disk.hpp +++ ...
[ "heaptrack.waybar.2711357.zst", "include/modules/disk.hpp", "include/modules/hyprland/windowcreationpayload.hpp", "include/modules/hyprland/workspaces.hpp", "include/modules/mpd/mpd.hpp", "include/modules/sni/host.hpp", "include/modules/sway/bar.hpp", "include/modules/sway/language.hpp", "include/mo...
[]
diff --git a/test/utils/sleeper_thread.cpp b/test/utils/sleeper_thread.cpp index 7a9a3ca12..9e1a1ef3d 100644 --- a/test/utils/sleeper_thread.cpp +++ b/test/utils/sleeper_thread.cpp @@ -4,11 +4,12 @@ #include <catch2/catch.hpp> #endif -#include <chrono> #include <sys/wait.h> -#include <thread> #include <unistd.h> ...
true
Alexays/Waybar
4,895
issue_to_patch
Float Interval < 1 always creates 1ms interval for custom modules This always evaluates to 0 for any float interval between 0 and 1: https://github.com/Alexays/Waybar/blob/fd086d0f3366206417bcf59cc18679e32154072f/src/ALabel.cpp#L29 So the std::max call evaluates to 1ms Looks to have been introduced in https://github...
fix: float interval cast
Fixes https://github.com/Alexays/Waybar/issues/4894 I did test the fix locally and it worked and passed all tests. I was unsure of where to add a regression test. Apologies for lack of direct evidence. I would normally put up a video, but my linux workstation is where I tested this and that is a separate computer...
fd086d0f3366206417bcf59cc18679e32154072f
d929f1a62c764a4cff0897540bc00bf24beb0d5e
diff --git a/src/ALabel.cpp b/src/ALabel.cpp index 0d92c3720..fe87e0988 100644 --- a/src/ALabel.cpp +++ b/src/ALabel.cpp @@ -26,7 +26,7 @@ ALabel::ALabel(const Json::Value& config, const std::string& name, const std::st : std::chrono::milliseconds( (config_["interval"].is...
[ "src/ALabel.cpp" ]
[]
true
Alexays/Waybar
4,905
issue_to_patch
fix(mpris): disconnect GLib signals before destroying objects
Waybar SEGVs in `Glib::DispatchNotifier::pipe_io_handler` when the MPRIS module is enabled. The crash is intermittent because it requires a race between signal emission and object destruction: a playerctl GLib signal callback (e.g. onPlayerPlay) calls `dp.emit()`, which writes a pointer to the Dispatcher into an intern...
fd086d0f3366206417bcf59cc18679e32154072f
a81621863790ce42cff243b215a01c229cef9142
diff --git a/src/modules/mpris/mpris.cpp b/src/modules/mpris/mpris.cpp index 1bdd7df66..5771a5baf 100644 --- a/src/modules/mpris/mpris.cpp +++ b/src/modules/mpris/mpris.cpp @@ -161,8 +161,7 @@ Mpris::Mpris(const std::string& id, const Json::Value& config) if (player) { g_object_connect(player, "signal::play", G...
[ "src/modules/mpris/mpris.cpp" ]
[]
true
Alexays/Waybar
4,900
issue_to_patch
All tooltips stop rendering across the bar when user includes a custom module with a menu, tooltip enabled, and custom tooltip-format. ## Issue **All tooltips stop rendering across the bar** when there is at least one `custom/*` module that simultaneously has: - `"tooltip": true` - `"tooltip-format": "<any value, incl...
fix: sync tooltip updates without resetting hover state
Keep custom module tooltip content in sync while avoiding hover regressions. Instead of calling set_tooltip_markup() on every refresh, compute the desired tooltip string and only update the GTK tooltip when the value changes using a local cache (last_tooltip_markup_). This preserves tooltip-format/{tooltip} beh...
fd086d0f3366206417bcf59cc18679e32154072f
3eb2c7e8f43b25387e68b9e320321edf274840ee
diff --git a/include/modules/custom.hpp b/include/modules/custom.hpp index 6c17c6e45..a345a33bc 100644 --- a/include/modules/custom.hpp +++ b/include/modules/custom.hpp @@ -35,6 +35,7 @@ class Custom : public ALabel { std::string id_; std::string alt_; std::string tooltip_; + std::string last_tooltip_markup_;...
[ "include/modules/custom.hpp", "src/modules/custom.cpp" ]
[]
true
Alexays/Waybar
4,844
issue_to_patch
Battery module continuously outputs battery state to the console. <img width="334" height="984" alt="Image" src="https://github.com/user-attachments/assets/bf78fc06-ab98-49fa-991c-958f667c419a" /> yeah so basically after every second, the battery status is constantly being outputted to the console for some reason. T...
fix: remove unnecessary console log for battery status
### Description This PR removes the battery status log printed on every module update. Closes #4840 Closes #4887 <img width="936" height="506" alt="image" src="https://github.com/user-attachments/assets/40bf6b87-1d43-4d34-9a80-2c318850c8f9" />
d527ccd4c1f53f4bb161677b451aabb89556f2d5
bd222984bb61ce09f942cba94204d1d53b41e365
diff --git a/src/modules/battery.cpp b/src/modules/battery.cpp index c706eb3cd..8bf4a431c 100644 --- a/src/modules/battery.cpp +++ b/src/modules/battery.cpp @@ -686,7 +686,7 @@ auto waybar::modules::Battery::update() -> void { status = getAdapterStatus(capacity); } auto status_pretty = status; - puts(status...
[ "src/modules/battery.cpp" ]
[]
true
Alexays/Waybar
4,890
issue_to_patch
fix(util): bound SafeSignal queue growth under burst load
SafeSignal could queue events forever when worker threads emitted faster than the main loop could consume, which risks memory growth and stale updates. I added a queue cap with a drop-oldest policy so growth stays bounded under burst load, plus a regression test that validates bounded delivery.
31b373b9849091ab95aa8cf31c606e87da95e608
e4ff024fa87af9ad63b6a9fc9da8f0beb5afa7c6
diff --git a/include/util/SafeSignal.hpp b/include/util/SafeSignal.hpp index 340f74eeb..1e901792e 100644 --- a/include/util/SafeSignal.hpp +++ b/include/util/SafeSignal.hpp @@ -6,6 +6,7 @@ #include <functional> #include <mutex> #include <queue> +#include <cstddef> #include <thread> #include <tuple> #include <type...
[ "include/util/SafeSignal.hpp", "test/utils/SafeSignal.cpp" ]
[]
diff --git a/test/utils/SafeSignal.cpp b/test/utils/SafeSignal.cpp index e7e096b09..1502b7d92 100644 --- a/test/utils/SafeSignal.cpp +++ b/test/utils/SafeSignal.cpp @@ -9,6 +9,7 @@ #endif #include <thread> #include <type_traits> +#include <vector> #include "fixtures/GlibTestsFixture.hpp" @@ -141,3 +142,33 @@ TE...
true
Alexays/Waybar
4,889
issue_to_patch
fix(util): ensure SleeperThread lifecycle safety and thread sync
This PR addresses critical stability issues in the SleeperThread utility class. It fixes a known crash during thread reassignment and resolves potential data races on control flags. Motivation 1. Crash on Reassignment: The operator= implementation previously replaced\ the std::thread object without ensuring...
31b373b9849091ab95aa8cf31c606e87da95e608
864523772d427fea72f99a6fe9dcc100dc708acc
diff --git a/include/util/sleeper_thread.hpp b/include/util/sleeper_thread.hpp index 62d129317..966772a20 100644 --- a/include/util/sleeper_thread.hpp +++ b/include/util/sleeper_thread.hpp @@ -1,5 +1,6 @@ #pragma once +#include <atomic> #include <chrono> #include <condition_variable> #include <ctime> @@ -31,8 +32...
[ "include/util/sleeper_thread.hpp", "test/utils/meson.build", "test/utils/sleeper_thread.cpp" ]
[]
diff --git a/test/utils/meson.build b/test/utils/meson.build index b7b3665a8..050af262b 100644 --- a/test/utils/meson.build +++ b/test/utils/meson.build @@ -13,6 +13,7 @@ test_src = files( '../../src/config.cpp', 'JsonParser.cpp', 'SafeSignal.cpp', + 'sleeper_thread.cpp', 'css_reload_helper.cpp',...
true
Alexays/Waybar
4,888
issue_to_patch
Waybar just stops working/deadlocking My waybar just stops working correctly. At first it was just laggy and stuttering, couldn't keep up when I interact with it ( like changing volume). After I switched PulseAudio with PipeWire and WirePlumber and also changed it in my waybar config, It just stops responding and can'...
[WIP] Fix waybar responsiveness and interaction issues
- [x] Fix AudioBackend destructor: lock mainloop before disconnecting context - [x] Fix AudioBackend PA_CONTEXT_FAILED reconnect: unref old context to prevent leaks - [x] Fix critical bug: PA_CONTEXT_TERMINATED unconditionally killing mainloop on reconnect - [x] Fix Wireplumber use-after-free: disconnect signal handler...
7744320ab2c793d092620c2ec859327280b676a6
d5297bc42444f22a7266415d9f3042566c101043
diff --git a/src/modules/wireplumber.cpp b/src/modules/wireplumber.cpp index e9cb72065..0c0d1dde7 100644 --- a/src/modules/wireplumber.cpp +++ b/src/modules/wireplumber.cpp @@ -54,6 +54,15 @@ waybar::modules::Wireplumber::Wireplumber(const std::string& id, const Json::Val waybar::modules::Wireplumber::~Wireplumber()...
[ "src/modules/wireplumber.cpp", "src/util/audio_backend.cpp" ]
[]
true
Alexays/Waybar
4,834
issue_to_patch
feat(niri): niri depends on socket
Don't attempt to use niri modules when socket connection fails. Prevents rendering modules when running another compositor. In same concept as previous Hyprland change https://github.com/Alexays/Waybar/commit/4295faa7c4b23b7f6e86669d1fe8c93562e10241 Trying niri out and noticed this issue we previously had with Hyprl...
d31b131f800d0b2124148f3507e9a4e3ccafff99
ae60ca62331edeba08d75ef68d0c6c5fe53c9c79
diff --git a/include/modules/niri/backend.hpp b/include/modules/niri/backend.hpp index 42b9ff7f8..07be039af 100644 --- a/include/modules/niri/backend.hpp +++ b/include/modules/niri/backend.hpp @@ -17,7 +17,7 @@ class EventHandler { class IPC { public: - IPC() { startIPC(); } + IPC(); void registerForIPC(con...
[ "include/modules/niri/backend.hpp", "src/modules/niri/backend.cpp" ]
[]
true
Alexays/Waybar
4,880
issue_to_patch
mpd: fix socket FD leak on system-level connection errors
The MPD module leaks socket file descriptors when socket-level errors (`ECONNRESET`, `EPIPE`, `ETIMEDOUT`, etc.) occur, causing Waybar to crash after 12–48h once the process FD table exceeds 1024 entries and `mpd_connection_new()` triggers glibc's fortified `FD_SET` check (`__fdelt_warn → abort`). ## Root cause `chec...
64ecdcfa879b9577dc47b6ace02edda92935d12e
82f076c6c200d0d7e29b0bc4cfd0a8955f3d1ead
diff --git a/src/modules/mpd/mpd.cpp b/src/modules/mpd/mpd.cpp index f0cc5757f..1e28a58a3 100644 --- a/src/modules/mpd/mpd.cpp +++ b/src/modules/mpd/mpd.cpp @@ -323,6 +323,7 @@ void waybar::modules::MPD::checkErrors(mpd_connection* conn) { case MPD_ERROR_SYSTEM: if (auto ec = mpd_connection_get_system_error...
[ "src/modules/mpd/mpd.cpp" ]
[]
true
Alexays/Waybar
4,881
issue_to_patch
battery: fix SIGABRT on USB device unplug race condition
When a USB device with a battery (e.g. a security key) is unplugged, there's a race between the `fs::directory_iterator` finding the power supply path and `inotify_add_watch` being called on its `uevent` file. If the device disappears in between, `inotify_add_watch` returns -1 and the previous code threw `std::runtime_...
64ecdcfa879b9577dc47b6ace02edda92935d12e
49d4049ea3f347f207abafb03eea0bcd5f698838
diff --git a/src/modules/battery.cpp b/src/modules/battery.cpp index 58a7f50e7..bdf29ffb9 100644 --- a/src/modules/battery.cpp +++ b/src/modules/battery.cpp @@ -139,7 +139,8 @@ void waybar::modules::Battery::refreshBatteries() { auto event_path = (node.path() / "uevent"); auto wd = inotify_add...
[ "src/modules/battery.cpp" ]
[]
true
Alexays/Waybar
4,879
issue_to_patch
bluetooth: fix segfault when DBus manager fails to initialize
When `g_dbus_object_manager_client_new_for_bus_sync()` times out or fails, it returns `nullptr`. That null pointer was used unconditionally in `findCurController()`, `findConnectedDevices()`, and `g_signal_connect()` calls — causing an immediate segfault. ## Changes - **`findCurController()`** — return `std::nullopt`...
64ecdcfa879b9577dc47b6ace02edda92935d12e
0c46818e95fb694394f5c06e3965c18d377cacd6
diff --git a/src/modules/bluetooth.cpp b/src/modules/bluetooth.cpp index f491f19b3..c59af3b59 100644 --- a/src/modules/bluetooth.cpp +++ b/src/modules/bluetooth.cpp @@ -111,13 +111,16 @@ waybar::modules::Bluetooth::Bluetooth(const std::string& id, const Json::Value& findConnectedDevices(cur_controller_->path, conn...
[ "src/modules/bluetooth.cpp" ]
[]
true
Alexays/Waybar
4,846
issue_to_patch
MPRIS: needs some improvements when more than one player is active I'm seeing some problems with the module, regarding having more than one track/video playing at the same time. Situation 1: 1. I put a song for example in mopidy, the MPRIS module indicates mopidy playing; 2. Then, I open a video on youtube thro...
fix(mpris): fall back to next non-ignored player and prefer playing players
When using `playerctld`, the MPRIS module had several issues with player selection: - **Ignored players caused widget to disappear** — If the most recently active player was in `ignored-players`, `getPlayerInfo()` returned `std::nullopt` with no fallback, hiding the widget entirely even when other valid players we...
d527ccd4c1f53f4bb161677b451aabb89556f2d5
a871d90161fadab34b494d0ee5d018eb90496b8d
diff --git a/include/modules/mpris/mpris.hpp b/include/modules/mpris/mpris.hpp index ad4dac1e1..a33db4d2b 100644 --- a/include/modules/mpris/mpris.hpp +++ b/include/modules/mpris/mpris.hpp @@ -78,6 +78,7 @@ class Mpris : public ALabel { PlayerctlPlayerManager* manager; PlayerctlPlayer* player; + PlayerctlPlaye...
[ "include/modules/mpris/mpris.hpp", "src/modules/mpris/mpris.cpp" ]
[]
true
Alexays/Waybar
4,821
issue_to_patch
fix: owerwrite handleScroll to remove any scrolling handling from group
Hi! This PR completely removes execution of any command on scroll (even set specifically with "on-scroll-up" or "on-scroll-down") by overwriting handleScroll method for group module.
a8bbc90efecce06d0979d7b93456ab9a5808ca66
40200afb6890f4488b9c850b6d3a98526828d212
diff --git a/include/group.hpp b/include/group.hpp index 41cb5ee0b..d5cbb289d 100644 --- a/include/group.hpp +++ b/include/group.hpp @@ -30,6 +30,7 @@ class Group : public AModule { bool handleMouseEnter(GdkEventCrossing* const& ev) override; bool handleMouseLeave(GdkEventCrossing* const& ev) override; bool ha...
[ "include/group.hpp", "src/group.cpp" ]
[]
true
Alexays/Waybar
4,836
issue_to_patch
tooltips do not display provided values I have a custom module ``` "custom/xmr": { "exec": "~/.local/bin/xmr", "interval": 600, "return-type": "json", "tooltip": true, "format": "XMR £{}", "tooltip-format": "XMR £{}" }, ``` Which listens to the output of a script, one such output is provided: ``` {"te...
feat: add `{tooltip}` in format replacements in custom module
### Description This PR fixes a key issue in custom module. `tooltip` cannot be passed in `"tooltip": "{tooltip} some random text"` when return-type is `json`, as `{tooltip}` is not added in format replacements. **Before**: `~/.config/waybar/scripts/pacman-updates.py` ```py #!/usr/bin/env python3 import subprocess im...
306f9706844d2e25c89b1338d12983600f416447
f96fb53eebba39130cd7ec20b06c77aaff066472
diff --git a/src/modules/custom.cpp b/src/modules/custom.cpp index 0a8d9cf6d..e2b705da0 100644 --- a/src/modules/custom.cpp +++ b/src/modules/custom.cpp @@ -182,9 +182,10 @@ auto waybar::modules::Custom::update() -> void { if (tooltipEnabled()) { if (tooltip_format_enabled_) { auto tool...
[ "src/modules/custom.cpp" ]
[]
true
AlexsJones/llmfit
606
issue_to_patch
This app can't run on your PC issue When I launched it, it shows the message as title says. Device Name Desktop-i5-12400F Processor 12th Gen Intel(R) Core(TM) i5-12400F 2.50 GHz Installed RAM 64.0 GB (63.9 GB usable) Storage 3.64 TB SSD SanDisk SDSSDH3 4T00 Graphics Card NVIDIA GeForce RTX 3060 (12 GB) System Type...
fix: bundle WebView2 bootstrapper for Windows desktop app
## Summary - Adds `webviewInstallMode: "downloadBootstrapper"` to `tauri.conf.json` so the Windows installer automatically downloads and installs WebView2 if it's missing ## Context Users on Windows 10 without WebView2 pre-installed hit "This app can't run on your PC" (#195). The root cause is that `tauri.conf.json`...
e317fb8502b485c1721c03d88a3f8bc1e63659b3
7fa52aadcc92d565cc19e2eb6489fdd1c3abd54d
diff --git a/llmfit-desktop/tauri.conf.json b/llmfit-desktop/tauri.conf.json index e9a2c00b..f9fd7243 100644 --- a/llmfit-desktop/tauri.conf.json +++ b/llmfit-desktop/tauri.conf.json @@ -5,6 +5,11 @@ "build": { "frontendDist": "./ui" }, + "bundle": { + "windows": { + "webviewInstallMode": "downloadB...
[ "llmfit-desktop/tauri.conf.json" ]
[]
true
AlexsJones/llmfit
628
issue_to_patch
docs: update Chinese translation (README.zh.md)
## Motivation Updating the Chinese translation (`README.zh.md`) to maintain strict parity with the latest `README.md` updates. As the community grows and new features like Community Leaderboard, Inference Bench, and LM Studio integrations are introduced, keeping localized documentation up-to-date is crucial for Chines...
2d2fa5867c8ecb3f46c8517dcaf5327837bf8806
cd935f4a97399d86f3fa444dac78a92b4d8c5577
diff --git a/README.zh.md b/README.zh.md index c462b083..4336780f 100644 --- a/README.zh.md +++ b/README.zh.md @@ -1,7 +1,7 @@ # llmfit <p align="center"> - <img src="assets/icon.svg" alt="llmfit 图标" width="128" height="128"> + <img src="assets/icon.svg" alt="llmfit icon" width="128" height="128"> </p> <p ali...
[ "README.zh.md" ]
[]
true
AlexsJones/llmfit
597
issue_to_patch
chore(deps): bump rmcp from 1.6.0 to 1.7.0
Bumps [rmcp](https://github.com/modelcontextprotocol/rust-sdk) from 1.6.0 to 1.7.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/modelcontextprotocol/rust-sdk/releases">rmcp's releases</a>.</em></p> <blockquote> <h2>rmcp-macros-v1.7.0</h2> <h3>Added</h3> <ul> <li>add task-b...
a376bb83eac9fd4a458d01c34aa6180c1e32884e
e8ffcc5974a4a91600fced0c431fda11aabb36e4
diff --git a/Cargo.lock b/Cargo.lock index 82bc7067..4915b5b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -576,10 +576,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" dependencies = [ "iana-time-zone", - "js-sys", ...
[ "Cargo.lock", "llmfit-tui/Cargo.toml" ]
[]
true
AlexsJones/llmfit
616
issue_to_patch
chore(deps): bump http from 1.4.0 to 1.4.1
Bumps [http](https://github.com/hyperium/http) from 1.4.0 to 1.4.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/hyperium/http/releases">http's releases</a>.</em></p> <blockquote> <h2>v1.4.1</h2> <h2>tl;dr</h2> <ul> <li>Fix <code>PathAndQuery::from_static()</code> and <code...
ec99edeb8c4f21b7461841209717bcb6702fe2de
05e8e7736fe1ead5598369515bc4339716604cc9
diff --git a/Cargo.lock b/Cargo.lock index d716e7b1..fdfbae7a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1903,9 +1903,9 @@ dependencies = [ [[package]] name = "http" -version = "1.4.0" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3ba2a386d7f85a81f119ad7498ebe4...
[ "Cargo.lock" ]
[]
true
AlexsJones/llmfit
603
issue_to_patch
feat(data): add Whisper/ASR model entries + audio support roadmap
## What Adds 4 `automatic-speech-recognition` model entries to `data/hf_models.json`: | Model | Params | RTF (GPU) | RTF (CPU) | VRAM | |---|---|---|---|---| | openai/whisper-large-v3 | 1.5 B | 0.04 | 0.6 | 2.5 GB | | openai/whisper-large-v3-turbo | 809 M | 0.007 | 0.12 | 1.5 GB | | distil-whisper/distil-larg...
abab7f63f0a4b6b6684684356c02a3d19150c6b9
4815bf8941d8c4eb33c3837be6381a86592b51b3
diff --git a/AUDIO_SUPPORT.md b/AUDIO_SUPPORT.md new file mode 100644 index 00000000..41de9612 --- /dev/null +++ b/AUDIO_SUPPORT.md @@ -0,0 +1,129 @@ +# Audio Model Support — Implementation Plan + +This document describes the Rust changes needed to fully support +`pipeline_tag: automatic-speech-recognition` models (Whi...
[ "AUDIO_SUPPORT.md", "data/hf_models.json", "llmfit-core/data/hf_models.json", "llmfit-core/src/models.rs" ]
[]
true
AlexsJones/llmfit
611
issue_to_patch
fix(tui): make provider filter input cursor-aware and ASCII-only
## Summary Fixes the Provider popup filter input so it behaves like a proper cursor-aware text field. ## Changes - Add cursor-aware editing for the Provider popup filter input. - Support left/right cursor movement, Home/End, Backspace, and Delete. - Keep long filter text within the popup input row using hori...
6c0b69701e8ec9be28a7a98bd0e94812f64a037c
e1b81211da4d8d0273798de50a6c2278ebd16ca4
diff --git a/llmfit-tui/src/tui_app.rs b/llmfit-tui/src/tui_app.rs index a110d52a..adf08440 100644 --- a/llmfit-tui/src/tui_app.rs +++ b/llmfit-tui/src/tui_app.rs @@ -46,6 +46,32 @@ fn next_grapheme_boundary(value: &str, index: usize) -> usize { .unwrap_or_else(|| value.len()) } +fn insert_ascii_graphic_inp...
[ "llmfit-tui/src/tui_app.rs", "llmfit-tui/src/tui_events.rs", "llmfit-tui/src/tui_ui.rs" ]
[]
true
AlexsJones/llmfit
625
issue_to_patch
refactor: extract duplicated provider detection and fit pipeline into shared code ## Problem The provider-installation detection and model-fit analysis pipeline is duplicated across three locations: | Location | Occurrences | |---|---| | `main.rs:run_fit()` | ~20 lines | | `main.rs:run_recommend()` | ~20 lines | | `...
refactor: extract duplicated provider detection and fit pipeline into InstalledIndex
## Problem Provider-installation detection and the model-fit analysis pipeline are duplicated across three locations: | Location | Occurrences | |---|---| | `main.rs:run_fit()` | ~20 lines | | `main.rs:run_recommend()` | ~20 lines | | `tui_app.rs` init + 5 call sites | ~50 lines | **Behavioral drift**: the TUI check...
ec99edeb8c4f21b7461841209717bcb6702fe2de
3598e96a1ca695ef2759ebb13440d6d0c894349e
diff --git a/llmfit-core/src/analysis.rs b/llmfit-core/src/analysis.rs new file mode 100644 index 00000000..ce1e31c9 --- /dev/null +++ b/llmfit-core/src/analysis.rs @@ -0,0 +1,160 @@ +use crate::fit::{InferenceRuntime, ModelFit}; +use crate::hardware::SystemSpecs; +use crate::models::ModelDatabase; +use crate::provider...
[ "llmfit-core/src/analysis.rs", "llmfit-core/src/lib.rs", "llmfit-tui/src/main.rs", "llmfit-tui/src/tui_app.rs", "llmfit-tui/src/tui_ui.rs" ]
[]
true
AlexsJones/llmfit
626
issue_to_patch
docs: add Japanese README
I created Japanese translated README.
ec99edeb8c4f21b7461841209717bcb6702fe2de
da51e052601ea0100ee27ea3dbc9039f7b469b03
diff --git a/README.ja.md b/README.ja.md new file mode 100644 index 00000000..f2dffcb8 --- /dev/null +++ b/README.ja.md @@ -0,0 +1,978 @@ +# llmfit + +<p align="center"> + <img src="assets/icon.svg" alt="llmfit アイコン" width="128" height="128"> +</p> + +<p align="center"> + <a href="README.md">English</a> · + <a href=...
[ "README.ja.md", "README.md", "README.zh.md" ]
[]
true
AlexsJones/llmfit
604
issue_to_patch
Gemma 4 QAT GGUF models from Unsloth are missing from search/index ## Summary `llmfit` does not find the new Unsloth **Gemma 4 QAT** models from Hugging Face, including the GGUF variants, even when searching by exact model id. This looks like either: 1. the model database/index has not picked up these repos yet, or...
chore(main): release 0.9.31
:robot: I have created a release *beep* *boop* --- ## [0.9.31](https://github.com/AlexsJones/llmfit/compare/v0.9.30...v0.9.31) (2026-06-09) ### Features * **lmstudio:** Add LMSTUDIO_API_KEY support for authenticated instances ([0dc2712](https://github.com/AlexsJones/llmfit/commit/0dc2712df4b4d947e0db371c98bf376d4d...
3f9b22bb032a3b4444750ddfca12acfdf96e27df
328be3926946305c0e28e3d80141aa7314355984
diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 03d18a20..3c6c5d6e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.30" + ".": "0.9.31" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b9cc7a74..b3c910ce 100644 --- a/CHANGE...
[ ".release-please-manifest.json", "CHANGELOG.md", "Cargo.lock", "Cargo.toml", "version.txt" ]
[]
true
AlexsJones/llmfit
623
issue_to_patch
GGUF-only repos report wrong parameter count and memory estimates (e.g. unsloth/DeepSeek-R1-0528-GGUF shows 29.6B instead of 671B) ### Summary When viewing `unsloth/DeepSeek-R1-0528-GGUF` in llmfit, the tool reports **~29.6B parameters** and memory requirements on the order of **~15 GB**, while Hugging Face correctly...
fix: use GGUF metadata for param counts in GGUF-only repos
## Summary Fixes #622 GGUF-only repos (like `unsloth/DeepSeek-R1-0528-GGUF`) have no `safetensors` metadata, so the updater fell back to name-based parameter parsing — producing **29.6B instead of 671B** and wildly wrong memory estimates (15 GB instead of 405 GB at Q4_K_M). - Add `gguf` field to `HfApiModel` and req...
0dc2712df4b4d947e0db371c98bf376d4da16c85
33047d85fab2913d09905922df9a3daef6b5a314
diff --git a/llmfit-core/data/hf_models.json b/llmfit-core/data/hf_models.json index e9238e07..c1f2ffb0 100644 --- a/llmfit-core/data/hf_models.json +++ b/llmfit-core/data/hf_models.json @@ -124948,18 +124948,18 @@ { "name": "unsloth/DeepSeek-R1-0528-GGUF", "provider": "unsloth", - "parameter_count": "2...
[ "llmfit-core/data/hf_models.json", "llmfit-core/src/providers.rs", "llmfit-core/src/update.rs" ]
[]
true
AlexsJones/llmfit
607
issue_to_patch
feat(lmstudio): Add LMSTUDIO_API_KEY support for authenticated instances
- Read API key from LMSTUDIO_API_KEY environment variable - Attach Authorization: Bearer header to all HTTP requests to LM Studio * detect_with_installed() - model listing probe * is_available() - availability check * start_pull() POST - model download initiation * start_pull() polling GET - download progr...
e317fb8502b485c1721c03d88a3f8bc1e63659b3
46f70b790e3bd177e001469d04456ce1e20193c5
diff --git a/README.md b/README.md index 172b6756..598933cf 100644 --- a/README.md +++ b/README.md @@ -860,6 +860,15 @@ To connect to LM Studio on a different host or port, set the `LMSTUDIO_HOST` env LMSTUDIO_HOST="http://192.168.1.100:1234" llmfit ``` +### API authentication + +If your LM Studio instance has **Re...
[ "README.md", "llmfit-core/src/providers.rs" ]
[]
true
AlexsJones/llmfit
620
issue_to_patch
Gemma 4 QAT GGUF models from Unsloth are missing from search/index ## Summary `llmfit` does not find the new Unsloth **Gemma 4 QAT** models from Hugging Face, including the GGUF variants, even when searching by exact model id. This looks like either: 1. the model database/index has not picked up these repos yet, or...
fix: add Gemma 4 QAT models and fallback HF search
## Summary Fixes #613 - **Backfill embedded database** with 7 Unsloth Gemma 4 QAT GGUF models (12B, 26B-A4B, 31B, E4B, E2B, E4B-mobile, E2B-mobile) so they are immediately searchable - **Fallback live HF search** — when `llmfit search` finds no local matches, it now queries HuggingFace directly for GGUF repos, making...
6c0b69701e8ec9be28a7a98bd0e94812f64a037c
2b62c6db70c6ee702ecda5cc269b24604240db07
diff --git a/llmfit-core/data/hf_models.json b/llmfit-core/data/hf_models.json index 68b47c08..e9238e07 100644 --- a/llmfit-core/data/hf_models.json +++ b/llmfit-core/data/hf_models.json @@ -160739,5 +160739,212 @@ "num_experts": 384, "active_experts": 6, "active_parameters": 49000000000 + }, + { + ...
[ "llmfit-core/data/hf_models.json", "llmfit-core/src/update.rs", "llmfit-tui/src/main.rs" ]
[]
true
AlexsJones/llmfit
612
issue_to_patch
fix(tui): ignore modified key input in search
## Summary Fixes the main TUI Search input so modified key combinations are not inserted as stray text. ## Changes - Ignore Search character events that include Control, Alt/Option, Super/Command, Hyper, or Meta modifiers. - Prevent shortcut/navigation key combinations from appearing as text when the terminal...
66f4c887b37c617944a8bc14a1d0a20aedac9767
8de0a1b5a0627327f82360f9c9ced2ca71cfc4a7
diff --git a/llmfit-tui/src/tui_events.rs b/llmfit-tui/src/tui_events.rs index 565da778..9c7ce915 100644 --- a/llmfit-tui/src/tui_events.rs +++ b/llmfit-tui/src/tui_events.rs @@ -291,7 +291,7 @@ fn handle_search_mode(app: &mut App, key: KeyEvent) { KeyCode::Left => app.search_cursor_left(), KeyCode::R...
[ "llmfit-tui/src/tui_events.rs" ]
[]
true
AlexsJones/llmfit
610
issue_to_patch
fix(tui): handle unicode download directory input
## Summary Fixes the Download Manager models-dir editor so non-ASCII paths can be edited safely in the TUI. ## Changes - Handle models-dir cursor movement, insertion, Backspace, and Delete on valid grapheme boundaries. - Prevent panics when editing non-ASCII filesystem paths (for example, Chinese or Japanese ...
66f4c887b37c617944a8bc14a1d0a20aedac9767
da120f8d6993dd2e6cfed899478b6796b1992221
diff --git a/llmfit-tui/src/tui_app.rs b/llmfit-tui/src/tui_app.rs index 6b99d161..a110d52a 100644 --- a/llmfit-tui/src/tui_app.rs +++ b/llmfit-tui/src/tui_app.rs @@ -1789,6 +1789,47 @@ impl App { self.dm_editing_dir = true; } + pub fn insert_dm_dir_char(&mut self, c: char) { + self.dm_dir_cur...
[ "llmfit-tui/src/tui_app.rs", "llmfit-tui/src/tui_events.rs", "llmfit-tui/src/tui_ui.rs" ]
[]
true
AlexsJones/llmfit
608
issue_to_patch
fix(tui): handle search input cursor and overflow
## Summary - Prevent long TUI search queries from overflowing into adjacent filter columns. - Allow left/right cursor movement while editing the main TUI search input. - Keep non-ASCII search input editing on grapheme cluster boundaries and render by terminal cell width. ## Testing - `cargo fmt --check` - `...
e317fb8502b485c1721c03d88a3f8bc1e63659b3
85960054bbb88c961ffa4797006dd3475a8b4699
diff --git a/Cargo.lock b/Cargo.lock index a5a6214b..fcba7fdc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2503,6 +2503,8 @@ dependencies = [ "tabled", "tokio", "tower", + "unicode-segmentation", + "unicode-width", ] [[package]] diff --git a/llmfit-tui/Cargo.toml b/llmfit-tui/Cargo.toml index e8cfcd2c..97a767...
[ "Cargo.lock", "llmfit-tui/Cargo.toml", "llmfit-tui/src/tui_app.rs", "llmfit-tui/src/tui_events.rs", "llmfit-tui/src/tui_ui.rs" ]
[]
true
AlexsJones/llmfit
598
issue_to_patch
chore(deps): bump docker/build-push-action from 7.1.0 to 7.2.0
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 7.1.0 to 7.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/docker/build-push-action/releases">docker/build-push-action's releases</a>.</em></p> <blockquote> <h2>v7.2.0</h2> <ul> <li>Bump <c...
a376bb83eac9fd4a458d01c34aa6180c1e32884e
9371510a0e012dd7a9c2aadc6843617780bc3399
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 4db257e1..69db2bbf 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -48,7 +48,7 @@ jobs: type=raw,value=latest,enable={{is_default_branch}} - name: Build and push Docker image - use...
[ ".github/workflows/docker.yml" ]
[]
true
AlexsJones/llmfit
605
issue_to_patch
feat: upgrade MiniMax default model to M3
## Summary Upgrade the curated MiniMax model list to use **MiniMax-M3** as the latest flagship entry, while keeping MiniMax-M2.7 as a previous-generation option. Removes the older MiniMax-M2.5 from the curated target list. ## Changes - `data/hf_models.json` / `llmfit-core/data/hf_models.json`: - Insert `MiniMaxAI/...
f0d4783dd99f4c12a0fe15d564d8bc787ef7c755
7407d1035ef7dd7b14ed50a1dc1f3f6e21a08a44
diff --git a/data/hf_models.json b/data/hf_models.json index b3a6937e..68b47c08 100644 --- a/data/hf_models.json +++ b/data/hf_models.json @@ -154276,7 +154276,7 @@ "active_parameters": 18223715635 }, { - "name": "MiniMaxAI/MiniMax-M2.7", + "name": "MiniMaxAI/MiniMax-M3", "provider": "minimaxai", ...
[ "data/hf_models.json", "llmfit-core/data/hf_models.json", "scripts/scrape_hf_models.py" ]
[]
true
AlexsJones/llmfit
586
issue_to_patch
feat: speed up provider navigation when holding shift (gh-571)
PR implements feature request from #571. When holding shift the up/down navigation in TUI providers select advances by 25 providers instead of 1. I tested it manually. Not sure if it's idiomatic rust code.
abab7f63f0a4b6b6684684356c02a3d19150c6b9
7d74d7d4a93cb8c229868b00d8bc3385005e3551
diff --git a/llmfit-tui/src/tui_app.rs b/llmfit-tui/src/tui_app.rs index 752ddb24..4b789d2e 100644 --- a/llmfit-tui/src/tui_app.rs +++ b/llmfit-tui/src/tui_app.rs @@ -9,8 +9,9 @@ use llmfit_core::providers::{ use llmfit_core::quality; use std::collections::{HashMap, HashSet}; +use std::ops::Add; use std::sync::mps...
[ "llmfit-tui/src/tui_app.rs", "llmfit-tui/src/tui_events.rs", "llmfit-tui/src/tui_ui.rs" ]
[]
true
AlexsJones/llmfit
582
issue_to_patch
Provide for efficient narrowing Coming in for the first time, there are thousands of models, which is overwhelming to say the least. User needs intuitive and quick ways to find the diamonds in the rough with as few keystrokes as possible. Possible parameters by which to do this: - **Hardware**: Does the model fit u...
feat: open TUI with best-fit model preselected
## Summary Pre-select the best-fit model when the TUI opens, instead of starting on row 0 of the table. Maintainer suggested exactly this in issue #346: "open the TUI on the best fit selected for you". ## Why this matters The current behavior makes users scroll to find the model llmfit just told them is the right on...
9e3477e2165f0b379a003c64a9651fcfd54de6db
c1ae43359c70d3bab8b5e6cd18c5e2707f29f0fe
diff --git a/llmfit-tui/src/tui_app.rs b/llmfit-tui/src/tui_app.rs index 9d088278..4f24c975 100644 --- a/llmfit-tui/src/tui_app.rs +++ b/llmfit-tui/src/tui_app.rs @@ -1166,10 +1166,37 @@ impl App { app.apply_filters(); app.re_sort(); + app.preselect_initial_best_fit(); app.enqueue_ca...
[ "llmfit-tui/src/tui_app.rs" ]
[]
true
AlexsJones/llmfit
601
issue_to_patch
chore(main): release 0.9.30
:robot: I have created a release *beep* *boop* --- ## [0.9.30](https://github.com/AlexsJones/llmfit/compare/v0.9.29...v0.9.30) (2026-06-01) ### Features * **tui:** fuzzy search in provider filter popup ([#600](https://github.com/AlexsJones/llmfit/issues/600)) ([b055a04](https://github.com/AlexsJones/llmfit/commit/...
b055a04beb50008c3d868aa7f43598ad6b614d33
88f4450a95c61f44a65488e93888bc9a18bf72b4
diff --git a/.release-please-manifest.json b/.release-please-manifest.json index eb8621d5..03d18a20 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.29" + ".": "0.9.30" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ccaba403..b9cc7a74 100644 --- a/CHANGE...
[ ".release-please-manifest.json", "CHANGELOG.md", "Cargo.lock", "Cargo.toml", "version.txt" ]
[]
true
AlexsJones/llmfit
600
issue_to_patch
[Feature] Fuzzy Search in Provider Menu When pressing "P" to filter models by provider, I'd love the ability to type and get fuzzy filtering of the providers for easier selection/deselection. <img width="434" height="980" alt="Image" src="https://github.com/user-attachments/assets/3b955d34-b690-4436-a8f1-88fa5d963c4d...
feat(tui): fuzzy search in provider filter popup
Closes #589 ## What Adds type-to-fuzzy-filter to the provider filter popup (opened with `P`), as requested in #589. Typing now narrows the provider list with case-insensitive subsequence matching (fzf-style — characters must appear in order but not contiguously). ## Behavior - **Type any character** → filters the p...
a376bb83eac9fd4a458d01c34aa6180c1e32884e
49e3539352a02d78b04dba10637646c15d18b6ce
diff --git a/README.md b/README.md index 3d3a3f50..172b6756 100644 --- a/README.md +++ b/README.md @@ -132,7 +132,7 @@ Launches the interactive terminal UI. Your system specs (CPU, RAM, GPU name, VRA | `V` | Enter Select mode (column-based filtering) | | `t` ...
[ "README.md", "llmfit-tui/src/tui_app.rs", "llmfit-tui/src/tui_events.rs", "llmfit-tui/src/tui_ui.rs" ]
[]
true
AlexsJones/llmfit
574
issue_to_patch
brew install compiles LLVM from source, but pre-built binaries exist Hi! I wanted to highlight something that seems like a quick win. Pre-built binaries are available in releases (e.g. `llmfit-v0.9.28-x86_64-apple-darwin.tar.gz`) and the curl install script works great: ```curl -fsSL https://llmfit.axjns.dev/install...
chore(main): release 0.9.29
:robot: I have created a release *beep* *boop* --- ## [0.9.29](https://github.com/AlexsJones/llmfit/compare/v0.9.28...v0.9.29) (2026-05-27) ### Features * open TUI with best-fit model preselected ([#582](https://github.com/AlexsJones/llmfit/issues/582)) ([834ee20](https://github.com/AlexsJones/llmfit/commit/834ee2...
665a4e15438b061e33974dcbad639f318ef6b5d2
6e97c1504ef0109b2b525df6befd0725c8be5171
diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 89c6ba59..eb8621d5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.28" + ".": "0.9.29" } diff --git a/CHANGELOG.md b/CHANGELOG.md index dd631d8d..ccaba403 100644 --- a/CHANGE...
[ ".release-please-manifest.json", "CHANGELOG.md", "Cargo.lock", "Cargo.toml", "version.txt" ]
[]
true
AlexsJones/llmfit
577
issue_to_patch
chore(deps): bump tauri from 2.11.0 to 2.11.2
Bumps [tauri](https://github.com/tauri-apps/tauri) from 2.11.0 to 2.11.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tauri-apps/tauri/releases">tauri's releases</a>.</em></p> <blockquote> <h2>tauri-cli v2.11.2</h2> <!-- raw HTML omitted --> <pre><code>Fetching advisory da...
7c5e2413e6c819fb07b10c0bbf0b583ae05d2ab0
8ac3ce3a214b777a85bdf012b523873734491c3e
diff --git a/Cargo.lock b/Cargo.lock index 7a986b3f..75159272 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4674,9 +4674,9 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" [[package]] name = "tauri" -version = "2.11.0" +version = "2.11.2" source = "registry+https://github.com/rust-la...
[ "Cargo.lock" ]
[]
true
AlexsJones/llmfit
578
issue_to_patch
chore(deps): bump tokio from 1.52.2 to 1.52.3
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.52.2 to 1.52.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.52.3</h2> <h1>1.52.3 (May 8th, 2026)</h1> <h3>Fixed</h3> <ul> <li>sync: fix...
9e3477e2165f0b379a003c64a9651fcfd54de6db
74b54c6a96c3fbde2a62ad8ca1e47d79d1099532
diff --git a/Cargo.lock b/Cargo.lock index 25a36e83..585651c2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5072,9 +5072,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.52.2" +version = "1.52.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "110a78583f19d5cdb2c5ccf321d1...
[ "Cargo.lock" ]
[]
true
AlexsJones/llmfit
580
issue_to_patch
chore(deps): bump tauri-build from 2.6.0 to 2.6.1
Bumps [tauri-build](https://github.com/tauri-apps/tauri) from 2.6.0 to 2.6.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tauri-apps/tauri/releases">tauri-build's releases</a>.</em></p> <blockquote> <h2>tauri-build v2.6.1</h2> <!-- raw HTML omitted --> <pre><code>Fetching ...
9e3477e2165f0b379a003c64a9651fcfd54de6db
c7d5b665f037ea823a20636c4b2b403043d0c5a0
diff --git a/Cargo.lock b/Cargo.lock index 25a36e83..3385346b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4725,9 +4725,9 @@ dependencies = [ [[package]] name = "tauri-build" -version = "2.6.0" +version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be9aa8c59a894f76c29a0025...
[ "Cargo.lock" ]
[]
true
AlexsJones/llmfit
576
issue_to_patch
fix: align SortColumn::next with display order of columns in TUI
## Problem In TUI when you cycle sort column by pressing 's' the params column is out of the display order: <img width="600" alt="llmfit-sort" src="https://github.com/user-attachments/assets/4777476e-9605-461a-9c33-80b63fe5c97a" /> llmfit 0.9.28 ## Solution This PR aligns `SortColumn::next` with display ...
9ec7dd35f7ab603e16caee163ed396f02a30a3ee
07efb6d5e107c095249b557d99bf877068a5d8b0
diff --git a/llmfit-core/src/fit.rs b/llmfit-core/src/fit.rs index 591e8dc4..4deeb8e7 100644 --- a/llmfit-core/src/fit.rs +++ b/llmfit-core/src/fit.rs @@ -152,14 +152,14 @@ impl SortColumn { pub fn next(&self) -> Self { match self { + SortColumn::Params => SortColumn::Score, Sort...
[ "llmfit-core/src/fit.rs" ]
[]
true
AlexsJones/llmfit
575
issue_to_patch
GGUF models installed by hf cli shown as mlx in TUI I have 6 GGUF models downloaded by official huggingface cli: ``` hf cache ls ID SIZE LAST_ACCESSED LAST_MODIFIED REFS ----------------------------------- ----- ------------- ------------- ---- model/unsloth/Qwen3.6-27B-GGUF 17....
fix(core): scan XDG cache path for HF models on macOS
## Summary - On macOS, `dirs::cache_dir()` returns `~/Library/Caches` but the HuggingFace CLI stores models in `~/.cache/huggingface/hub/` (XDG-style) - Changed `dirs_hf_cache()` to `dirs_hf_cache_all()` which checks both paths - Fixes GGUF and MLX model detection on macOS Fixes #568 ## Test plan - [x] `cargo test ...
c3e3f0d03fb9a83ced7a4c4ff0ba2ad6926db153
e2363a2439b61cf2eae1e720a7d5a76e0773c374
diff --git a/llmfit-core/src/providers.rs b/llmfit-core/src/providers.rs index 1df7231a..dc148c30 100644 --- a/llmfit-core/src/providers.rs +++ b/llmfit-core/src/providers.rs @@ -472,82 +472,106 @@ fn is_likely_gguf_repo(repo_lower: &str) -> bool { repo_lower.contains("-gguf") || repo_lower.ends_with("gguf") } ...
[ "llmfit-core/src/providers.rs" ]
[]
true
AlexsJones/llmfit
573
issue_to_patch
feat: rescrape model catalog and expand Ollama mappings
## Summary Supersedes #316. Full rescrape with all models from #316 incorporated. - Full rescrape of `hf_models.json` (1852 to 5341 models, 663 with GGUF sources) - Added 9 new curated models to `TARGET_MODELS`: Devstral, Cohere Command A/R+, Falcon3-3B, Nemotron-Super-49B, EXAONE-Deep-2.4B/32B - Added 21 Ollama mapp...
a736d60626fd4b6c0b92a8b56dedefa6a236d8be
14ac25f087bf19e7ee3b48da48b93c9771aa5cb2
diff --git a/data/hf_models.json b/data/hf_models.json index 1135b58a..b3a6937e 100644 --- a/data/hf_models.json +++ b/data/hf_models.json @@ -126,7 +126,7 @@ "capabilities": [], "pipeline_tag": "unknown", "architecture": "phi", - "hf_downloads": 33939, + "hf_downloads": 37655, "hf_likes": 0, ...
[ "data/hf_models.json", "llmfit-core/data/hf_models.json", "llmfit-core/src/providers.rs", "llmfit-tui/src/tui_app.rs", "scripts/scrape_hf_models.py" ]
[]
true
AlexsJones/llmfit
572
issue_to_patch
chore(main): release 0.9.28
:robot: I have created a release *beep* *boop* --- ## [0.9.28](https://github.com/AlexsJones/llmfit/compare/v0.9.27...v0.9.28) (2026-05-22) ### Features * **tui:** add ollama_name field to JSON output ([#566](https://github.com/AlexsJones/llmfit/issues/566)) ([36b3181](https://github.com/AlexsJones/llmfit/commit/3...
6093bcc952eee0b5a64141809665c8bc823e21d8
1baa852b5044c11b3eb6b890adacaeba024405f3
diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 459f7afb..89c6ba59 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.27" + ".": "0.9.28" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a3243f84..dd631d8d 100644 --- a/CHANGE...
[ ".release-please-manifest.json", "CHANGELOG.md", "Cargo.lock", "Cargo.toml", "version.txt" ]
[]
true
AlexsJones/llmfit
566
issue_to_patch
feat(tui): add ollama_name field to JSON output
## Summary Adds an `ollama_name` field to the JSON output produced by `llmfit recommend --json` and the REST API (`/api/v1/models`, `/api/v1/models/top`). The value is the string to pass directly to `ollama pull` (e.g. `"llama3.1:8b"`), or `null` if the model has no known Ollama mapping. ## Motivation Con...
051bbbc284fb30e80ca48249409f9fddef502556
9db66d6b3df24f414cc8b1b5e3e6dfd35c37c15c
diff --git a/llmfit-tui/src/display.rs b/llmfit-tui/src/display.rs index c6424350..b377a836 100644 --- a/llmfit-tui/src/display.rs +++ b/llmfit-tui/src/display.rs @@ -6,6 +6,7 @@ use llmfit_core::fit::{FitLevel, ModelFit, RunMode, SortColumn}; use llmfit_core::hardware::SystemSpecs; use llmfit_core::models::LlmModel;...
[ "llmfit-tui/src/display.rs" ]
[]
true
AlexsJones/llmfit
564
issue_to_patch
chore(main): release 0.9.27
:robot: I have created a release *beep* *boop* --- ## [0.9.27](https://github.com/AlexsJones/llmfit/compare/v0.9.26...v0.9.27) (2026-05-20) ### Bug Fixes * **tui:** correct live-bench keybinding label from B to I ([7aae532](https://github.com/AlexsJones/llmfit/commit/7aae5326ef15018fccb9d1d9605252f75739a749)) ---...
7aae5326ef15018fccb9d1d9605252f75739a749
0ddbb93e13ca5bfcea487bbae3123de2bbbc7251
diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4410a978..459f7afb 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.26" + ".": "0.9.27" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 11dcaab4..a3243f84 100644 --- a/CHANGE...
[ ".release-please-manifest.json", "CHANGELOG.md", "Cargo.lock", "Cargo.toml", "version.txt" ]
[]
true
AlexsJones/llmfit
560
issue_to_patch
ROCm incorrect handling of multiple GPUs I have a Linux system with two AMD GPUs: a Radeon AI Pro R9700 and an RX 7600. `llmfit` incorrectly detects this as two R9700s. Output from `rocm-smi`, where the RX 7600 is in low-power state because it is not really being used: ```shell $ rocm-smi --showmeminfo vram ======...
chore(main): release 0.9.26
:robot: I have created a release *beep* *boop* --- ## [0.9.26](https://github.com/AlexsJones/llmfit/compare/v0.9.25...v0.9.26) (2026-05-19) ### Bug Fixes * **hardware:** detect distinct AMD GPU models in multi-GPU ROCm systems ([#559](https://github.com/AlexsJones/llmfit/issues/559)) ([a100552](https://github.com/...
1aa22bcba45bc4ec87edf434616c8a49f8c07ea9
9de434044680fc774f013b4943f2fb9fabddcc97
diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1979ed6d..4410a978 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.25" + ".": "0.9.26" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 78d11a50..11dcaab4 100644 --- a/CHANGE...
[ ".release-please-manifest.json", "CHANGELOG.md", "Cargo.lock", "Cargo.toml", "version.txt" ]
[]
true
AlexsJones/llmfit
562
issue_to_patch
docs: add contributing guide and code of conduct
Addresses community request for contributor guidelines. Adds CONTRIBUTING.md with setup instructions, PR workflow, model addition guide, and code guidelines. Adds CODE_OF_CONDUCT.md referencing the Contributor Covenant v2.1. Closes discussion #460
1aa22bcba45bc4ec87edf434616c8a49f8c07ea9
a45d43aaea8fdf19e33326ec0ff7ebd1cca822eb
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..e5073326 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,17 @@ +# Code of Conduct + +This project adopts the **Contributor Covenant v2.1** as its code of conduct. + +The full text is available at: https://www.contributor-covenan...
[ "CODE_OF_CONDUCT.md", "CONTRIBUTING.md" ]
[]
true
AlexsJones/llmfit
551
issue_to_patch
Add Apple M5/M5 Pro/M5 Max memory bandwidth entries
## Summary - Adds M5 (153.6 GB/s), M5 Pro (307 GB/s), and M5 Max (614 GB/s) to the Apple Silicon GPU memory bandwidth lookup table - Includes corresponding test assertions ## Motivation The M5 Max was released March 2026 and is already shipping in MacBook Pro 14"/16". Without these entries, `llmfit` falls back to a ge...
ce735c95c39ab10bd936238b7ab611d336a13c12
390ee687c2fb3b794c0525b62e8763da62ae1503
diff --git a/llmfit-core/src/hardware.rs b/llmfit-core/src/hardware.rs index 24fbbe25..bec25ea6 100644 --- a/llmfit-core/src/hardware.rs +++ b/llmfit-core/src/hardware.rs @@ -2038,6 +2038,15 @@ pub fn gpu_memory_bandwidth_gbps(name: &str) -> Option<f64> { } // ── Apple Silicon (unified memory bandwidth) ───...
[ "llmfit-core/src/hardware.rs" ]
[]
true
AlexsJones/llmfit
556
issue_to_patch
chore(deps): bump tokio from 1.52.1 to 1.52.2
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.52.1 to 1.52.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tokio-rs/tokio/releases">tokio's releases</a>.</em></p> <blockquote> <h2>Tokio v1.52.2</h2> <h1>1.52.2 (May 4th, 2026)</h1> <p>This release reverts the LIFO ...
f617ce21c21057c03f77dabf8aa0db3daea5088f
a814b1e4d09f42d8420a6414d41eb3967d27ed78
diff --git a/Cargo.lock b/Cargo.lock index 4e6007f1..9e37f840 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5306,9 +5306,9 @@ dependencies = [ [[package]] name = "tokio" -version = "1.52.1" +version = "1.52.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b67dee974fe86fd92cc45b7a95fd...
[ "Cargo.lock", "llmfit-tui/Cargo.toml" ]
[]
true
AlexsJones/llmfit
559
issue_to_patch
ROCm incorrect handling of multiple GPUs I have a Linux system with two AMD GPUs: a Radeon AI Pro R9700 and an RX 7600. `llmfit` incorrectly detects this as two R9700s. Output from `rocm-smi`, where the RX 7600 is in low-power state because it is not really being used: ```shell $ rocm-smi --showmeminfo vram ======...
fix(hardware): detect distinct AMD GPU models in multi-GPU ROCm systems
## Summary - Fixes `detect_amd_gpu_rocm_info()` which only captured the first GPU's name from `rocm-smi --showproductname`, causing all GPUs to report as the same model in mixed setups (e.g. RX 7600 + AI Pro R9700) - Changed return type from `Option<GpuInfo>` to `Vec<GpuInfo>` with per-GPU name/VRAM parsing and groupin...
a57772e7ac2824decfc1d1fc9f117502ae3ba40d
e788a462d97f5f7840bedc1eb3dd605af5ea6747
diff --git a/llmfit-core/src/hardware.rs b/llmfit-core/src/hardware.rs index 24fbbe25..ddd89fec 100644 --- a/llmfit-core/src/hardware.rs +++ b/llmfit-core/src/hardware.rs @@ -138,10 +138,13 @@ impl SystemSpecs { } // AMD GPUs via rocm-smi or sysfs - if let Some(amd) = Self::detect_amd_gpu_roc...
[ "llmfit-core/src/hardware.rs" ]
[]
true
AlexsJones/llmfit
557
issue_to_patch
chore(deps): bump tauri from 2.10.3 to 2.11.0
Bumps [tauri](https://github.com/tauri-apps/tauri) from 2.10.3 to 2.11.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tauri-apps/tauri/releases">tauri's releases</a>.</em></p> <blockquote> <h2>tauri-cli v2.11.0</h2> <!-- raw HTML omitted --> <pre><code>Fetching advisory da...
712a270479b63d9ffcc8b982103abdcb60e528c7
21a515cd444f32e41b49631a8937c9431a79e85a
diff --git a/Cargo.lock b/Cargo.lock index 7341ed75..7b7d93e7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -677,12 +677,6 @@ version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" -[[package]] -name = "convert_c...
[ "Cargo.lock" ]
[]
true
AlexsJones/llmfit
558
issue_to_patch
chore(deps): bump tauri-build from 2.5.6 to 2.6.0
Bumps [tauri-build](https://github.com/tauri-apps/tauri) from 2.5.6 to 2.6.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/tauri-apps/tauri/releases">tauri-build's releases</a>.</em></p> <blockquote> <h2>tauri-build v2.6.0</h2> <!-- raw HTML omitted --> <pre><code>Fetching ...
f617ce21c21057c03f77dabf8aa0db3daea5088f
7c6e53c8955d45cd6eaef4e6f538f6dc4c4367b6
diff --git a/Cargo.lock b/Cargo.lock index 4e6007f1..7341ed75 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -919,14 +919,20 @@ dependencies = [ [[package]] name = "ctor" -version = "0.2.9" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a2785755761f3ddc1492979ce1e48...
[ "Cargo.lock" ]
[]
true
AlexsJones/llmfit
549
issue_to_patch
chore(main): release 0.9.25
:robot: I have created a release *beep* *boop* --- ## [0.9.25](https://github.com/AlexsJones/llmfit/compare/v0.9.24...v0.9.25) (2026-05-17) ### Features * **scoring:** add generation-aware quality scoring ([#553](https://github.com/AlexsJones/llmfit/issues/553)) ([a3e0eb2](https://github.com/AlexsJones/llmfit/comm...
9e8308d3e6dccf83da35694233a53261902ebbf2
fdef1b84b126a3266dcf66bcb902bab12f667d0f
diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9f7b2b3e..1979ed6d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.24" + ".": "0.9.25" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 01f06c74..78d11a50 100644 --- a/CHANGE...
[ ".release-please-manifest.json", "CHANGELOG.md", "Cargo.lock", "Cargo.toml", "version.txt" ]
[]
true
AlexsJones/llmfit
554
issue_to_patch
feat(tui): move provider detection to background threads for faster startup
## Summary - Moves all network-based provider detection (Ollama, MLX, Docker Model Runner, LM Studio, vLLM) to background threads instead of blocking TUI startup - App renders immediately after hardware detection; provider results stream in via `mpsc` channel and update the model list as each completes - Only llama.cpp...
a3e0eb27c57fe05298292f4c61699b9aed2824ea
329c479702fd7646536cddd72b7f9ac9aa78adde
diff --git a/llmfit-tui/src/main.rs b/llmfit-tui/src/main.rs index fed5b712..b1c704ec 100644 --- a/llmfit-tui/src/main.rs +++ b/llmfit-tui/src/main.rs @@ -1204,9 +1204,8 @@ fn run_tui_inner( let mut terminal = ratatui::Terminal::new(backend)?; draw_boot_screen(&mut terminal, "Detecting system hardware...")?; ...
[ "llmfit-tui/src/main.rs", "llmfit-tui/src/tui_app.rs" ]
[]
true
AlexsJones/llmfit
553
issue_to_patch
Quality scoring ignores model generation — newer/smaller models ranked below older/larger ones ## Problem: quality scoring ignores model generation, producing misleading rankings ### Current behavior `quality_score()` in `fit.rs` determines model quality using **only parameter count** and a flat family name substrin...
feat(scoring): add generation-aware quality scoring
## Summary - Adds generation-aware quality scoring so newer model generations (Qwen3.6, Llama 4, DeepSeek V4, etc.) are no longer penalized for having fewer parameters than older models - Parses model generation from the `architecture` field (already present in HuggingFace metadata) and applies a +3 bonus per generati...
ce735c95c39ab10bd936238b7ab611d336a13c12
33cc9e870b4d65f8af860459a62bd3c24ad95bdc
diff --git a/data/hf_models.json b/data/hf_models.json index 6070caa4..1135b58a 100644 --- a/data/hf_models.json +++ b/data/hf_models.json @@ -27,6 +27,62 @@ "shared_expert_intermediate_size": null, "_discovered": true }, + { + "name": "Harley-ml/PicoWord-5k", + "provider": "harley-ml", + "parame...
[ "data/hf_models.json", "llmfit-core/src/fit.rs", "llmfit-core/src/models.rs", "llmfit-core/src/plan.rs", "llmfit-core/src/update.rs", "llmfit-tui/src/display.rs", "llmfit-tui/src/main.rs", "scripts/validate_generation_scoring.py" ]
[]
true
AlexsJones/llmfit
548
issue_to_patch
fix(docker): skip HTTP probe on Linux when Docker Desktop is not running
## Problem Docker Model Runner is a Docker Desktop feature. On Linux, Docker Desktop is uncommon, so the startup HTTP probe to `localhost:12434` times out after ~800ms on most Linux systems, slowing down every llmfit startup. ## Solution Add `is_docker_desktop_running()` which checks for Docker Desktop's presence by...
7677837fad8ce970e8f32b90315617722b535fef
c77f3089eccb4ca20817ac954014b02b76b53102
diff --git a/llmfit-core/src/hardware.rs b/llmfit-core/src/hardware.rs index d9937ff7..24fbbe25 100644 --- a/llmfit-core/src/hardware.rs +++ b/llmfit-core/src/hardware.rs @@ -579,7 +579,7 @@ impl SystemSpecs { // Filter out integrated GPUs (iGPUs) that have very little VRAM. // rocm-smi reports all GP...
[ "llmfit-core/src/hardware.rs", "llmfit-core/src/providers.rs" ]
[]
true
AlexsJones/llmfit
546
issue_to_patch
chore(main): release 0.9.24
:robot: I have created a release *beep* *boop* --- ## [0.9.24](https://github.com/AlexsJones/llmfit/compare/v0.9.23...v0.9.24) (2026-05-12) ### Features * add MCP server mode and NATS event publishing to llmfit serve ([#545](https://github.com/AlexsJones/llmfit/issues/545)) ([c4958f7](https://github.com/AlexsJones...
c655bc1b2e10b5b0a13a123344755e450832a06d
f20bfd61c16f6e76ea2b1f1295c5424ca7a4e4a5
diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e0891d89..9f7b2b3e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.23" + ".": "0.9.24" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 71cf341a..01f06c74 100644 --- a/CHANGE...
[ ".release-please-manifest.json", "CHANGELOG.md", "Cargo.lock", "Cargo.toml", "version.txt" ]
[]
true
AlexsJones/llmfit
543
issue_to_patch
fix(hardware): fix iGPU filtering on Ryzen 9 9950X with 2 GB iGPU
On systems with an AMD Ryzen 9 9950X (or similar APUs with a Granite Ridge iGPU), rocm-smi reports two GPU agents: the discrete GPU and the integrated GPU. The iGPU filter in detect_amd_gpu_rocm_info() uses a 2 GB VRAM threshold with >= to distinguish discrete GPUs from iGPUs. The Ryzen 9 9950X's Granite Ridge iGPU ...
05e884fcd68a5650afa010c2e93f790233017929
aac98543ec025386d32304f199a30484a9191ae1
diff --git a/llmfit-core/src/hardware.rs b/llmfit-core/src/hardware.rs index f34125db..d9937ff7 100644 --- a/llmfit-core/src/hardware.rs +++ b/llmfit-core/src/hardware.rs @@ -579,12 +579,12 @@ impl SystemSpecs { // Filter out integrated GPUs (iGPUs) that have very little VRAM. // rocm-smi reports all ...
[ "llmfit-core/src/hardware.rs" ]
[]
true
AlexsJones/llmfit
544
issue_to_patch
fix: MoE offload speed overestimate for Qwen3-Coder-Next
## Summary - Fix wrong `active_parameters` (3B → 5.46B) for `Qwen/Qwen3-Coder-Next` in model catalog - Fix MoeOffload speed path skipping `run_mode_factor` (0.8) — early return predates RunModeFactors system ## Problem LLMFit estimated **28.3 tok/s** for Qwen3-Coder-Next in MoEOffload mode. Actual measured speed on RX...
05e884fcd68a5650afa010c2e93f790233017929
72e64c1472e3776de9e4ecd9009007ce18143adc
diff --git a/llmfit-core/data/hf_models.json b/llmfit-core/data/hf_models.json index 6070caa4..e357ab2e 100644 --- a/llmfit-core/data/hf_models.json +++ b/llmfit-core/data/hf_models.json @@ -52497,7 +52497,7 @@ "is_moe": true, "num_experts": 512, "active_experts": 10, - "active_parameters": 3000000000...
[ "llmfit-core/data/hf_models.json", "llmfit-core/src/fit.rs" ]
[]
true
AlexsJones/llmfit
545
issue_to_patch
feat: add MCP server mode and NATS event publishing
## Summary - Adds `llmfit serve --mcp` which runs an MCP server over stdio, exposing 6 tools for agent discovery (system specs, model recommendations, search, hardware planning, runtime checks, installed models) - Adds `llmfit serve --send-events` (behind `nats` cargo feature) to publish hardware/model events to NATS ...
05e884fcd68a5650afa010c2e93f790233017929
e74e250c84b6ae8d823757d75404e7dfc91dad32
diff --git a/API.md b/API.md index 34e6febd..4889c910 100644 --- a/API.md +++ b/API.md @@ -224,6 +224,107 @@ curl "http://127.0.0.1:8787/api/v1/models/top?limit=5&min_fit=good&use_case=codi curl "http://127.0.0.1:8787/api/v1/models/Mistral?runtime=any" ``` +--- + +## MCP Server Mode + +llmfit can run as an MCP (Mod...
[ "API.md", "Cargo.lock", "llmfit-tui/Cargo.toml", "llmfit-tui/src/events.rs", "llmfit-tui/src/main.rs", "llmfit-tui/src/mcp_server.rs", "llmfit-tui/src/serve_api.rs", "llmfit-tui/src/serve_shared.rs" ]
[]
true
AlexsJones/llmfit
540
issue_to_patch
chore(main): release 0.9.23
:robot: I have created a release *beep* *boop* --- ## [0.9.23](https://github.com/AlexsJones/llmfit/compare/v0.9.22...v0.9.23) (2026-05-10) ### Features * populate architecture metadata for precise KV cache and MoE speed estimation ([#539](https://github.com/AlexsJones/llmfit/issues/539)) ([bab8c01](https://github...
91fee7702a5728fd1b0b64459c8be024fc82051a
e43d241b39b31bb5483e61ff4c89efd256df82ee
diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 76d14cdd..e0891d89 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.22" + ".": "0.9.23" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4aabf8b7..71cf341a 100644 --- a/CHANGE...
[ ".release-please-manifest.json", "CHANGELOG.md", "Cargo.lock", "Cargo.toml", "version.txt" ]
[]
true
AlexsJones/llmfit
523
issue_to_patch
fix(bench): 5 follow-up improvements to #278 (keybinding I, labels, UTF-8, dedup HTTP types, README)
Follow-up to #278. Implements the 5 improvements @AlexsJones described in [this comment on #278](https://github.com/AlexsJones/llmfit/pull/278#issuecomment-4365354134) — the `de4522b` commit referenced there wasn't actually pushed (SHA isn't reachable from any branch), so this PR re-implements the same items from the d...
8896fdb861fa6950081c144ddf23d9eb24aef7ed
e3405d08443a3dcf86370ae4afc5e73ae9fafc8a
diff --git a/README.md b/README.md index d1a884e6..19d277ea 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ <a href="https://about.signpath.io"><img src="https://img.shields.io/badge/SignPath-signed-brightgreen?logo=data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNi...
[ "README.md", "llmfit-core/src/bench.rs", "llmfit-core/src/quality.rs", "llmfit-tui/src/main.rs", "llmfit-tui/src/tui_events.rs", "llmfit-tui/src/tui_ui.rs" ]
[]
true
AlexsJones/llmfit
539
issue_to_patch
feat: populate architecture metadata for precise KV cache and MoE speed estimation
## Summary - **Populate architecture metadata** (`hidden_size`, `vocab_size`, `moe_intermediate_size`, `shared_expert_intermediate_size`) from HuggingFace config.json for both curated and auto-discovered models, enabling the existing but previously starved Tier 1 MoE speed estimator and precise KV cache formula - **Fi...
4624ae88fa3ed7d59753a93bec09df47838e8679
55fa5f574d8e3596fa874817611b6d6ea8e18ebe
diff --git a/data/hf_models.json b/data/hf_models.json index c7945062..6070caa4 100644 --- a/data/hf_models.json +++ b/data/hf_models.json @@ -1,4 +1,60 @@ [ + { + "name": "brain-bzh/reve-positions", + "provider": "brain-bzh", + "parameter_count": "2K", + "parameters_raw": 1629, + "min_ram_gb": 1.0, + ...
[ "data/hf_models.json", "llmfit-core/data/hf_models.json", "llmfit-core/src/models.rs", "scripts/scrape_hf_models.py" ]
[]
true
AlexsJones/llmfit
536
issue_to_patch
chore(main): release 0.9.22
:robot: I have created a release *beep* *boop* --- ## [0.9.22](https://github.com/AlexsJones/llmfit/compare/v0.9.21...v0.9.22) (2026-05-06) ### Features * overhaul model discovery with cursor pagination, trending, and additive DB ([#537](https://github.com/AlexsJones/llmfit/issues/537)) ([93e9d67](https://github.c...
93e9d673cf54bde62dc7b24a1400c1cd89f70c1c
ddbd10c8204b416bb2db2f64c39c5c529d0227ee
diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 507bde5f..76d14cdd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.21" + ".": "0.9.22" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 87dad45d..4aabf8b7 100644 --- a/CHANGE...
[ ".release-please-manifest.json", "CHANGELOG.md", "Cargo.lock", "Cargo.toml", "version.txt" ]
[]
true
Anankke/SSPanel-UIM
2,552
issue_to_patch
for sing-box 1.14.0+
c3ea6113c58d946fc3442cdadc13d30b681cf171
bbc388544530e2aaaabf5ccea1d342ec19963b66
diff --git a/config/appprofile.example.php b/config/appprofile.example.php index f07527dc46..e57a5e24fa 100644 --- a/config/appprofile.example.php +++ b/config/appprofile.example.php @@ -61,6 +61,7 @@ 'type' => 'quic', 'server' => '223.6.6.6', 'server_port' => 853, + ...
[ "config/appprofile.example.php", "update.sh" ]
[]
true