task_id
stringlengths
10
58
repo
stringclasses
854 values
pr_number
int32
1
321k
base_sha
stringlengths
40
40
head_sha
stringlengths
40
40
task
stringlengths
2
105k
plan
listlengths
1
100
subagents
listlengths
1
100
revisions
listlengths
0
100
final_diff
stringlengths
256
202M
num_subtasks
int32
1
100
num_changed_files
int32
2
100
ACINQ/eclair#3290
ACINQ/eclair
3,290
689dbda1bfba893d059fe02028f38a55d1c2d845
f5ad2841de695c51d4f31225128e9ab88f75770f
Don't load network graph twice on start-up We previously read the whole network graph from DB (channels and nodes) twice: once before starting any actor to verify that the DB has not been corrupted, and then again when initializing the `Router` actor. We now keep the result of the first DB read instead of throwing ...
[ { "subtask_id": "s1", "goal": "Implement the changes under `eclair-core/src/main/resources/` needed for: Don't load network graph twice on start-up", "scope_files": [ "eclair-core/src/main/resources/reference.conf" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `ec...
[ { "subtask_id": "s1", "scope_files": [ "eclair-core/src/main/resources/reference.conf" ], "solution_diff": "diff --git a/eclair-core/src/main/resources/reference.conf b/eclair-core/src/main/resources/reference.conf\nindex 7b03f01f65..2eda41c9fd 100644\n--- a/eclair-core/src/main/resources/refe...
[ { "subtask_id": "s4", "comment": "I like the idea, but the initial channels/nodes must be provided in an `Init` message (like we do for the `Switchboard`), otherwise they will never be garbage collected.", "revised_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/router/Router.scala b/ecl...
diff --git a/eclair-core/src/main/resources/reference.conf b/eclair-core/src/main/resources/reference.conf index 7b03f01f65..2eda41c9fd 100644 --- a/eclair-core/src/main/resources/reference.conf +++ b/eclair-core/src/main/resources/reference.conf @@ -438,7 +438,6 @@ eclair { channel-exclude-duration = 60 seconds...
8
12
ACINQ/eclair#3287
ACINQ/eclair
3,287
8abe5900eb9cf07c4ef66f371621b6e2e4a10d18
b5d77da49490965d74105e0b193f59c20d1c32e6
Don't try reconnecting automatically to mobile wallets It's useless as they will always have a different IP address, and they will be offline most of the time anyway. They will initiate connections either when the app is started or when they receive a push notification so we never need to initiate connections from the...
[ { "subtask_id": "s1", "goal": "Implement the changes under `eclair-core/src/main/scala/fr/acinq/eclair/io/` needed for: Don't try reconnecting automatically to mobile wallets", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/io/Peer.scala", "eclair-core/src/main/scala/fr/acinq/e...
[ { "subtask_id": "s1", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/io/Peer.scala", "eclair-core/src/main/scala/fr/acinq/eclair/io/ReconnectionTask.scala" ], "solution_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/io/Peer.scala b/eclair-core/src/main/scal...
[ { "subtask_id": "s1", "comment": "I would keep this a bit more generic:\n\n```suggestion\n val autoReconnect = init.storedChannels.exists(_.channelParams.remoteParams.initFeatures.hasFeature(Features.WakeUpNotificationClient))\n```", "revised_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq...
diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/io/Peer.scala b/eclair-core/src/main/scala/fr/acinq/eclair/io/Peer.scala index ccf59b108b..a9ae568090 100644 --- a/eclair-core/src/main/scala/fr/acinq/eclair/io/Peer.scala +++ b/eclair-core/src/main/scala/fr/acinq/eclair/io/Peer.scala @@ -88,10 +88,12 @@ class Pee...
2
4
ACINQ/eclair#3288
ACINQ/eclair
3,288
8abe5900eb9cf07c4ef66f371621b6e2e4a10d18
a04cd46ce61850471fdacf3a539fe9d01c9d289e
Add delays when reading past payment events for stats When we restart, we load past payments events into the peer stats tracker to inform our scoring algorithm. We read them in chunks, but it can be quite expensive in terms of bandwidth. Since this is low priority and there are a lot of DB reads already happening when...
[ { "subtask_id": "s1", "goal": "Implement the changes under `eclair-core/src/main/resources/` needed for: Add delays when reading past payment events for stats", "scope_files": [ "eclair-core/src/main/resources/reference.conf" ] }, { "subtask_id": "s2", "goal": "Implement the change...
[ { "subtask_id": "s1", "scope_files": [ "eclair-core/src/main/resources/reference.conf" ], "solution_diff": "diff --git a/eclair-core/src/main/resources/reference.conf b/eclair-core/src/main/resources/reference.conf\nindex e452e9be2a..7b03f01f65 100644\n--- a/eclair-core/src/main/resources/refe...
[ { "subtask_id": "s1", "comment": "Nit\n```suggestion\n past-events {\n init-delay = 10 minutes\n chunk-interval = 10 seconds\n }\n```", "revised_diff": "diff --git a/eclair-core/src/main/resources/reference.conf b/eclair-core/src/main/resources/reference.conf\nindex e452e9be2a..7b03f01f6...
diff --git a/eclair-core/src/main/resources/reference.conf b/eclair-core/src/main/resources/reference.conf index e452e9be2a..7b03f01f65 100644 --- a/eclair-core/src/main/resources/reference.conf +++ b/eclair-core/src/main/resources/reference.conf @@ -671,6 +671,14 @@ eclair { top-peers-count = 10 // A list of...
5
7
ACINQ/eclair#3282
ACINQ/eclair
3,282
129df369530ece6d1a48632e7f9d17ed09e93a4d
c508de76226a7b108f3aee15d7389f5b393cb6cd
Add fuzz tests for onion, route blinding and lightning message codecs In this PR, I am adding fuzz tests for the remaining `LightningMessageCodecs`. These are core to the LN and must be round-trip safe. In addition, this PR introduces round-trip fuzz tests for: - Payment and message onion payloads: since they ar...
[ { "subtask_id": "s1", "goal": "Implement the changes under `eclair-fuzz/src/test/scala/fr/acinq/eclair/wire/protocol/` needed for: Add fuzz tests for onion, route blinding and lightning message codecs", "scope_files": [ "eclair-fuzz/src/test/scala/fr/acinq/eclair/wire/protocol/FailureMessageCodecs...
[ { "subtask_id": "s1", "scope_files": [ "eclair-fuzz/src/test/scala/fr/acinq/eclair/wire/protocol/FailureMessageCodecsFuzzTest.scala", "eclair-fuzz/src/test/scala/fr/acinq/eclair/wire/protocol/LightningMessageCodecsFuzzTest.scala", "eclair-fuzz/src/test/scala/fr/acinq/eclair/wire/protocol/O...
[]
diff --git a/eclair-fuzz/src/test/scala/fr/acinq/eclair/wire/protocol/FailureMessageCodecsFuzzTest.scala b/eclair-fuzz/src/test/scala/fr/acinq/eclair/wire/protocol/FailureMessageCodecsFuzzTest.scala new file mode 100644 index 0000000000..c26f3a4bc9 --- /dev/null +++ b/eclair-fuzz/src/test/scala/fr/acinq/eclair/wire/pr...
1
4
ACINQ/eclair#3280
ACINQ/eclair
3,280
129df369530ece6d1a48632e7f9d17ed09e93a4d
166d3936fab15ba149ba8eea26aab7657d872b6e
Fix flaky `PeerStatsTracker` test If the test runs too quickly and the message is processed in less than 1 millisecond, there is a race condition since reading from the database excludes the upper timestamp bound (`timestamp < now`).
[ { "subtask_id": "s1", "goal": "Implement the changes under `eclair-core/src/main/scala/fr/acinq/eclair/db/pg/` needed for: Fix flaky `PeerStatsTracker` test", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/db/pg/PgAuditDb.scala" ] }, { "subtask_id": "s2", "goal": "Imp...
[ { "subtask_id": "s1", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/db/pg/PgAuditDb.scala" ], "solution_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/db/pg/PgAuditDb.scala b/eclair-core/src/main/scala/fr/acinq/eclair/db/pg/PgAuditDb.scala\nindex 83172bd56b..aef...
[ { "subtask_id": "s2", "comment": "It seems that our PG and Sqlite audit dbs use inconsistent queries wrt timestamps:\npg: `timestamp BETWEEN ? AND ?` which is inclusive ( a <= timestamp <= b)\nsqlite: `timestamp >= ? AND timestamp < ?` which does not include the upper bound\n\n=> changing the sqlite audit d...
diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/db/pg/PgAuditDb.scala b/eclair-core/src/main/scala/fr/acinq/eclair/db/pg/PgAuditDb.scala index 83172bd56b..aefead91c3 100644 --- a/eclair-core/src/main/scala/fr/acinq/eclair/db/pg/PgAuditDb.scala +++ b/eclair-core/src/main/scala/fr/acinq/eclair/db/pg/PgAuditDb.sca...
2
2
ACINQ/eclair#3283
ACINQ/eclair
3,283
129df369530ece6d1a48632e7f9d17ed09e93a4d
302c37ad729aa8e247ac301acfeb01c8e7b0173e
Add fee field to findroute full format response `findroute`, `findroutetonode`, and `findroutebetweennodes` include a `fee` field for each route in their full format response, so callers don't need to compute fees manually from hop parameters.
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: Add fee field to findroute full format response", "scope_files": [ ".gitignore" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `docs/release-notes/` needed for: Add fee field to findro...
[ { "subtask_id": "s1", "scope_files": [ ".gitignore" ], "solution_diff": "diff --git a/.gitignore b/.gitignore\nindex 06d7e8b22c..1287724adf 100644\n--- a/.gitignore\n+++ b/.gitignore\n@@ -31,6 +31,10 @@ jdbcUrlFile_*.tmp\n \n .claude*\n \n+.bloop/\n+.metals/\n+.vscode/\n+\n # fuzzing\n crash-*...
[ { "subtask_id": "s2", "comment": "That comment looks incorrect, you only added a `fee` field for the total route fee, not for each hop?", "revised_diff": "diff --git a/docs/release-notes/eclair-vnext.md b/docs/release-notes/eclair-vnext.md\nindex 03207f23f2..ed697f909c 100644\n--- a/docs/release-notes/e...
diff --git a/.gitignore b/.gitignore index 06d7e8b22c..1287724adf 100644 --- a/.gitignore +++ b/.gitignore @@ -31,6 +31,10 @@ jdbcUrlFile_*.tmp .claude* +.bloop/ +.metals/ +.vscode/ + # fuzzing crash-* .cifuzz-* diff --git a/docs/release-notes/eclair-vnext.md b/docs/release-notes/eclair-vnext.md index 03207f23f...
4
4
ACINQ/eclair#3284
ACINQ/eclair
3,284
129df369530ece6d1a48632e7f9d17ed09e93a4d
cae0560748f217dc0954db17d8e6329d18274f4a
Allow reply-less pings BOLT1 says: ``` A node receiving a ping message: - if num_pong_bytes is less than 65532: - MUST respond by sending a pong message, with byteslen equal to num_pong_bytes. - otherwise (num_pong_bytes is not less than 65532): - MUST ignore the ping. ``` These reply-less pings are us...
[ { "subtask_id": "s1", "goal": "Implement the changes under `eclair-core/src/main/scala/fr/acinq/eclair/crypto/` needed for: Allow reply-less pings", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/crypto/TransportHandler.scala" ] }, { "subtask_id": "s2", "goal": "Imple...
[ { "subtask_id": "s1", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/crypto/TransportHandler.scala" ], "solution_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/crypto/TransportHandler.scala b/eclair-core/src/main/scala/fr/acinq/eclair/crypto/TransportHandler.scal...
[ { "subtask_id": "s1", "comment": "BOLT1 says you must reply if ping size ` is less than 65532` so this should be:\n```suggestion\n case ping: Ping if ping.pongLength < 65532 =>\n```", "revised_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/crypto/TransportHandler.scala b/eclai...
diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/crypto/TransportHandler.scala b/eclair-core/src/main/scala/fr/acinq/eclair/crypto/TransportHandler.scala index 25e9277d91..262246cd81 100644 --- a/eclair-core/src/main/scala/fr/acinq/eclair/crypto/TransportHandler.scala +++ b/eclair-core/src/main/scala/fr/acinq/ec...
3
3
ACINQ/eclair#2706
ACINQ/eclair
2,706
4c98e1c23712fdd0f90ee851f50758ea0c5a7638
7749a18d3231eb47cb6c92365bce87d2ca28dd09
Use apache archives for mvn in docker build The previous repository we used removed the binaries for mvn 3.9.2, which broke our docker build. It looks like `archive.apache.org` keeps artifacts longer and hopefully won't break our docker build again soon.
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: Use apache archives for mvn in docker build", "scope_files": [ "Dockerfile" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `contrib/` needed for: Use apache archives for mvn in docker ...
[ { "subtask_id": "s1", "scope_files": [ "Dockerfile" ], "solution_diff": "diff --git a/Dockerfile b/Dockerfile\nindex 137b5cfa06..6e98941214 100644\n--- a/Dockerfile\n+++ b/Dockerfile\n@@ -8,7 +8,7 @@ RUN apk add --no-cache curl tar bash\n ARG MAVEN_VERSION=3.9.2\n ARG USER_HOME_DIR=\"/root\"\n...
[]
diff --git a/Dockerfile b/Dockerfile index 137b5cfa06..6e98941214 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apk add --no-cache curl tar bash ARG MAVEN_VERSION=3.9.2 ARG USER_HOME_DIR="/root" ARG SHA=900bdeeeae550d2d2b3920fe0e00e41b0069f32c019d566465015bdd1b3866395cbe016e22d95d25d51d3a5e614af2c83ec...
2
2
ACINQ/eclair#1928
ACINQ/eclair
1,928
59ccf3427ac8cc5b108b5f1e6cf56139415e8ed0
f1d23f842e96f17031dbdb4a20da8a14e854152a
Add validation on the recid in `verifymessage` We offset the `recid` by `31` for compatibility with `lnd` [1] but we should also support normal values (0-3), and also add boundary checks. [1] https://twitter.com/rusty_twit/status/1182102005914800128
[ { "subtask_id": "s1", "goal": "Implement the changes under `eclair-core/src/main/scala/fr/acinq/eclair/` needed for: Add validation on the recid in `verifymessage`", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/Eclair.scala" ] }, { "subtask_id": "s2", "goal": "Imple...
[ { "subtask_id": "s1", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/Eclair.scala" ], "solution_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/Eclair.scala b/eclair-core/src/main/scala/fr/acinq/eclair/Eclair.scala\nindex f335d98244..bc650d75ed 100644\n--- a/eclai...
[]
diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/Eclair.scala b/eclair-core/src/main/scala/fr/acinq/eclair/Eclair.scala index f335d98244..bc650d75ed 100644 --- a/eclair-core/src/main/scala/fr/acinq/eclair/Eclair.scala +++ b/eclair-core/src/main/scala/fr/acinq/eclair/Eclair.scala @@ -458,7 +458,11 @@ class Eclair...
2
2
ACINQ/eclair#2543
ACINQ/eclair
2,543
2fdc9fa4d3f1da7acea881a1c2f1d6e26f45a343
3f84a7c0c6786a284869de7c982d1b114736d6e7
Fix build Fix the tests on `master` and update github actions.
[ { "subtask_id": "s1", "goal": "Implement the changes under `.github/workflows/` needed for: Fix build", "scope_files": [ ".github/workflows/latest-bitcoind.yml", ".github/workflows/main.yml" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `eclair-core/src/test...
[ { "subtask_id": "s1", "scope_files": [ ".github/workflows/latest-bitcoind.yml", ".github/workflows/main.yml" ], "solution_diff": "diff --git a/.github/workflows/latest-bitcoind.yml b/.github/workflows/latest-bitcoind.yml\nindex c768af0f68..078d5ee974 100644\n--- a/.github/workflows/lates...
[]
diff --git a/.github/workflows/latest-bitcoind.yml b/.github/workflows/latest-bitcoind.yml index c768af0f68..078d5ee974 100644 --- a/.github/workflows/latest-bitcoind.yml +++ b/.github/workflows/latest-bitcoind.yml @@ -15,7 +15,7 @@ jobs: timeout-minutes: 90 steps: - name: Checkout bitcoind master - ...
2
3
ACINQ/eclair#2761
ACINQ/eclair
2,761
63a3c4297f6575a3f19425fe78eaefedb52220d3
3201d61e102e96c090f72f59885c72d960941def
Avoid unusable channels after a large splice Splicing (and dual funding as well) introduce a new scenario that could not happen before, where the channel initiator (who pays the fees for the commit tx) can end up below the channel reserve, or right above it but any additional HTLC would make it go below the reserve. ...
[ { "subtask_id": "s1", "goal": "Implement the changes under `eclair-core/src/main/scala/fr/acinq/eclair/channel/` needed for: Avoid unusable channels after a large splice", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala" ] }, { "subtask_id": "s2",...
[ { "subtask_id": "s1", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala" ], "solution_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala b/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala\nindex 266...
[ { "subtask_id": "s1", "comment": "After a dual funded channel creation or splice the reserve should ideally be met for both sides - but if it's not required when the new funding tx is created, then consistency with single funded channels would imply that \"[the protocol ensures that there is always progress...
diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala b/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala index 26665bd02b..fc7ee28546 100644 --- a/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala +++ b/eclair-core/src/main/scala/fr/acinq/eclair/channel...
2
2
ACINQ/eclair#2323
ACINQ/eclair
2,323
8af14ac515f9c01a4b6709720aec1b778aabac90
8687bfa4e6168dac65fc6d47f4106ce5d6e7f05d
Return local channel alias in payment failures When using `option_scid_alias`, we must be careful not to expose the real scid to remote payers. We never generate a `channel_update` with the real scid so this isn't a risk, but we're incorrectly returning the remote alias instead of the returning the local one (which sh...
[ { "subtask_id": "s1", "goal": "Implement the changes under `docs/release-notes/` needed for: Return local channel alias in payment failures", "scope_files": [ "docs/release-notes/eclair-vnext.md" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `eclair-core/src/main/...
[ { "subtask_id": "s1", "scope_files": [ "docs/release-notes/eclair-vnext.md" ], "solution_diff": "diff --git a/docs/release-notes/eclair-vnext.md b/docs/release-notes/eclair-vnext.md\nindex 33cdb33d0b..e956f945ea 100644\n--- a/docs/release-notes/eclair-vnext.md\n+++ b/docs/release-notes/eclair-...
[ { "subtask_id": "s3", "comment": "I would change the signature of `handleAddHtlcCommandError` to:\r\n```scala\r\nprivate def handleAddHtlcCommandError(c: CMD_ADD_HTLC, cause: ChannelException, d: DATA_NORMAL)\r\n```\r\n\r\nIt allows better factorization and would be more consistent with other `handle*` meth...
diff --git a/docs/release-notes/eclair-vnext.md b/docs/release-notes/eclair-vnext.md index 33cdb33d0b..e956f945ea 100644 --- a/docs/release-notes/eclair-vnext.md +++ b/docs/release-notes/eclair-vnext.md @@ -89,8 +89,9 @@ upgrading to this release. ### API changes -- `channelbalances` Retrieves information about th...
15
21
ACINQ/eclair#2797
ACINQ/eclair
2,797
be4ed3c68bcef461b0db24f7fa015d74bf421421
0139369c0637a1e1064aa101d5147dfcbd42cbb1
Dip into remote initiator reserve only for splices #2761 introduced the ability for the HTLC sender to let a remote initiator dip into its reserve to unblock channels after a large splice. However, we relaxed that condition for all channels, even those that don't use splice. This creates compatibility issues with othe...
[ { "subtask_id": "s1", "goal": "Implement the changes under `eclair-core/src/main/scala/fr/acinq/eclair/channel/` needed for: Dip into remote initiator reserve only for splices", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala" ] }, { "subtask_id":...
[ { "subtask_id": "s1", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala" ], "solution_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala b/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala\nindex 6df...
[ { "subtask_id": "s1", "comment": "Shouldn't we test channel features instead?", "revised_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala b/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala\nindex 6df8ed5fda..5dedab5146 100644\n--- a/eclair-cor...
diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala b/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala index 6df8ed5fda..5dedab5146 100644 --- a/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala +++ b/eclair-core/src/main/scala/fr/acinq/eclair/channel...
2
2
ACINQ/eclair#2547
ACINQ/eclair
2,547
d76d0f6591d3fdb6635ec3eb2b1b89a42bcc4ea5
7793665858c94dc0f3f997ba06b83f66ae7dbccb
Update various doc files - link to plugins repository - remove android mention for eclair - update other implementations (renamed) - update docker CI action versions - missing eclair-cli APIs in help
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: Update various doc files", "scope_files": [ "BUILD.md", "CONTRIBUTING.md", "README.md" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `.github/workflows/` needed for: Updat...
[ { "subtask_id": "s1", "scope_files": [ "BUILD.md", "CONTRIBUTING.md", "README.md" ], "solution_diff": "diff --git a/BUILD.md b/BUILD.md\nindex 967da4b2f9..515fd3dd87 100644\n--- a/BUILD.md\n+++ b/BUILD.md\n@@ -45,6 +45,12 @@ To run tests for a specific class, run:\n mvn test -Dsuit...
[]
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 8d145e39c4..602b224dcf 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -11,9 +11,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actio...
3
5
ACINQ/eclair#3157
ACINQ/eclair
3,157
ae3e44be7066c6ed45b8b8021d5de95e086954da
ccf8d17a7c45c15d3e4c025f47ac22f6a5ebbcdd
Resign next remote commit on reconnection We previously retransmitted our last `commit_sig` on reconnection if it hadn't been received by our peer, without changing it. This can be an issue for taproot channels when remote nodes don't use deterministic nonce derivation, because their nonce may be different on reconnec...
[ { "subtask_id": "s1", "goal": "Implement the changes under `eclair-core/src/main/scala/fr/acinq/eclair/channel/` needed for: Resign next remote commit on reconnection", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala", "eclair-core/src/main/scala/fr/aci...
[ { "subtask_id": "s1", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala", "eclair-core/src/main/scala/fr/acinq/eclair/channel/Helpers.scala" ], "solution_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala b/eclai...
[ { "subtask_id": "s4", "comment": "Just to make sure that I get this: data encoded with the old format start with the length of the signature encoded as a varint, which can never be 0 its safe to use 0 as the discriminator for the new format ?", "revised_diff": "diff --git a/eclair-core/src/main/scala/fr...
diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala b/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala index 7200127321..5ff032398d 100644 --- a/eclair-core/src/main/scala/fr/acinq/eclair/channel/Commitments.scala +++ b/eclair-core/src/main/scala/fr/acinq/eclair/channel...
8
11
ACINQ/eclair#3261
ACINQ/eclair
3,261
890ccb37da47398e5757feea8af32411e88292bf
70ab54c80d7b27f9d8485d98986e797231c79cbc
Add backwards-compatible parts of the official splicing protocol We extract from #2887 the parts that can be integrated and deployed immediately because they only use odd fields. This reduces the scope of #2887 which will be useful since guaranteeing backwards-compatibility with the experimental splicing protocol that...
[ { "subtask_id": "s1", "goal": "Implement the changes under `eclair-core/src/main/resources/` needed for: Add backwards-compatible parts of the official splicing protocol", "scope_files": [ "eclair-core/src/main/resources/reference.conf" ] }, { "subtask_id": "s2", "goal": "Implement...
[ { "subtask_id": "s1", "scope_files": [ "eclair-core/src/main/resources/reference.conf" ], "solution_diff": "diff --git a/eclair-core/src/main/resources/reference.conf b/eclair-core/src/main/resources/reference.conf\nindex ba318dbedf..e452e9be2a 100644\n--- a/eclair-core/src/main/resources/refe...
[ { "subtask_id": "s1", "comment": "Any specific reason for increasing this? Not that I mind.", "revised_diff": "diff --git a/eclair-core/src/main/resources/reference.conf b/eclair-core/src/main/resources/reference.conf\nindex ba318dbedf..e452e9be2a 100644\n--- a/eclair-core/src/main/resources/reference.c...
diff --git a/eclair-core/src/main/resources/reference.conf b/eclair-core/src/main/resources/reference.conf index ba318dbedf..e452e9be2a 100644 --- a/eclair-core/src/main/resources/reference.conf +++ b/eclair-core/src/main/resources/reference.conf @@ -109,7 +109,7 @@ eclair { funding { // Each RBF attempt ad...
9
12
ACINQ/eclair#1927
ACINQ/eclair
1,927
275581df9629eded8a1a78afe92ebf5641637080
ff0c9b2c869e00d302f9dc84094a17dcc7990817
Add `AbstractChannelRestored` event trait This is an alternative and hopefully more principled solution to https://github.com/ACINQ/eclair/pull/1924. It makes `Register` in base Eclair to rely on new `ChannelAvailable` trait rather than on concrete `ChannelRestored` class so non-standard channels can be injected into ...
[ { "subtask_id": "s1", "goal": "Implement the changes under `eclair-core/src/main/scala/fr/acinq/eclair/channel/` needed for: Add `AbstractChannelRestored` event trait", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/channel/ChannelEvents.scala", "eclair-core/src/main/scala/fr/a...
[ { "subtask_id": "s1", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/channel/ChannelEvents.scala", "eclair-core/src/main/scala/fr/acinq/eclair/channel/Register.scala" ], "solution_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/channel/ChannelEvents.scala b/...
[ { "subtask_id": "s1", "comment": "For consistency with `Commitment`/`AbstractCommitments`, and because `Available` has another meaning for channels.\r\n\r\n```suggestion\r\ntrait AbstractChannelRestored extends ChannelEvent {\r\n val channel: ActorRef\r\n val channelId: ByteVector32\r\n val peer: ActorRe...
diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/channel/ChannelEvents.scala b/eclair-core/src/main/scala/fr/acinq/eclair/channel/ChannelEvents.scala index ba9275e1ee..9999ce323c 100644 --- a/eclair-core/src/main/scala/fr/acinq/eclair/channel/ChannelEvents.scala +++ b/eclair-core/src/main/scala/fr/acinq/eclair/c...
2
3
ACINQ/eclair#2322
ACINQ/eclair
2,322
6b2e415ecbbd1a602969efb327d9452458129090
9ca8551a1d16a2cec2acb1ea46373a3d9266946e
Make actors signal when they are ready Since actors are initialized asynchronously, and the initialization sometimes involves subscribing to an `EventStream`, we don't know when they are ready to process messages, especially in tests, which lead to race conditions. By making actors publish `SubscriptionsComplete ` on...
[ { "subtask_id": "s1", "goal": "Implement the changes under `eclair-core/src/main/scala/fr/acinq/eclair/` needed for: Make actors signal when they are ready", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/SubscriptionsComplete.scala" ] }, { "subtask_id": "s2", "goal":...
[ { "subtask_id": "s1", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/SubscriptionsComplete.scala" ], "solution_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/SubscriptionsComplete.scala b/eclair-core/src/main/scala/fr/acinq/eclair/SubscriptionsComplete.scala\nnew...
[ { "subtask_id": "s2", "comment": "nit: revert", "revised_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/channel/Register.scala b/eclair-core/src/main/scala/fr/acinq/eclair/channel/Register.scala\nindex 7622bd13f1..f7d3e6c2cc 100644\n--- a/eclair-core/src/main/scala/fr/acinq/eclair/chann...
diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/SubscriptionsComplete.scala b/eclair-core/src/main/scala/fr/acinq/eclair/SubscriptionsComplete.scala new file mode 100644 index 0000000000..23541c5263 --- /dev/null +++ b/eclair-core/src/main/scala/fr/acinq/eclair/SubscriptionsComplete.scala @@ -0,0 +1,10 @@ +pack...
6
6
ACINQ/eclair#2662
ACINQ/eclair
2,662
c73db8479c7a7ce05d61d2e31935d1088236dd01
984177a4361efba3d9238ab195296544ed6b4ac1
Eclair rejected its own closing fee I had a peer force-close after it rejected us sending the shutdown fee it explicitly said it would accept while running Eclair 0.7.0-a804905. The messages on the wire were as follows: ``` 2023-04-28 03:26:16.027 TRACE [lightning::ln::peer_handler:1381] Received message Shut...
[ { "subtask_id": "s1", "goal": "Implement the changes under `eclair-core/src/main/scala/fr/acinq/eclair/channel/` needed for: Eclair rejected its own closing fee", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/channel/Helpers.scala" ] }, { "subtask_id": "s2", "goal": ...
[ { "subtask_id": "s1", "scope_files": [ "eclair-core/src/main/scala/fr/acinq/eclair/channel/Helpers.scala" ], "solution_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/channel/Helpers.scala b/eclair-core/src/main/scala/fr/acinq/eclair/channel/Helpers.scala\nindex 7b22c886e8..96c...
[]
diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/channel/Helpers.scala b/eclair-core/src/main/scala/fr/acinq/eclair/channel/Helpers.scala index 7b22c886e8..96c721a303 100644 --- a/eclair-core/src/main/scala/fr/acinq/eclair/channel/Helpers.scala +++ b/eclair-core/src/main/scala/fr/acinq/eclair/channel/Helpers.sca...
2
2
ACINQ/eclair#1900
ACINQ/eclair
1,900
467a0bc82975f354143a52504c6fcabe273cf031
ca2c87f1990bf98a07fa2bc2a3a2cc91db2d9444
Lower minimum remote dust limit Implement https://github.com/lightningnetwork/lightning-rfc/pull/894 We can safely accept dust limits as small as 354 sats, as long as we explicitly handle the case where a closing tx is generated with an output below dust (when that happens, we force-close to get our funds back). ...
[ { "subtask_id": "s1", "goal": "Implement the changes under `docs/release-notes/` needed for: Lower minimum remote dust limit", "scope_files": [ "docs/release-notes/eclair-vnext.md" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `eclair-core/src/main/scala/fr/acinq/...
[ { "subtask_id": "s1", "scope_files": [ "docs/release-notes/eclair-vnext.md" ], "solution_diff": "diff --git a/docs/release-notes/eclair-vnext.md b/docs/release-notes/eclair-vnext.md\nindex dacd58be80..e129106981 100644\n--- a/docs/release-notes/eclair-vnext.md\n+++ b/docs/release-notes/eclair-...
[ { "subtask_id": "s3", "comment": "Trusting you on this...", "revised_diff": "diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/channel/Helpers.scala b/eclair-core/src/main/scala/fr/acinq/eclair/channel/Helpers.scala\nindex 675ebad7fd..afa436caa8 100644\n--- a/eclair-core/src/main/scala/fr/acinq/ec...
diff --git a/docs/release-notes/eclair-vnext.md b/docs/release-notes/eclair-vnext.md index dacd58be80..e129106981 100644 --- a/docs/release-notes/eclair-vnext.md +++ b/docs/release-notes/eclair-vnext.md @@ -106,6 +106,16 @@ This is fixed in this release: when using Tor, the watchdogs will now also be qu You can also n...
7
9
AMAI-GmbH/AI-Expert-Roadmap#84
AMAI-GmbH/AI-Expert-Roadmap
84
2cc62bd82b5ba9d01c02636ac483d6443672f90c
e281799a48af7e0eaeddbf9ebc0559f680582a90
Open "Randomness, random variable and random sample" links in a new tab Cells where multiple links are present are not opening in a new tab. Added target manually by editing the xml.
[ { "subtask_id": "s1", "goal": "Implement the changes under `images/` needed for: Open \"Randomness, random variable and random sample\" links in a new tab", "scope_files": [ "images/datascience.svg", "images/datascience.xml" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "images/datascience.svg", "images/datascience.xml" ], "solution_diff": "diff --git a/images/datascience.svg b/images/datascience.svg\nindex 23c9cb0..f794f5e 100644\n--- a/images/datascience.svg\n+++ b/images/datascience.svg\n@@ -1,3 +1,3 @@\n <?xml ...
[]
diff --git a/images/datascience.svg b/images/datascience.svg index 23c9cb0..f794f5e 100644 --- a/images/datascience.svg +++ b/images/datascience.svg @@ -1,3 +1,3 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg xmlns="ht...
1
2
AMAI-GmbH/AI-Expert-Roadmap#34
AMAI-GmbH/AI-Expert-Roadmap
34
f40afb42c280b496872b1db2aa99cc5e883e9963
81bb7132c8d865ac66505a41dd4f58dc93529519
Aesthetic Edits to Data Science and Fundamentals Roadmap
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: Aesthetic Edits to Data Science and Fundamentals Roadmap", "scope_files": [ "readme.md" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `images/` needed for: Aesthetic Edits to Data Sci...
[ { "subtask_id": "s1", "scope_files": [ "readme.md" ], "solution_diff": "diff --git a/readme.md b/readme.md\nindex e9a9638..3636b73 100644\n--- a/readme.md\n+++ b/readme.md\n@@ -16,7 +16,7 @@\n \n Below you find a set of charts demonstrating the paths that you can take and the technologies that...
[]
diff --git a/images/datascience.svg b/images/datascience.svg index dab5f3d..23c9cb0 100644 --- a/images/datascience.svg +++ b/images/datascience.svg @@ -1,3 +1,3 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg xmlns="ht...
2
7
AMAI-GmbH/AI-Expert-Roadmap#26
AMAI-GmbH/AI-Expert-Roadmap
26
d0b1ea10dc2ffd34d36f12c29098f411ebdfb992
570451cf7e647320a9be319daa91cc5a75ebbeca
Fixed dead link to Denoising article
[ { "subtask_id": "s1", "goal": "Implement the changes under `images/` needed for: Fixed dead link to Denoising article", "scope_files": [ "images/fundamentals.svg", "images/fundamentals.xml" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "images/fundamentals.svg", "images/fundamentals.xml" ], "solution_diff": "diff --git a/images/fundamentals.svg b/images/fundamentals.svg\nindex abb099d..299e94d 100644\n--- a/images/fundamentals.svg\n+++ b/images/fundamentals.svg\n@@ -1,3 +1,3 @@\n ...
[]
diff --git a/images/fundamentals.svg b/images/fundamentals.svg index abb099d..299e94d 100644 --- a/images/fundamentals.svg +++ b/images/fundamentals.svg @@ -1,3 +1,3 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg xmlns...
1
2
AMAI-GmbH/AI-Expert-Roadmap#24
AMAI-GmbH/AI-Expert-Roadmap
24
2e20e67c95ab4b3d11fd0831719f3a4522c11852
bce379a1a61445cfd89fdd84f3ec625340d87ebc
Bumped year to 2021
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: Bumped year to 2021", "scope_files": [ "LICENSE", "package.json", "readme.md" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `images/` needed for: Bumped year to 2021", ...
[ { "subtask_id": "s1", "scope_files": [ "LICENSE", "package.json", "readme.md" ], "solution_diff": "diff --git a/LICENSE b/LICENSE\nindex 7c83769..05b9c55 100644\n--- a/LICENSE\n+++ b/LICENSE\n@@ -1,6 +1,6 @@\n MIT License\n \n-Copyright (c) 2020 AMAI GmbH\n+Copyright (c) 2021 AMAI ...
[]
diff --git a/LICENSE b/LICENSE index 7c83769..05b9c55 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 AMAI GmbH +Copyright (c) 2021 AMAI GmbH Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "S...
2
5
AMAI-GmbH/AI-Expert-Roadmap#4
AMAI-GmbH/AI-Expert-Roadmap
4
ad45a076cd5b32143941a1b8a92063462a1b53f5
34b3124f0db7cb1c4277e555f96baab2389994d3
Added note to interactive version
[ { "subtask_id": "s1", "goal": "Implement the changes under `images/` needed for: Added note to interactive version", "scope_files": [ "images/big_data_engineer.svg", "images/big_data_engineer.xml", "images/datascience.svg", "images/datascience.xml" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "images/big_data_engineer.svg", "images/big_data_engineer.xml", "images/datascience.svg", "images/datascience.xml" ], "solution_diff": "diff --git a/images/big_data_engineer.svg b/images/big_data_engineer.svg\nindex 2a3a0e0..2abefc2 1006...
[]
diff --git a/images/big_data_engineer.svg b/images/big_data_engineer.svg index 2a3a0e0..2abefc2 100644 --- a/images/big_data_engineer.svg +++ b/images/big_data_engineer.svg @@ -1,3 +1,3 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg...
1
4
AMAI-GmbH/AI-Expert-Roadmap#19
AMAI-GmbH/AI-Expert-Roadmap
19
432aa09b7608d1fd28869ba7b530d8fb9795e6c2
9dd4972d678ceb6c74360562c99430ceaf84d397
Fixing typo in the word 'resources'
[ { "subtask_id": "s1", "goal": "Implement the changes under `images/` needed for: Fixing typo in the word 'resources'", "scope_files": [ "images/fundamentals.svg", "images/fundamentals.xml" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "images/fundamentals.svg", "images/fundamentals.xml" ], "solution_diff": "diff --git a/images/fundamentals.svg b/images/fundamentals.svg\nindex 7d35f75..abb099d 100644\n--- a/images/fundamentals.svg\n+++ b/images/fundamentals.svg\n@@ -1,3 +1,3 @@\n ...
[]
diff --git a/images/fundamentals.svg b/images/fundamentals.svg index 7d35f75..abb099d 100644 --- a/images/fundamentals.svg +++ b/images/fundamentals.svg @@ -1,3 +1,3 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg xmlns...
1
2
AMAI-GmbH/AI-Expert-Roadmap#18
AMAI-GmbH/AI-Expert-Roadmap
18
c3fc763913551733640e5b2191e82a3c293de6f5
bb55e565894a76a463d8f3e3b6244b7ec5271dc9
Fixed Issues from ErdosEuge and Hellisotherpeople
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: Fixed Issues from ErdosEuge and Hellisotherpeople", "scope_files": [ "readme.md" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `images/` needed for: Fixed Issues from ErdosEuge and He...
[ { "subtask_id": "s1", "scope_files": [ "readme.md" ], "solution_diff": "diff --git a/readme.md b/readme.md\nindex 63580bc..defcd26 100644\n--- a/readme.md\n+++ b/readme.md\n@@ -36,6 +36,14 @@ The purpose of these roadmaps is to give you an idea about the landscape and to\n </a>\n </p>\n \n+#...
[]
diff --git a/images/big_data_engineer.svg b/images/big_data_engineer.svg index 2abefc2..7b19401 100644 --- a/images/big_data_engineer.svg +++ b/images/big_data_engineer.svg @@ -1,3 +1,3 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg...
2
13
AMAI-GmbH/AI-Expert-Roadmap#14
AMAI-GmbH/AI-Expert-Roadmap
14
e63bfdb8f4d20be2a967539ae807074e4e8c9c09
79390919d67fa276b1a70eed26a998d89ca08841
Revise "Deep Learning" Section - revise and extend the "Deep Learning" section - minor adjustments in contribution guidelines
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: Revise \"Deep Learning\" Section", "scope_files": [ "contributing.md" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `images/` needed for: Revise \"Deep Learning\" Section", "scope...
[ { "subtask_id": "s1", "scope_files": [ "contributing.md" ], "solution_diff": "diff --git a/contributing.md b/contributing.md\nindex f8624ac..f7b67d0 100644\n--- a/contributing.md\n+++ b/contributing.md\n@@ -9,9 +9,9 @@ Our goal is to have a list of things that anybody would have to learn if th...
[]
diff --git a/contributing.md b/contributing.md index f8624ac..f7b67d0 100644 --- a/contributing.md +++ b/contributing.md @@ -9,9 +9,9 @@ Our goal is to have a list of things that anybody would have to learn if they we Your contributions to this repo are always welcome! Bear in mind, that this repo is *highly opinio...
2
3
AMAI-GmbH/AI-Expert-Roadmap#13
AMAI-GmbH/AI-Expert-Roadmap
13
38ff460e7ce55cb6dbfc3c95a8b30cbf6db9e218
8fffc961a54962e375ec68bd0a05a9be8bcb7a31
fix: misplaced wiki link of MLE & KDE
[ { "subtask_id": "s1", "goal": "Implement the changes under `images/` needed for: fix: misplaced wiki link of MLE & KDE", "scope_files": [ "images/datascience.svg", "images/datascience.xml" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "images/datascience.svg", "images/datascience.xml" ], "solution_diff": "diff --git a/images/datascience.svg b/images/datascience.svg\nindex 7618cd4..2ebb734 100644\n--- a/images/datascience.svg\n+++ b/images/datascience.svg\n@@ -1,3 +1,3 @@\n <?xml ...
[]
diff --git a/images/datascience.svg b/images/datascience.svg index 7618cd4..2ebb734 100644 --- a/images/datascience.svg +++ b/images/datascience.svg @@ -1,3 +1,3 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg xmlns="ht...
1
2
AMAI-GmbH/AI-Expert-Roadmap#6
AMAI-GmbH/AI-Expert-Roadmap
6
72cff0b951599dcb7d821ae008038654813d3d45
2acae74468b2029124556f5c89eafd7998a1543b
Added link to Khan Academy for Linear Algebra Added link to Khan Academy as a good resource for Linear Algebra, Matrix Transformations and fundamentals
[ { "subtask_id": "s1", "goal": "Implement the changes under `images/` needed for: Added link to Khan Academy for Linear Algebra", "scope_files": [ "images/datascience.svg", "images/datascience.xml" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "images/datascience.svg", "images/datascience.xml" ], "solution_diff": "diff --git a/images/datascience.svg b/images/datascience.svg\nindex b4c952d..7618cd4 100644\n--- a/images/datascience.svg\n+++ b/images/datascience.svg\n@@ -1,3 +1,3 @@\n <?xml ...
[]
diff --git a/images/datascience.svg b/images/datascience.svg index b4c952d..7618cd4 100644 --- a/images/datascience.svg +++ b/images/datascience.svg @@ -1,3 +1,3 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg xmlns="ht...
1
2
Aider-AI/aider#5132
Aider-AI/aider
5,132
3ec8ec5a7d695b08a6c24fe6c0c235c8f87df9af
ff191affc6e1413f33dad914d9930a5993aad853
feat: add bash tree-sitter tags for repomap support Adds tree-sitter tag queries for Bash/shell scripts so the repo map can index `.sh`, `.bash`, and `.zsh` files. ## What - New `bash-tags.scm` under both `tree-sitter-language-pack/` and `tree-sitter-languages/` (matching the MATLAB precedent in #20429b685) - Cap...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/queries/tree-sitter-language-pack/` needed for: feat: add bash tree-sitter tags for repomap support", "scope_files": [ "aider/queries/tree-sitter-language-pack/bash-tags.scm" ] }, { "subtask_id": "s2", "goal": "Imple...
[ { "subtask_id": "s1", "scope_files": [ "aider/queries/tree-sitter-language-pack/bash-tags.scm" ], "solution_diff": "diff --git a/aider/queries/tree-sitter-language-pack/bash-tags.scm b/aider/queries/tree-sitter-language-pack/bash-tags.scm\nnew file mode 100644\nindex 00000000000..f89e305e107\n...
[ { "subtask_id": "s3", "comment": "Very good", "revised_diff": "diff --git a/tests/basic/test_repomap.py b/tests/basic/test_repomap.py\nindex 9df806194ac..9453f6c05a8 100644\n--- a/tests/basic/test_repomap.py\n+++ b/tests/basic/test_repomap.py\n@@ -400,6 +400,9 @@ def test_language_ocaml_interface(self):...
diff --git a/aider/queries/tree-sitter-language-pack/bash-tags.scm b/aider/queries/tree-sitter-language-pack/bash-tags.scm new file mode 100644 index 00000000000..f89e305e107 --- /dev/null +++ b/aider/queries/tree-sitter-language-pack/bash-tags.scm @@ -0,0 +1,8 @@ +(function_definition + name: (word) @name.definition....
4
4
Aider-AI/aider#5173
Aider-AI/aider
5,173
6435cb8b1e885d7275327d4b61206b1b1618dfe1
a7a54a9367fefb46fa576840e97f4479c46c7771
Expand ANTHROPIC_MODELS list with recent Claude model names ## Summary \`ANTHROPIC_MODELS\` in \`aider/models.py\` is used by \`sanity_check_models\` to map a bare Claude model name (no provider prefix) to the \`ANTHROPIC_API_KEY\` environment variable. Models not in this list fall through to the keymap provider look...
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: Expand ANTHROPIC_MODELS list with recent Claude model names", "scope_files": [ "HISTORY.md" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `aider/` needed for: Expand ANTHROPIC_MODELS ...
[ { "subtask_id": "s1", "scope_files": [ "HISTORY.md" ], "solution_diff": "diff --git a/HISTORY.md b/HISTORY.md\nindex 8e086e757b7..3d523bdccde 100644\n--- a/HISTORY.md\n+++ b/HISTORY.md\n@@ -2,6 +2,7 @@\n \n ### main branch\n \n+- Expanded `ANTHROPIC_MODELS` list with Claude Opus 4.1/4.5/4.6/4....
[]
diff --git a/HISTORY.md b/HISTORY.md index 8e086e757b7..3d523bdccde 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,6 +2,7 @@ ### main branch +- Expanded `ANTHROPIC_MODELS` list with Claude Opus 4.1/4.5/4.6/4.7 dated variants and Claude Sonnet 3.7 so the Anthropic API key auto-detection (`models.sanity_check_models...
2
2
Aider-AI/aider#4935
Aider-AI/aider
4,935
861a1e4d154f268547a06497cc380e5a5dc8483a
55164933dc152308b8aeb8f78afc461248470e5c
fix: replace two deprecated models, delete one Three models that the unit tests use are no longer available online: - `gpt-4-32k` (see https://github.com/BerriAI/litellm/pull/20795 and https://github.com/BerriAI/litellm/commit/15075ef9ec881cd51831f9e40423fb2058f701f8) - `claude-3-5-sonnet-20240620` (see https://...
[ { "subtask_id": "s1", "goal": "Implement the changes under `tests/basic/` needed for: fix: replace two deprecated models, delete one", "scope_files": [ "tests/basic/test_commands.py", "tests/basic/test_models.py" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "tests/basic/test_commands.py", "tests/basic/test_models.py" ], "solution_diff": "diff --git a/tests/basic/test_commands.py b/tests/basic/test_commands.py\nindex 47b8832dc42..406e928ebf2 100644\n--- a/tests/basic/test_commands.py\n+++ b/tests/basic/...
[]
diff --git a/tests/basic/test_commands.py b/tests/basic/test_commands.py index 47b8832dc42..406e928ebf2 100644 --- a/tests/basic/test_commands.py +++ b/tests/basic/test_commands.py @@ -536,7 +536,7 @@ def test_cmd_tokens_output(self): io = InputOutput(pretty=False, fancy_input=False, yes=False) ...
1
2
Aider-AI/aider#4899
Aider-AI/aider
4,899
265d8a473b5d5bf001db321b251674a120ad75da
975e5a899168444cba6f85d57070cb0012deb75d
Add Python 3.13 and 3.14 support This PR enables Python 3.13 and 3.14 for aider-chat. What changed: - widens requires-python to 3.10 through 3.14 - expands the Ubuntu and Windows workflow matrices to 3.10 through 3.14 - adds marker-based NumPy and SciPy requirements so Python 3.10 stays on older compatible versions w...
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: Add Python 3.13 and 3.14 support", "scope_files": [ "pyproject.toml", "requirements.txt" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `.github/workflows/` needed for: Add Pytho...
[ { "subtask_id": "s1", "scope_files": [ "pyproject.toml", "requirements.txt" ], "solution_diff": "diff --git a/pyproject.toml b/pyproject.toml\nindex e92d278d46f..653fc217512 100644\n--- a/pyproject.toml\n+++ b/pyproject.toml\n@@ -12,10 +12,12 @@ classifiers = [\n \"Programming Langua...
[]
diff --git a/.github/workflows/check_pypi_version.yml b/.github/workflows/check_pypi_version.yml index b383e87be88..2aaacc3761f 100644 --- a/.github/workflows/check_pypi_version.yml +++ b/.github/workflows/check_pypi_version.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ...
4
15
Aider-AI/aider#4674
Aider-AI/aider
4,674
5683f1c089ac42debcd951bad972b348aede21d8
f73085357cf633d04cfa36a5a8f1de3bb826d71c
Allow adding read-only files to editable with git: false. When `git: false` is configured, aider won't promote a read-only file in the repo to editable: > Cannot add /home/chrism/dev/runprompt/README.md as it's not part of the repository This patch fixes that behaviour so it can promote the file to editable just...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/` needed for: Allow adding read-only files to editable with git: false.", "scope_files": [ "aider/commands.py", "aider/repo.py" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "aider/commands.py", "aider/repo.py" ], "solution_diff": "diff --git a/aider/commands.py b/aider/commands.py\nindex b9a3d3c2a20..e4567684c89 100644\n--- a/aider/commands.py\n+++ b/aider/commands.py\n@@ -864,7 +864,13 @@ def cmd_add(self, args):\n ...
[]
diff --git a/aider/commands.py b/aider/commands.py index b9a3d3c2a20..e4567684c89 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -864,7 +864,13 @@ def cmd_add(self, args): self.io.tool_error(f"{matched_file} is already in the chat as an editable file") continue ...
1
2
Aider-AI/aider#4838
Aider-AI/aider
4,838
4625ebb4b517ce51db0aa7eb92c3fea61243610f
b2bec25c2c785989d6456cb03321a61f539bcc86
Uncaught RuntimeError in pathlib.py line 1074 Aider version: 0.86.1 Python version: 3.10.12 Platform: Linux-6.8.0-87-generic-x86_64-with-glibc2.35 Python implementation: CPython Virtual environment: Yes OS: Linux 6.8.0-87-generic (64bit) Git version: git version 2.34.1 An uncaught exception occurred: ``` Traceback (...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/` needed for: Uncaught RuntimeError in pathlib.py line 1074", "scope_files": [ "aider/utils.py" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `tests/basic/` needed for: Uncaught RuntimeError in path...
[ { "subtask_id": "s1", "scope_files": [ "aider/utils.py" ], "solution_diff": "diff --git a/aider/utils.py b/aider/utils.py\nindex 834ffa1953d..f8d843eec4f 100644\n--- a/aider/utils.py\n+++ b/aider/utils.py\n@@ -95,7 +95,10 @@ def is_image_file(file_name):\n \n def safe_abs_path(res):\n \"Gi...
[]
diff --git a/aider/utils.py b/aider/utils.py index 834ffa1953d..f8d843eec4f 100644 --- a/aider/utils.py +++ b/aider/utils.py @@ -95,7 +95,10 @@ def is_image_file(file_name): def safe_abs_path(res): "Gives an abs path, which safely returns a full (not 8.3) windows path" - res = Path(res).resolve() + try: +...
2
2
Aider-AI/aider#4772
Aider-AI/aider
4,772
fb05748ace65bea780e0766b14b0904fbaac5f7f
d91c02c205b3d23d3da9e58594751255cd12bd52
Remove `google-generativeai` as a dependency. The `google-generativeai` package is deprecated, and emits warnings when it's imported. I'm doing some cleanup work to remove it from popular surfacess, so here's a PR :) I'll note that `litellm` uses direct HTTP requests for the API, so it does not use `google-genai` (...
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: Remove `google-generativeai` as a dependency.", "scope_files": [ "requirements.txt" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `aider/` needed for: Remove `google-generativeai` as ...
[ { "subtask_id": "s1", "scope_files": [ "requirements.txt" ], "solution_diff": "diff --git a/requirements.txt b/requirements.txt\nindex ab8831f4f11..6164d07f3fb 100644\n--- a/requirements.txt\n+++ b/requirements.txt\n@@ -41,10 +41,6 @@ beautifulsoup4==4.14.3\n # via\n # -c requirement...
[]
diff --git a/aider/exceptions.py b/aider/exceptions.py index 87d100ae6bf..5cbd023cc4b 100644 --- a/aider/exceptions.py +++ b/aider/exceptions.py @@ -82,10 +82,6 @@ def get_ex_info(self, ex): import litellm if ex.__class__ is litellm.APIConnectionError: - if "google.auth" in str(ex): - ...
4
8
Aider-AI/aider#4656
Aider-AI/aider
4,656
c74f5efb2f3870f56f33ed1dbe2c4167742bcb88
ab29b9951885003ca2baac7a9131011efae8df77
Add support for the latest GPT and Gemini models This PR adds support for the latest `gpt-5-pro`, `gpt-5.1`, and `gemini-3-pro-preview` models.
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/` needed for: Add support for the latest GPT and Gemini models", "scope_files": [ "aider/models.py" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `aider/resources/` needed for: Add support for the l...
[ { "subtask_id": "s1", "scope_files": [ "aider/models.py" ], "solution_diff": "diff --git a/aider/models.py b/aider/models.py\nindex 4a5d86a6975..db0c28d1ede 100644\n--- a/aider/models.py\n+++ b/aider/models.py\n@@ -98,7 +98,8 @@\n \"quasar\": \"openrouter/openrouter/quasar-alpha\",\n \...
[]
diff --git a/aider/models.py b/aider/models.py index 4a5d86a6975..db0c28d1ede 100644 --- a/aider/models.py +++ b/aider/models.py @@ -98,7 +98,8 @@ "quasar": "openrouter/openrouter/quasar-alpha", "r1": "deepseek/deepseek-reasoner", "gemini-2.5-pro": "gemini/gemini-2.5-pro", - "gemini": "gemini/gemini-2...
2
2
Aider-AI/aider#4621
Aider-AI/aider
4,621
11516d6d6bc7466b441971f7fb34790242f2a982
93f20a6d23fa9969906fe4f05277d44c27a79b8e
add initial haskell-tags.scm for repomap building Adds basic repomap support for haskell. Beyond the included tests, here's an example of running with these changes on an existing haskell project: ```shell ❯ git clone https://github.com/jaspervdj/websockets.git ❯ cd websockets ❯ AIDER_ANALYTICS_DISABLE=1 OPENAI_...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/queries/tree-sitter-languages/` needed for: add initial haskell-tags.scm for repomap building", "scope_files": [ "aider/queries/tree-sitter-languages/haskell-tags.scm" ] }, { "subtask_id": "s2", "goal": "Implement th...
[ { "subtask_id": "s1", "scope_files": [ "aider/queries/tree-sitter-languages/haskell-tags.scm" ], "solution_diff": "diff --git a/aider/queries/tree-sitter-languages/haskell-tags.scm b/aider/queries/tree-sitter-languages/haskell-tags.scm\nnew file mode 100644\nindex 00000000000..f5c073750a6\n---...
[]
diff --git a/aider/queries/tree-sitter-languages/haskell-tags.scm b/aider/queries/tree-sitter-languages/haskell-tags.scm new file mode 100644 index 00000000000..f5c073750a6 --- /dev/null +++ b/aider/queries/tree-sitter-languages/haskell-tags.scm @@ -0,0 +1,3 @@ +(function (variable) @name.definition.function) +(bind ...
3
3
Aider-AI/aider#4620
Aider-AI/aider
4,620
11516d6d6bc7466b441971f7fb34790242f2a982
be8da40b1f050fa325265a75e92b1d7d308679dd
add initial zig-tags.scm for repomap building Adds basic repomap support for zig. Beyond the included tests, here's an example of running with these changes on an existing zig project: ```sh ❯ git clone https://github.com/BrookJeynes/jido.git ❯ cd jido ❯ AIDER_ANALYTICS_DISABLE=1 OPENAI_API_KEY=dummy \ ...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/queries/tree-sitter-languages/` needed for: add initial zig-tags.scm for repomap building", "scope_files": [ "aider/queries/tree-sitter-languages/zig-tags.scm" ] }, { "subtask_id": "s2", "goal": "Implement the change...
[ { "subtask_id": "s1", "scope_files": [ "aider/queries/tree-sitter-languages/zig-tags.scm" ], "solution_diff": "diff --git a/aider/queries/tree-sitter-languages/zig-tags.scm b/aider/queries/tree-sitter-languages/zig-tags.scm\nnew file mode 100644\nindex 00000000000..c02028ea8a1\n--- /dev/null\n...
[]
diff --git a/aider/queries/tree-sitter-languages/zig-tags.scm b/aider/queries/tree-sitter-languages/zig-tags.scm new file mode 100644 index 00000000000..c02028ea8a1 --- /dev/null +++ b/aider/queries/tree-sitter-languages/zig-tags.scm @@ -0,0 +1,3 @@ +(FnProto) @name.definition.function +(VarDecl "const" @name.definitio...
3
3
Aider-AI/aider#4557
Aider-AI/aider
4,557
1a6d035653c8f0016ef818c212959e1837fbda73
bfed819c1927b26e261e9ec6ab4e08020135676c
Remove duplicate instruction "Always reply to the user in {language}" After refactoring of the final reminders in 849a379a8cc51f94981be86cb73d311dd6eb5dac, the instruction in which language llm should respond became duplicated at the begining of the system prompt. So begining of the system prompt now looks like: ``` ...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/coders/` needed for: Remove duplicate instruction \"Always reply to the user in {language}\"", "scope_files": [ "aider/coders/editblock_prompts.py", "aider/coders/patch_prompts.py", "aider/coders/udiff_prompts.py", ...
[ { "subtask_id": "s1", "scope_files": [ "aider/coders/editblock_prompts.py", "aider/coders/patch_prompts.py", "aider/coders/udiff_prompts.py", "aider/coders/wholefile_prompts.py" ], "solution_diff": "diff --git a/aider/coders/editblock_prompts.py b/aider/coders/editblock_promp...
[]
diff --git a/aider/coders/editblock_prompts.py b/aider/coders/editblock_prompts.py index f6baaeb5fe8..fc494af4f1d 100644 --- a/aider/coders/editblock_prompts.py +++ b/aider/coders/editblock_prompts.py @@ -12,8 +12,6 @@ class EditBlockPrompts(CoderPrompts): Take requests for changes to the supplied code. If the reques...
1
4
Aider-AI/aider#4552
Aider-AI/aider
4,552
d47d689d1890728a51ed70cda96dea7b849c994d
cb6a152e5ee27fbc77ac499d5e628ccd74a5fa2a
chore: version DeepSeek name and fix cost calculation The previous result had costs that don't match up with the cost update that was included, and don't align with what I was actually charged. I suspect the model metadata file was incorrect to begin with and that's why my update didn't have any affect. This fixes ...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/resources/` needed for: chore: version DeepSeek name and fix cost calculation", "scope_files": [ "aider/resources/model-metadata.json" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `aider/website/_d...
[ { "subtask_id": "s1", "scope_files": [ "aider/resources/model-metadata.json" ], "solution_diff": "diff --git a/aider/resources/model-metadata.json b/aider/resources/model-metadata.json\nindex 1705a6ceec0..64c480e55ed 100644\n--- a/aider/resources/model-metadata.json\n+++ b/aider/resources/mode...
[ { "subtask_id": "s1", "comment": "The confusing part here is that upstream has:\r\n\r\nhttps://github.com/BerriAI/litellm/blob/main/model_prices_and_context_window.json#L5433\r\n\r\nbut https://aider.chat/docs/config/adv-model-settings.html does point out:\r\n\r\n_Use a fully qualified model name with a pro...
diff --git a/aider/resources/model-metadata.json b/aider/resources/model-metadata.json index 1705a6ceec0..64c480e55ed 100644 --- a/aider/resources/model-metadata.json +++ b/aider/resources/model-metadata.json @@ -1,5 +1,5 @@ { - "deepseek-reasoner": { + "deepseek/deepseek-reasoner": { "max_tokens": 6400...
2
2
Aider-AI/aider#4551
Aider-AI/aider
4,551
6963e658877df974450c57f83a036b42c010b8dd
484e47d029fdd3fbbd6489ca03a3ba19dc226efa
DeepSeek-3.2-Exp chat and reasoning results
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/resources/` needed for: DeepSeek-3.2-Exp chat and reasoning results", "scope_files": [ "aider/resources/model-metadata.json" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `aider/website/_data/` need...
[ { "subtask_id": "s1", "scope_files": [ "aider/resources/model-metadata.json" ], "solution_diff": "diff --git a/aider/resources/model-metadata.json b/aider/resources/model-metadata.json\nindex aff3b78cbe1..1705a6ceec0 100644\n--- a/aider/resources/model-metadata.json\n+++ b/aider/resources/mode...
[ { "subtask_id": "s1", "comment": "@paul-gauthier Should this have been `deepseek/deepseek-reasoner`? The cost update I applied here didn't \"take\", as a result the claimed cost for the reasoner model is about 4 times what I was actually charged.", "revised_diff": "diff --git a/aider/resources/model-met...
diff --git a/aider/resources/model-metadata.json b/aider/resources/model-metadata.json index aff3b78cbe1..1705a6ceec0 100644 --- a/aider/resources/model-metadata.json +++ b/aider/resources/model-metadata.json @@ -1,16 +1,32 @@ { "deepseek-reasoner": { + "max_tokens": 64000, + "max_input_tokens": 128...
2
2
Aider-AI/aider#4410
Aider-AI/aider
4,410
f38200c511674e83a1b34a44e85beb77ee78f5c7
3402b151f7e1bfc8faf7c5dec9359426d8bd28c5
chore: prettier scripting usage for faq Hi, this repo is awesome. However when I was searching for some programatically usage, it is not that ​​eye-catching. Finally I found this issue: https://github.com/Aider-AI/aider/issues/426 , and seems there was a hint before. So I link scripting.md to faq, so that others ...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/website/docs/` needed for: chore: prettier scripting usage for faq", "scope_files": [ "aider/website/docs/faq.md", "aider/website/docs/scripting.md" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "aider/website/docs/faq.md", "aider/website/docs/scripting.md" ], "solution_diff": "diff --git a/aider/website/docs/faq.md b/aider/website/docs/faq.md\nindex 97d7d100f00..5d17c1c4376 100644\n--- a/aider/website/docs/faq.md\n+++ b/aider/website/docs/...
[]
diff --git a/aider/website/docs/faq.md b/aider/website/docs/faq.md index 97d7d100f00..5d17c1c4376 100644 --- a/aider/website/docs/faq.md +++ b/aider/website/docs/faq.md @@ -375,6 +375,10 @@ Aider is under an [Apache 2.0 license](https://github.com/Aider-AI/aider/blob/main/LICENSE.txt). +## Can I Script Aider? + +Y...
1
2
Aider-AI/aider#4342
Aider-AI/aider
4,342
7bc2e4e911b347599d37bf52454f6da3169d6146
63d3dbcc9b2492284a999f7855aa523c4201b619
Add openrouter kimi-k2 model to `aider/resources`. Overall documentation is quite light for this new model. Max token information is from https://openrouter.ai/moonshotai/kimi-k2. Information regarding the ideal temperature (0.6) and use of system prompt is from https://platform.moonshot.ai/docs/guide/agent-supp...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/resources/` needed for: Add openrouter kimi-k2 model to `aider/resources`.", "scope_files": [ "aider/resources/model-metadata.json", "aider/resources/model-settings.yml" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "aider/resources/model-metadata.json", "aider/resources/model-settings.yml" ], "solution_diff": "diff --git a/aider/resources/model-metadata.json b/aider/resources/model-metadata.json\nindex aff3b78cbe1..46809c40a13 100644\n--- a/aider/resources/mod...
[]
diff --git a/aider/resources/model-metadata.json b/aider/resources/model-metadata.json index aff3b78cbe1..46809c40a13 100644 --- a/aider/resources/model-metadata.json +++ b/aider/resources/model-metadata.json @@ -112,6 +112,18 @@ "litellm_provider": "openrouter", "mode": "chat" }, + "openroute...
1
2
Aider-AI/aider#4324
Aider-AI/aider
4,324
f22fbf9b3ae20361c23dfbd989929e25cd3ccd61
ef59ecbcd8fd557681d13a715cf31875d6aef450
Add gemini 2.5 flash lite preview 06-17
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/resources/` needed for: Add gemini 2.5 flash lite preview 06-17", "scope_files": [ "aider/resources/model-metadata.json", "aider/resources/model-settings.yml" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "aider/resources/model-metadata.json", "aider/resources/model-settings.yml" ], "solution_diff": "diff --git a/aider/resources/model-metadata.json b/aider/resources/model-metadata.json\nindex f8b44343990..aff3b78cbe1 100644\n--- a/aider/resources/mod...
[]
diff --git a/aider/resources/model-metadata.json b/aider/resources/model-metadata.json index f8b44343990..aff3b78cbe1 100644 --- a/aider/resources/model-metadata.json +++ b/aider/resources/model-metadata.json @@ -665,6 +665,33 @@ "supported_output_modalities": ["text"], "source": "https://ai.google.de...
1
2
Aider-AI/aider#3789
Aider-AI/aider
3,789
9d7dc00f25c6d57bb88c55d6b1d3008d544c6694
1d42690824f4208c612210b73b6d002830aa7882
feat: Add Co-authored-by attribution for AI commits This PR implements the proposal from issue #3788, adding support for attributing AI-generated commits using the `Co-authored-by:` Git trailer. **Changes:** * Introduces the `--attribute-co-authored-by` command-line flag (and corresponding config option) to en...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/` needed for: feat: Add Co-authored-by attribution for AI commits", "scope_files": [ "aider/args.py", "aider/main.py", "aider/repo.py" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `aide...
[ { "subtask_id": "s1", "scope_files": [ "aider/args.py", "aider/main.py", "aider/repo.py" ], "solution_diff": "diff --git a/aider/args.py b/aider/args.py\nindex 6df19778b63..dfa84b6c2c6 100644\n--- a/aider/args.py\n+++ b/aider/args.py\n@@ -427,14 +427,20 @@ def get_parser(default_co...
[ { "subtask_id": "s1", "comment": "**`# <-- Restored`**: This comment appears to be a remnant from the development process, likely indicating that the line `attribute_co_authored_by = coder.args.attribute_co_authored_by` was perhaps accidentally deleted or commented out and then added back in. It doesn't ser...
diff --git a/aider/args.py b/aider/args.py index 6df19778b63..dfa84b6c2c6 100644 --- a/aider/args.py +++ b/aider/args.py @@ -427,14 +427,20 @@ def get_parser(default_config_files, git_root): group.add_argument( "--attribute-author", action=argparse.BooleanOptionalAction, - default=True, - ...
3
5
Aider-AI/aider#3752
Aider-AI/aider
3,752
f46deb4eb733732d48cc094005a268337e545dc2
be303292885f70d76f7e51e70ad38cbcebe99ce1
Update Azure Documentation I ran into some issues getting aider to work with models hosted on Azure and wanted to update the documentation to make things a little more clear for anyone else going down the same route.
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/website/assets/` needed for: Update Azure Documentation", "scope_files": [ "aider/website/assets/azure-deployment.png" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `aider/website/docs/llms/` needed...
[ { "subtask_id": "s1", "scope_files": [ "aider/website/assets/azure-deployment.png" ], "solution_diff": "diff --git a/aider/website/assets/azure-deployment.png b/aider/website/assets/azure-deployment.png\nnew file mode 100644\nindex 00000000000..0594cc08e56\nBinary files /dev/null and b/aider/w...
[]
diff --git a/aider/website/assets/azure-deployment.png b/aider/website/assets/azure-deployment.png new file mode 100644 index 00000000000..0594cc08e56 Binary files /dev/null and b/aider/website/assets/azure-deployment.png differ diff --git a/aider/website/docs/llms/azure.md b/aider/website/docs/llms/azure.md index 5568...
2
2
Aider-AI/aider#3870
Aider-AI/aider
3,870
e205629a94dae0b98e4d598109be39467a88b49e
98ee78edf0ad446361ac98ebe86b499a55a01358
feat: add configurable PostHog host and API key parameters Hi! 👋🏻 Would you consider adding configuration options to specify a custom PostHog project or a custom PostHog host? This could be helpful for teams using aider within a company who want to monitor adoption and usage among engineers using their own Pos...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/` needed for: feat: add configurable PostHog host and API key parameters", "scope_files": [ "aider/analytics.py", "aider/args.py", "aider/main.py" ] }, { "subtask_id": "s2", "goal": "Implement the changes...
[ { "subtask_id": "s1", "scope_files": [ "aider/analytics.py", "aider/args.py", "aider/main.py" ], "solution_diff": "diff --git a/aider/analytics.py b/aider/analytics.py\nindex d5c37c10aab..59913ccbf6c 100644\n--- a/aider/analytics.py\n+++ b/aider/analytics.py\n@@ -70,9 +70,17 @@ cla...
[]
diff --git a/aider/analytics.py b/aider/analytics.py index d5c37c10aab..59913ccbf6c 100644 --- a/aider/analytics.py +++ b/aider/analytics.py @@ -70,9 +70,17 @@ class Analytics: # ephemeral logfile = None - def __init__(self, logfile=None, permanently_disable=False): + def __init__( + self, ...
3
5
Aider-AI/aider#4028
Aider-AI/aider
4,028
3caab85931be9df2d51b8c61352fa213c20ee8d1
59dbce8575920665e3e3ff96197fd7ae7e6bf4d4
Add Clojure repomap queries Definitions: symbol name (without namespace) immediately following a `def` prefixed symbol References: symbol name (without namespace) found anywhere The definitions is pretty good; using `def` prefix is a very standard Clojure pattern even for 3rd party macros. References is less th...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/` needed for: Add Clojure repomap queries", "scope_files": [ "aider/repomap.py" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `aider/queries/tree-sitter-language-pack/` needed for: Add Clojure repom...
[ { "subtask_id": "s1", "scope_files": [ "aider/repomap.py" ], "solution_diff": "diff --git a/aider/repomap.py b/aider/repomap.py\nindex 5c40c469b6a..23eee239f83 100644\n--- a/aider/repomap.py\n+++ b/aider/repomap.py\n@@ -468,10 +468,11 @@ def get_ranked_tags(\n mul = 1.0\n \n ...
[]
diff --git a/aider/queries/tree-sitter-language-pack/clojure-tags.scm b/aider/queries/tree-sitter-language-pack/clojure-tags.scm new file mode 100644 index 00000000000..4b2bfa1724f --- /dev/null +++ b/aider/queries/tree-sitter-language-pack/clojure-tags.scm @@ -0,0 +1,7 @@ +(list_lit + meta: _* + . (sym_lit name: (sy...
2
2
Aider-AI/aider#4268
Aider-AI/aider
4,268
90ecde4da9bb4670684b38b8e687ff06cd70005e
05ca9e5c240f9ae6487953c635f0b078e1037601
add Gemini 2.5 non-preview Vertex models add missing Vertex Gemini 2.5 general available models
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/resources/` needed for: add Gemini 2.5 non-preview Vertex models", "scope_files": [ "aider/resources/model-metadata.json", "aider/resources/model-settings.yml" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "aider/resources/model-metadata.json", "aider/resources/model-settings.yml" ], "solution_diff": "diff --git a/aider/resources/model-metadata.json b/aider/resources/model-metadata.json\nindex b406ce4ff62..f8b44343990 100644\n--- a/aider/resources/mod...
[]
diff --git a/aider/resources/model-metadata.json b/aider/resources/model-metadata.json index b406ce4ff62..f8b44343990 100644 --- a/aider/resources/model-metadata.json +++ b/aider/resources/model-metadata.json @@ -276,6 +276,61 @@ "supports_tool_choice": true, "source": "https://cloud.google.com/vertex...
1
2
Aider-AI/aider#4269
Aider-AI/aider
4,269
a785b0f46347f06909abeab65881c52e4625990c
c4b9f14b906b19bc961bd6b6730c7328fa3d0e9e
[Bug] Can't use `/read-only` if filepath contains `[]` while `/add` is working fine ### Issue ``` Readonly: AIDER-INSTRUCTION.md README.md src/lib/api/api.ts > /read-only /Volumes/t7ex/Documents/oatnil/ud/ud-next-web/src/app/todolist/[id]/page.tsx No matches found for: /Volumes/t7ex/...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/` needed for: [Bug] Can't use `/read-only` if filepath contains `[]` while `/add` is working fine", "scope_files": [ "aider/commands.py" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `tests/basic/` ...
[ { "subtask_id": "s1", "scope_files": [ "aider/commands.py" ], "solution_diff": "diff --git a/aider/commands.py b/aider/commands.py\nindex e21f29d9887..9bac9bab1f6 100644\n--- a/aider/commands.py\n+++ b/aider/commands.py\n@@ -1316,12 +1316,23 @@ def cmd_read_only(self, args):\n # First ...
[]
diff --git a/aider/commands.py b/aider/commands.py index e21f29d9887..9bac9bab1f6 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -1316,12 +1316,23 @@ def cmd_read_only(self, args): # First collect all expanded paths for pattern in filenames: expanded_pattern = expanduser(patter...
2
2
Aider-AI/aider#4260
Aider-AI/aider
4,260
fdb49e18cd9b566adde9eecf9e1de47ac78ff7a8
20429b685291838715465c7e802a6d4c14f21353
add MATLAB tags to enable repo map support ### Description This PR adds support for MATLAB repo maps. I added in `matlab-tags.scm` files, and added a test case for these changes.
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/queries/tree-sitter-language-pack/` needed for: add MATLAB tags to enable repo map support", "scope_files": [ "aider/queries/tree-sitter-language-pack/matlab-tags.scm" ] }, { "subtask_id": "s2", "goal": "Implement th...
[ { "subtask_id": "s1", "scope_files": [ "aider/queries/tree-sitter-language-pack/matlab-tags.scm" ], "solution_diff": "diff --git a/aider/queries/tree-sitter-language-pack/matlab-tags.scm b/aider/queries/tree-sitter-language-pack/matlab-tags.scm\nnew file mode 100644\nindex 00000000000..66f1252...
[]
diff --git a/aider/queries/tree-sitter-language-pack/matlab-tags.scm b/aider/queries/tree-sitter-language-pack/matlab-tags.scm new file mode 100644 index 00000000000..66f12527fe7 --- /dev/null +++ b/aider/queries/tree-sitter-language-pack/matlab-tags.scm @@ -0,0 +1,10 @@ +(class_definition + name: (identifier) @name.d...
4
4
Aider-AI/aider#4254
Aider-AI/aider
4,254
3cb120e0a924f8276f121d95a77193e9c492befa
bb1b9e8e2d90692c2ac5a1ab6a8ef109685a54c4
Support official model `openrouter/google/gemini-2.5-pro` ### **PR Type** Feature ___ ### **PR Description** - Added support for `openrouter/google/gemini-2.5-pro` model. - Includes metadata configuration in `model-metadata.json`. - Added model settings in `model-settings.yml`.
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/resources/` needed for: Support official model `openrouter/google/gemini-2.5-pro`", "scope_files": [ "aider/resources/model-metadata.json", "aider/resources/model-settings.yml" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "aider/resources/model-metadata.json", "aider/resources/model-settings.yml" ], "solution_diff": "diff --git a/aider/resources/model-metadata.json b/aider/resources/model-metadata.json\nindex 0c3676e5634..b406ce4ff62 100644\n--- a/aider/resources/mod...
[ { "subtask_id": "s1", "comment": "@KennyDizi was this supposed to be `openrouter/google/gemini-2.5-pro`?", "revised_diff": "diff --git a/aider/resources/model-metadata.json b/aider/resources/model-metadata.json\nindex 0c3676e5634..b406ce4ff62 100644\n--- a/aider/resources/model-metadata.json\n+++ b/aide...
diff --git a/aider/resources/model-metadata.json b/aider/resources/model-metadata.json index 0c3676e5634..b406ce4ff62 100644 --- a/aider/resources/model-metadata.json +++ b/aider/resources/model-metadata.json @@ -348,6 +348,42 @@ "supports_tool_choice": true, "source": "https://cloud.google.com/vertex...
1
2
Aider-AI/aider#4242
Aider-AI/aider
4,242
f8855ebc5894e6ba3076645927e56f441d7ad1c3
1677db3ca7b2ff530b47a81f67828090e43506a0
Update gemini models in model-settings.yml 1. Remove dead gemini models (they can't be accessed anymore) 2. Add the new gemini 2.5 pro and flash settings (with `use_temperature: false`) I noticed that the settings for many gemini models don't have `use_temperature: false` which leads to requests being sent with `t...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/` needed for: Update gemini models in model-settings.yml", "scope_files": [ "aider/models.py" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `aider/resources/` needed for: Update gemini models in mod...
[ { "subtask_id": "s1", "scope_files": [ "aider/models.py" ], "solution_diff": "diff --git a/aider/models.py b/aider/models.py\nindex 7a9d1af182b..ae76f03424b 100644\n--- a/aider/models.py\n+++ b/aider/models.py\n@@ -93,11 +93,11 @@\n \"3\": \"gpt-3.5-turbo\",\n # Other models\n \"de...
[]
diff --git a/aider/models.py b/aider/models.py index 7a9d1af182b..ae76f03424b 100644 --- a/aider/models.py +++ b/aider/models.py @@ -93,11 +93,11 @@ "3": "gpt-3.5-turbo", # Other models "deepseek": "deepseek/deepseek-chat", - "flash": "gemini/gemini-2.5-flash-preview-04-17", + "flash": "gemini/gemi...
2
3
Aider-AI/aider#4228
Aider-AI/aider
4,228
2df4beb6e975d1d45a4e9b50718543b0d73ab9b9
e91efda8fe5c9a98868b3ae2b65b80ea7398f0da
[Feature] Resetting thinking tokens using "0" Once you run `/thinking-tokens 4k` inside chat, there was no way to reset it. With this PR, `/thinking-tokens 0` does that.
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/` needed for: [Feature] Resetting thinking tokens using \"0\"", "scope_files": [ "aider/args.py", "aider/commands.py", "aider/models.py" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `ai...
[ { "subtask_id": "s1", "scope_files": [ "aider/args.py", "aider/commands.py", "aider/models.py" ], "solution_diff": "diff --git a/aider/args.py b/aider/args.py\nindex 43e03702efc..d36009c28fc 100644\n--- a/aider/args.py\n+++ b/aider/args.py\n@@ -143,7 +143,7 @@ def get_parser(defaul...
[]
diff --git a/aider/args.py b/aider/args.py index 43e03702efc..d36009c28fc 100644 --- a/aider/args.py +++ b/aider/args.py @@ -143,7 +143,7 @@ def get_parser(default_config_files, git_root): group.add_argument( "--thinking-tokens", type=str, - help="Set the thinking token budget for models t...
4
7
Aider-AI/aider#4022
Aider-AI/aider
4,022
17d40a62c931ac91fc9c31288310b37b62175c47
e54ac087cbe60d17db3e8aa495aa14cfabf8b394
Vertex AI models can't use the weak or editor models? ### Issue Using the Vertex AI provider/platform/API, we've been getting this series of errors forever, and I think it's causing fallback to the "big expensive" model for every operation, which is kinda burning through our free credits really fast (and it's slower,...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/resources/` needed for: Vertex AI models can't use the weak or editor models?", "scope_files": [ "aider/resources/model-settings.yml" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `aider/website/doc...
[ { "subtask_id": "s1", "scope_files": [ "aider/resources/model-settings.yml" ], "solution_diff": "diff --git a/aider/resources/model-settings.yml b/aider/resources/model-settings.yml\nindex 935e0cef649..ff713c3faba 100644\n--- a/aider/resources/model-settings.yml\n+++ b/aider/resources/model-se...
[]
diff --git a/aider/resources/model-settings.yml b/aider/resources/model-settings.yml index 935e0cef649..ff713c3faba 100644 --- a/aider/resources/model-settings.yml +++ b/aider/resources/model-settings.yml @@ -315,7 +315,7 @@ editor_edit_format: editor-diff accepts_settings: ["thinking_tokens"] -- name: vertex_a...
2
2
Aider-AI/aider#2692
Aider-AI/aider
2,692
083605e2d762e6281a9230f5ea2de9ddaa88a1a9
5c92491bc085d5d10c80bced00d07a916bf4ad2f
Uncaught UnicodeDecodeError in fun.py line 264 Aider version: 0.57.1 Python version: 3.11.10 Platform: Linux-4.4.0-19041-Microsoft-x86_64-with-glibc2.31 Python implementation: CPython Virtual environment: Yes OS: Linux 4.4.0-19041-Microsoft (64bit) Git version: git version 2.45.1 An uncaught exception occurre...
[ { "subtask_id": "s1", "goal": "Implement the changes under `aider/` needed for: Uncaught UnicodeDecodeError in fun.py line 264", "scope_files": [ "aider/main.py" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `tests/basic/` needed for: Uncaught UnicodeDecodeError i...
[ { "subtask_id": "s1", "scope_files": [ "aider/main.py" ], "solution_diff": "diff --git a/aider/main.py b/aider/main.py\nindex 31dc79c41d1..ee55261a292 100644\n--- a/aider/main.py\n+++ b/aider/main.py\n@@ -393,6 +393,12 @@ def sanity_check_repo(repo, io):\n if not repo.git_repo_error:\n...
[]
diff --git a/aider/main.py b/aider/main.py index 31dc79c41d1..ee55261a292 100644 --- a/aider/main.py +++ b/aider/main.py @@ -393,6 +393,12 @@ def sanity_check_repo(repo, io): if not repo.git_repo_error: return True error_msg = str(repo.git_repo_error) + except UnicodeDecodeError as exc...
2
2
Alexays/Waybar#5013
Alexays/Waybar
5,013
cca8dc38b6ed25ef78920669c5653748f31e4ba6
97917db59369b66ef412a87f90cfdbda3ad55225
fix(hyprland/workspaces): adapt dispatch commands for Lua IPC protocol Hyprland 0.54 replaced the text-based dispatch socket protocol with a Lua-based one. Commands like "dispatch workspace 1" are now interpreted as invalid Lua (return hl.dispatch(workspace 1)), breaking workspace clicks and scroll navigation. Add ...
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/modules/hyprland/` needed for: fix(hyprland/workspaces): adapt dispatch commands for Lua IPC protocol", "scope_files": [ "include/modules/hyprland/backend.hpp" ] }, { "subtask_id": "s2", "goal": "Implement the chan...
[ { "subtask_id": "s1", "scope_files": [ "include/modules/hyprland/backend.hpp" ], "solution_diff": "diff --git a/include/modules/hyprland/backend.hpp b/include/modules/hyprland/backend.hpp\nindex a6ebd19178..7c6369da72 100644\n--- a/include/modules/hyprland/backend.hpp\n+++ b/include/modules/hy...
[]
diff --git a/include/modules/hyprland/backend.hpp b/include/modules/hyprland/backend.hpp index a6ebd19178..7c6369da72 100644 --- a/include/modules/hyprland/backend.hpp +++ b/include/modules/hyprland/backend.hpp @@ -4,6 +4,7 @@ #include <filesystem> #include <list> #include <mutex> +#include <optional> #include <str...
3
5
Alexays/Waybar#5007
Alexays/Waybar
5,007
cca8dc38b6ed25ef78920669c5653748f31e4ba6
5af324f375edf8a6a033869d5386e711b4e49f10
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 ...
[ { "subtask_id": "s1", "goal": "Implement the changes under `src/` needed for: Various toctou fixes", "scope_files": [ "src/AAppIconLabel.cpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `src/modules/` needed for: Various toctou fixes", "scope_files": [ ...
[ { "subtask_id": "s1", "scope_files": [ "src/AAppIconLabel.cpp" ], "solution_diff": "diff --git a/src/AAppIconLabel.cpp b/src/AAppIconLabel.cpp\nindex b72906c3aa..784f30c2e4 100644\n--- a/src/AAppIconLabel.cpp\n+++ b/src/AAppIconLabel.cpp\n@@ -33,21 +33,21 @@ std::string toLowerCase(const std::...
[]
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, ...
3
3
Alexays/Waybar#4975
Alexays/Waybar
4,975
1e965ccce06faf9515d0570329c12f7245d958ed
fc11789a4f6d437fd329cf3dada6ffb4b9aaa9e0
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.
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/modules/` needed for: memory: feature - add \"unit\" config option", "scope_files": [ "include/modules/memory.hpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `man/` needed for: memory: feature ...
[ { "subtask_id": "s1", "scope_files": [ "include/modules/memory.hpp" ], "solution_diff": "diff --git a/include/modules/memory.hpp b/include/modules/memory.hpp\nindex 3b6342b344..c73ece23ac 100644\n--- a/include/modules/memory.hpp\n+++ b/include/modules/memory.hpp\n@@ -19,9 +19,13 @@ class Memor...
[]
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); + ...
3
3
Alexays/Waybar#4964
Alexays/Waybar
4,964
49460defdc9876acae4212769daab9bbe0666d61
753294dbf4da6a7276e072c314fc7c078a8404c4
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 ...
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/modules/` needed for: fix(network): prevent near-zero bandwidth on rapid event-driven updates", "scope_files": [ "include/modules/network.hpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `src/mo...
[ { "subtask_id": "s1", "scope_files": [ "include/modules/network.hpp" ], "solution_diff": "diff --git a/include/modules/network.hpp b/include/modules/network.hpp\nindex 3bc43b2381..66fc6d04c7 100644\n--- a/include/modules/network.hpp\n+++ b/include/modules/network.hpp\n@@ -70,6 +70,8 @@ class N...
[]
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};...
2
2
Alexays/Waybar#4973
Alexays/Waybar
4,973
1e965ccce06faf9515d0570329c12f7245d958ed
ae11954398e5d9692805d46f8d52b6ffbf7e3597
Group ref fix #4969
[ { "subtask_id": "s1", "goal": "Implement the changes under `src/` needed for: Group ref fix", "scope_files": [ "src/bar.cpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `src/modules/niri/` needed for: Group ref fix", "scope_files": [ "src/modules/niri/...
[ { "subtask_id": "s1", "scope_files": [ "src/bar.cpp" ], "solution_diff": "diff --git a/src/bar.cpp b/src/bar.cpp\nindex 6a78707eb9..f42f31a39f 100644\n--- a/src/bar.cpp\n+++ b/src/bar.cpp\n@@ -541,7 +541,7 @@ void waybar::Bar::getModules(const Factory& factory, const std::string& pos,\n ...
[]
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() ...
2
2
Alexays/Waybar#4960
Alexays/Waybar
4,960
49460defdc9876acae4212769daab9bbe0666d61
a9aab4e3569a0c771a873e2a4b1c8695f70430e9
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. - Adde...
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: feat(client): add support for 8-bit hex color codes in CSS", "scope_files": [ "meson.build" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `include/util/` needed for: feat(client): add...
[ { "subtask_id": "s1", "scope_files": [ "meson.build" ], "solution_diff": "diff --git a/meson.build b/meson.build\nindex db9407eb2a..0c494eb22c 100644\n--- a/meson.build\n+++ b/meson.build\n@@ -185,7 +185,8 @@ src_files = files(\n 'src/util/gtk_icon.cpp',\n 'src/util/icon_loader.cpp',\n...
[]
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...
4
4
Alexays/Waybar#1784
Alexays/Waybar
1,784
6206cebd758aee14980d3d617d80dd934bd4db6c
d6b6158ae97651cb556ad388b365069843877ed0
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": t...
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/` needed for: exec runs after on-* events", "scope_files": [ "include/AModule.hpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `src/` needed for: exec runs after on-* events", "scope_files":...
[ { "subtask_id": "s1", "scope_files": [ "include/AModule.hpp" ], "solution_diff": "diff --git a/include/AModule.hpp b/include/AModule.hpp\nindex 2ffc429ca..2fcbfc23d 100644\n--- a/include/AModule.hpp\n+++ b/include/AModule.hpp\n@@ -36,6 +36,7 @@ class AModule : public IModule {\n SCROLL_DIR g...
[]
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...
3
3
Alexays/Waybar#4943
Alexays/Waybar
4,943
ab7bfdb297357633b80eb146c419d8905e362e32
dc31db6d0c79e30fe5c5f219d8c53f1d4bfdb74c
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)....
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/modules/` needed for: Network bandwidth is not calculated correctly if forced to reload", "scope_files": [ "include/modules/network.hpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `src/modules/...
[ { "subtask_id": "s1", "scope_files": [ "include/modules/network.hpp" ], "solution_diff": "diff --git a/include/modules/network.hpp b/include/modules/network.hpp\nindex 4abe26bd1..3bc43b238 100644\n--- a/include/modules/network.hpp\n+++ b/include/modules/network.hpp\n@@ -70,6 +70,7 @@ class Net...
[]
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}; +...
2
2
Alexays/Waybar#4939
Alexays/Waybar
4,939
6cb68737e64a851797a26566c7859b53eb2fd8bc
a05c7bc28ffaf889826102cb8e9ac75e9577b4ce
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 place...
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/modules/` needed for: chore: Stop using deprecated/removed Nerdfonts codepoints", "scope_files": [ "include/modules/gamemode.hpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `man/` needed for: c...
[ { "subtask_id": "s1", "scope_files": [ "include/modules/gamemode.hpp" ], "solution_diff": "diff --git a/include/modules/gamemode.hpp b/include/modules/gamemode.hpp\nindex f63861a38..89f66272b 100644\n--- a/include/modules/gamemode.hpp\n+++ b/include/modules/gamemode.hpp\n@@ -26,7 +26,7 @@ clas...
[]
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 = ...
3
8
Alexays/Waybar#4929
Alexays/Waybar
4,929
1019c9d2fe9432e7151cb336ab6b3d523d8cf123
e7c077ab9a5cd959bd412d18df84462cbd97e3b1
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-40...
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/modules/` needed for: systemd-failed-units: add tooltip with list of failed units", "scope_files": [ "include/modules/systemd_failed_units.hpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `man/`...
[ { "subtask_id": "s1", "scope_files": [ "include/modules/systemd_failed_units.hpp" ], "solution_diff": "diff --git a/include/modules/systemd_failed_units.hpp b/include/modules/systemd_failed_units.hpp\nindex ffb250821..3eda799a2 100644\n--- a/include/modules/systemd_failed_units.hpp\n+++ b/incl...
[]
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...
3
3
Alexays/Waybar#3863
Alexays/Waybar
3,863
e9d0f2254de7d0bfb1c222cadfe866b830209f31
a88e5795a448ece7a19b88fc9a8b77a74b62726b
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.
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: add module wayfire/window, wayfire/workspaces", "scope_files": [ "meson.build" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `include/modules/wayfire/` needed for: add module wayfire/...
[ { "subtask_id": "s1", "scope_files": [ "meson.build" ], "solution_diff": "diff --git a/meson.build b/meson.build\nindex 7f9854d5b..aee33cb15 100644\n--- a/meson.build\n+++ b/meson.build\n@@ -333,6 +333,15 @@ if get_option('niri')\n )\n endif\n \n+if true\n+ add_project_arguments('-DHAVE...
[]
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...
5
10
Alexays/Waybar#4937
Alexays/Waybar
4,937
6cb68737e64a851797a26566c7859b53eb2fd8bc
6afe10864279dd09a66c13d222f61e9d1bcaa260
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...
[ { "subtask_id": "s1", "goal": "Implement the changes under `man/` needed for: Add an option for groups to start expanded by default", "scope_files": [ "man/waybar.5.scd.in" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `src/` needed for: Add an option for groups t...
[ { "subtask_id": "s1", "scope_files": [ "man/waybar.5.scd.in" ], "solution_diff": "diff --git a/man/waybar.5.scd.in b/man/waybar.5.scd.in\nindex 624798ed8..8b923eef9 100644\n--- a/man/waybar.5.scd.in\n+++ b/man/waybar.5.scd.in\n@@ -363,6 +363,11 @@ A group may hide all but one element, showing ...
[]
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...
2
2
Alexays/Waybar#4931
Alexays/Waybar
4,931
b77b1818f63492870f2e467d913d90d23d1c4c14
86234a8946787798ba39530ea3c74b017efe87d2
chore: remove heaptrack dump Accidentally committed...
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: chore: remove heaptrack dump", "scope_files": [ ".gitignore", "heaptrack.waybar.2711357.zst" ] } ]
[ { "subtask_id": "s1", "scope_files": [ ".gitignore", "heaptrack.waybar.2711357.zst" ], "solution_diff": "diff --git a/.gitignore b/.gitignore\nindex f42bf85e5..f21700d6b 100644\n--- a/.gitignore\n+++ b/.gitignore\n@@ -52,3 +52,4 @@ result-*\n \n .ccls-cache\n _codeql_detected_source_root...
[]
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...
1
2
Alexays/Waybar#4932
Alexays/Waybar
4,932
b77b1818f63492870f2e467d913d90d23d1c4c14
95f9922ccc6e931d161b6d846f83b747f63b01af
cava bump Hi @Alexays, This PR is self-descriptive )
[ { "subtask_id": "s1", "goal": "Implement the changes under `nix/` needed for: cava bump", "scope_files": [ "nix/default.nix" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `subprojects/` needed for: cava bump", "scope_files": [ "subprojects/libcava.wrap" ...
[ { "subtask_id": "s1", "scope_files": [ "nix/default.nix" ], "solution_diff": "diff --git a/nix/default.nix b/nix/default.nix\nindex 43b6e0970..1850a4149 100644\n--- a/nix/default.nix\n+++ b/nix/default.nix\n@@ -6,13 +6,13 @@\n }:\n let\n libcava = rec {\n- version = \"0.10.7-beta\";\n+ ...
[]
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"; #...
2
2
Alexays/Waybar#4913
Alexays/Waybar
4,913
e425423648ea620627a0ba0c9c81173af18c0254
8e2e437ec665af43a7d16d80b53934ea3fefe733
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" />
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/modules/sni/` needed for: fix(tray): complete attention/overlay implementation ", "scope_files": [ "include/modules/sni/host.hpp", "include/modules/sni/item.hpp", "include/modules/sni/tray.hpp" ] }, { "subt...
[ { "subtask_id": "s1", "scope_files": [ "include/modules/sni/host.hpp", "include/modules/sni/item.hpp", "include/modules/sni/tray.hpp" ], "solution_diff": "diff --git a/include/modules/sni/host.hpp b/include/modules/sni/host.hpp\nindex 7248ad2f4..d76ec74a4 100644\n--- a/include/modu...
[]
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...
2
7
Alexays/Waybar#4910
Alexays/Waybar
4,910
e425423648ea620627a0ba0c9c81173af18c0254
6317022304a49c0033c52f0c6cdfe038e88dd314
fix(hyprland): misc hardening with ipc socket and events Formatting handled in https://github.com/Alexays/Waybar/pull/4911
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/modules/hyprland/` needed for: fix(hyprland): misc hardening with ipc socket and events", "scope_files": [ "include/modules/hyprland/window.hpp", "include/modules/hyprland/workspaces.hpp" ] }, { "subtask_id": "s2...
[ { "subtask_id": "s1", "scope_files": [ "include/modules/hyprland/window.hpp", "include/modules/hyprland/workspaces.hpp" ], "solution_diff": "diff --git a/include/modules/hyprland/window.hpp b/include/modules/hyprland/window.hpp\nindex 2be645942..9725d33a1 100644\n--- a/include/modules/hy...
[]
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...
3
8
Alexays/Waybar#4911
Alexays/Waybar
4,911
68d4360c262f3aa77ae69ea04ad92114ca7ab7d4
790101f824513a6b48396fd956dd3a9dfae5ad4b
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): ...
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/modules/sway/ipc/` needed for: menus not showing after ef3d55980e", "scope_files": [ "include/modules/sway/ipc/client.hpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `src/` needed for: menus no...
[ { "subtask_id": "s1", "scope_files": [ "include/modules/sway/ipc/client.hpp" ], "solution_diff": "diff --git a/include/modules/sway/ipc/client.hpp b/include/modules/sway/ipc/client.hpp\nindex eb0f32f9c..f6eb7c40e 100644\n--- a/include/modules/sway/ipc/client.hpp\n+++ b/include/modules/sway/ipc...
[]
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...
6
7
Alexays/Waybar#4892
Alexays/Waybar
4,892
fd086d0f3366206417bcf59cc18679e32154072f
79fb1d9f58d15cb3704a62359a7457451cbc0164
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.
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/util/` needed for: fix(command): return non-zero when child exec fails", "scope_files": [ "include/util/command.hpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `test/utils/` needed for: fix(com...
[ { "subtask_id": "s1", "scope_files": [ "include/util/command.hpp" ], "solution_diff": "diff --git a/include/util/command.hpp b/include/util/command.hpp\nindex b1adcd7c9..f6d2cabf8 100644\n--- a/include/util/command.hpp\n+++ b/include/util/command.hpp\n@@ -20,6 +20,8 @@ extern std::list<pid_t> ...
[]
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...
2
3
Alexays/Waybar#4891
Alexays/Waybar
4,891
fd086d0f3366206417bcf59cc18679e32154072f
8d22d3e07a629470114edcebabe6d6fb6afe85cf
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 han...
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/modules/hyprland/` needed for: fix(hyprland-ipc): harden fd lifecycle and listener loop ", "scope_files": [ "include/modules/hyprland/backend.hpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `in...
[ { "subtask_id": "s1", "scope_files": [ "include/modules/hyprland/backend.hpp" ], "solution_diff": "diff --git a/include/modules/hyprland/backend.hpp b/include/modules/hyprland/backend.hpp\nindex 2e0ef6571..a6ebd1917 100644\n--- a/include/modules/hyprland/backend.hpp\n+++ b/include/modules/hypr...
[]
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> @@...
10
10
Alexays/Waybar#4898
Alexays/Waybar
4,898
fd086d0f3366206417bcf59cc18679e32154072f
fe03dfaa3bb32622139a1a3b124d31af631e7837
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.
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: perf(memory): optimize string operations; remove deep copies, memdup, and icon theme rescanning", "scope_files": [ "heaptrack.waybar.2711357.zst" ] }, { "subtask_id": "s2", "goal": "Implement the chang...
[ { "subtask_id": "s1", "scope_files": [ "heaptrack.waybar.2711357.zst" ], "solution_diff": "diff --git a/heaptrack.waybar.2711357.zst b/heaptrack.waybar.2711357.zst\nnew file mode 100644\nindex 000000000..88921cba1\nBinary files /dev/null and b/heaptrack.waybar.2711357.zst differ\n", "summa...
[]
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 +++ ...
17
33
Alexays/Waybar#4900
Alexays/Waybar
4,900
fd086d0f3366206417bcf59cc18679e32154072f
3eb2c7e8f43b25387e68b9e320321edf274840ee
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...
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/modules/` needed for: All tooltips stop rendering across the bar when user includes a custom module with a menu, tooltip enabled, and custom tooltip-format.", "scope_files": [ "include/modules/custom.hpp" ] }, { "subta...
[ { "subtask_id": "s1", "scope_files": [ "include/modules/custom.hpp" ], "solution_diff": "diff --git a/include/modules/custom.hpp b/include/modules/custom.hpp\nindex 6c17c6e45..a345a33bc 100644\n--- a/include/modules/custom.hpp\n+++ b/include/modules/custom.hpp\n@@ -35,6 +35,7 @@ class Custom :...
[]
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_;...
2
2
Alexays/Waybar#4890
Alexays/Waybar
4,890
31b373b9849091ab95aa8cf31c606e87da95e608
e4ff024fa87af9ad63b6a9fc9da8f0beb5afa7c6
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 ...
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/util/` needed for: fix(util): bound SafeSignal queue growth under burst load", "scope_files": [ "include/util/SafeSignal.hpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `test/utils/` needed for...
[ { "subtask_id": "s1", "scope_files": [ "include/util/SafeSignal.hpp" ], "solution_diff": "diff --git a/include/util/SafeSignal.hpp b/include/util/SafeSignal.hpp\nindex 340f74eeb..1e901792e 100644\n--- a/include/util/SafeSignal.hpp\n+++ b/include/util/SafeSignal.hpp\n@@ -6,6 +6,7 @@\n #include ...
[]
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...
2
2
Alexays/Waybar#4889
Alexays/Waybar
4,889
31b373b9849091ab95aa8cf31c606e87da95e608
864523772d427fea72f99a6fe9dcc100dc708acc
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= implementatio...
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/util/` needed for: fix(util): ensure SleeperThread lifecycle safety and thread sync", "scope_files": [ "include/util/sleeper_thread.hpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `test/utils/`...
[ { "subtask_id": "s1", "scope_files": [ "include/util/sleeper_thread.hpp" ], "solution_diff": "diff --git a/include/util/sleeper_thread.hpp b/include/util/sleeper_thread.hpp\nindex 62d129317..966772a20 100644\n--- a/include/util/sleeper_thread.hpp\n+++ b/include/util/sleeper_thread.hpp\n@@ -1,5...
[]
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...
2
3
Alexays/Waybar#4888
Alexays/Waybar
4,888
7744320ab2c793d092620c2ec859327280b676a6
d5297bc42444f22a7266415d9f3042566c101043
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'...
[ { "subtask_id": "s1", "goal": "Implement the changes under `src/modules/` needed for: Waybar just stops working/deadlocking", "scope_files": [ "src/modules/wireplumber.cpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `src/util/` needed for: Waybar just stops wor...
[ { "subtask_id": "s1", "scope_files": [ "src/modules/wireplumber.cpp" ], "solution_diff": "diff --git a/src/modules/wireplumber.cpp b/src/modules/wireplumber.cpp\nindex e9cb72065..0c0d1dde7 100644\n--- a/src/modules/wireplumber.cpp\n+++ b/src/modules/wireplumber.cpp\n@@ -54,6 +54,15 @@ waybar::...
[]
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()...
2
2
Alexays/Waybar#4834
Alexays/Waybar
4,834
d31b131f800d0b2124148f3507e9a4e3ccafff99
ae60ca62331edeba08d75ef68d0c6c5fe53c9c79
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 thi...
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/modules/niri/` needed for: feat(niri): niri depends on socket", "scope_files": [ "include/modules/niri/backend.hpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `src/modules/niri/` needed for: fe...
[ { "subtask_id": "s1", "scope_files": [ "include/modules/niri/backend.hpp" ], "solution_diff": "diff --git a/include/modules/niri/backend.hpp b/include/modules/niri/backend.hpp\nindex 42b9ff7f8..07be039af 100644\n--- a/include/modules/niri/backend.hpp\n+++ b/include/modules/niri/backend.hpp\n@@...
[]
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...
2
2
Alexays/Waybar#4846
Alexays/Waybar
4,846
d527ccd4c1f53f4bb161677b451aabb89556f2d5
a871d90161fadab34b494d0ee5d018eb90496b8d
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...
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/modules/mpris/` needed for: MPRIS: needs some improvements when more than one player is active", "scope_files": [ "include/modules/mpris/mpris.hpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `s...
[ { "subtask_id": "s1", "scope_files": [ "include/modules/mpris/mpris.hpp" ], "solution_diff": "diff --git a/include/modules/mpris/mpris.hpp b/include/modules/mpris/mpris.hpp\nindex ad4dac1e1..a33db4d2b 100644\n--- a/include/modules/mpris/mpris.hpp\n+++ b/include/modules/mpris/mpris.hpp\n@@ -78,...
[]
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...
2
2
Alexays/Waybar#4821
Alexays/Waybar
4,821
a8bbc90efecce06d0979d7b93456ab9a5808ca66
40200afb6890f4488b9c850b6d3a98526828d212
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.
[ { "subtask_id": "s1", "goal": "Implement the changes under `include/` needed for: fix: owerwrite handleScroll to remove any scrolling handling from group", "scope_files": [ "include/group.hpp" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `src/` needed for: fix: o...
[ { "subtask_id": "s1", "scope_files": [ "include/group.hpp" ], "solution_diff": "diff --git a/include/group.hpp b/include/group.hpp\nindex 41cb5ee0b..d5cbb289d 100644\n--- a/include/group.hpp\n+++ b/include/group.hpp\n@@ -30,6 +30,7 @@ class Group : public AModule {\n bool handleMouseEnter(Gd...
[]
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...
2
2
AlexsJones/llmfit#597
AlexsJones/llmfit
597
a376bb83eac9fd4a458d01c34aa6180c1e32884e
e8ffcc5974a4a91600fced0c431fda11aabb36e4
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...
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: chore(deps): bump rmcp from 1.6.0 to 1.7.0", "scope_files": [ "Cargo.lock" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `llmfit-tui/` needed for: chore(deps): bump rmcp from 1.6.0 to...
[ { "subtask_id": "s1", "scope_files": [ "Cargo.lock" ], "solution_diff": "diff --git a/Cargo.lock b/Cargo.lock\nindex 82bc7067..4915b5b6 100644\n--- a/Cargo.lock\n+++ b/Cargo.lock\n@@ -576,10 +576,8 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"c673075a2e0...
[]
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", ...
2
2
AlexsJones/llmfit#603
AlexsJones/llmfit
603
abab7f63f0a4b6b6684684356c02a3d19150c6b9
4815bf8941d8c4eb33c3837be6381a86592b51b3
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-tu...
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: feat(data): add Whisper/ASR model entries + audio support roadmap", "scope_files": [ "AUDIO_SUPPORT.md" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `data/` needed for: feat(data): a...
[ { "subtask_id": "s1", "scope_files": [ "AUDIO_SUPPORT.md" ], "solution_diff": "diff --git a/AUDIO_SUPPORT.md b/AUDIO_SUPPORT.md\nnew file mode 100644\nindex 00000000..41de9612\n--- /dev/null\n+++ b/AUDIO_SUPPORT.md\n@@ -0,0 +1,129 @@\n+# Audio Model Support — Implementation Plan\n+\n+This docu...
[]
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...
4
4
AlexsJones/llmfit#611
AlexsJones/llmfit
611
6c0b69701e8ec9be28a7a98bd0e94812f64a037c
e1b81211da4d8d0273798de50a6c2278ebd16ca4
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 Dele...
[ { "subtask_id": "s1", "goal": "Implement the changes under `llmfit-tui/src/` needed for: fix(tui): make provider filter input cursor-aware and ASCII-only", "scope_files": [ "llmfit-tui/src/tui_app.rs", "llmfit-tui/src/tui_events.rs", "llmfit-tui/src/tui_ui.rs" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "llmfit-tui/src/tui_app.rs", "llmfit-tui/src/tui_events.rs", "llmfit-tui/src/tui_ui.rs" ], "solution_diff": "diff --git a/llmfit-tui/src/tui_app.rs b/llmfit-tui/src/tui_app.rs\nindex a110d52a..adf08440 100644\n--- a/llmfit-tui/src/tui_app.rs\n...
[]
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...
1
3
AlexsJones/llmfit#625
AlexsJones/llmfit
625
ec99edeb8c4f21b7461841209717bcb6702fe2de
3598e96a1ca695ef2759ebb13440d6d0c894349e
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 | | `...
[ { "subtask_id": "s1", "goal": "Implement the changes under `llmfit-core/src/` needed for: refactor: extract duplicated provider detection and fit pipeline into shared code", "scope_files": [ "llmfit-core/src/analysis.rs", "llmfit-core/src/lib.rs" ] }, { "subtask_id": "s2", "g...
[ { "subtask_id": "s1", "scope_files": [ "llmfit-core/src/analysis.rs", "llmfit-core/src/lib.rs" ], "solution_diff": "diff --git a/llmfit-core/src/analysis.rs b/llmfit-core/src/analysis.rs\nnew file mode 100644\nindex 00000000..ce1e31c9\n--- /dev/null\n+++ b/llmfit-core/src/analysis.rs\n@@...
[]
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...
2
5
AlexsJones/llmfit#626
AlexsJones/llmfit
626
ec99edeb8c4f21b7461841209717bcb6702fe2de
da51e052601ea0100ee27ea3dbc9039f7b469b03
docs: add Japanese README I created Japanese translated README.
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: docs: add Japanese README", "scope_files": [ "README.ja.md", "README.md", "README.zh.md" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "README.ja.md", "README.md", "README.zh.md" ], "solution_diff": "diff --git a/README.ja.md b/README.ja.md\nnew file mode 100644\nindex 00000000..f2dffcb8\n--- /dev/null\n+++ b/README.ja.md\n@@ -0,0 +1,978 @@\n+# llmfit\n+\n+<p align=\"center\"...
[]
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=...
1
3
AlexsJones/llmfit#604
AlexsJones/llmfit
604
3f9b22bb032a3b4444750ddfca12acfdf96e27df
328be3926946305c0e28e3d80141aa7314355984
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...
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: Gemma 4 QAT GGUF models from Unsloth are missing from search/index", "scope_files": [ ".release-please-manifest.json", "CHANGELOG.md", "Cargo.lock", "Cargo.toml", "version.txt" ] } ]
[ { "subtask_id": "s1", "scope_files": [ ".release-please-manifest.json", "CHANGELOG.md", "Cargo.lock", "Cargo.toml", "version.txt" ], "solution_diff": "diff --git a/.release-please-manifest.json b/.release-please-manifest.json\nindex 03d18a20..3c6c5d6e 100644\n--- a/.rel...
[]
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...
1
5
AlexsJones/llmfit#623
AlexsJones/llmfit
623
0dc2712df4b4d947e0db371c98bf376d4da16c85
33047d85fab2913d09905922df9a3daef6b5a314
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...
[ { "subtask_id": "s1", "goal": "Implement the changes under `llmfit-core/data/` needed for: GGUF-only repos report wrong parameter count and memory estimates (e.g. unsloth/DeepSeek-R1-0528-GGUF shows 29.6B instead of 671B)", "scope_files": [ "llmfit-core/data/hf_models.json" ] }, { "sub...
[ { "subtask_id": "s1", "scope_files": [ "llmfit-core/data/hf_models.json" ], "solution_diff": "diff --git a/llmfit-core/data/hf_models.json b/llmfit-core/data/hf_models.json\nindex e9238e07..c1f2ffb0 100644\n--- a/llmfit-core/data/hf_models.json\n+++ b/llmfit-core/data/hf_models.json\n@@ -12494...
[]
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...
2
3
AlexsJones/llmfit#607
AlexsJones/llmfit
607
e317fb8502b485c1721c03d88a3f8bc1e63659b3
46f70b790e3bd177e001469d04456ce1e20193c5
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 ...
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: feat(lmstudio): Add LMSTUDIO_API_KEY support for authenticated instances", "scope_files": [ "README.md" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `llmfit-core/src/` needed for: fe...
[ { "subtask_id": "s1", "scope_files": [ "README.md" ], "solution_diff": "diff --git a/README.md b/README.md\nindex 172b6756..598933cf 100644\n--- a/README.md\n+++ b/README.md\n@@ -860,6 +860,15 @@ To connect to LM Studio on a different host or port, set the `LMSTUDIO_HOST` env\n LMSTUDIO_HOST=\...
[]
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...
2
2
AlexsJones/llmfit#620
AlexsJones/llmfit
620
6c0b69701e8ec9be28a7a98bd0e94812f64a037c
2b62c6db70c6ee702ecda5cc269b24604240db07
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...
[ { "subtask_id": "s1", "goal": "Implement the changes under `llmfit-core/data/` needed for: Gemma 4 QAT GGUF models from Unsloth are missing from search/index", "scope_files": [ "llmfit-core/data/hf_models.json" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `llmfit...
[ { "subtask_id": "s1", "scope_files": [ "llmfit-core/data/hf_models.json" ], "solution_diff": "diff --git a/llmfit-core/data/hf_models.json b/llmfit-core/data/hf_models.json\nindex 68b47c08..e9238e07 100644\n--- a/llmfit-core/data/hf_models.json\n+++ b/llmfit-core/data/hf_models.json\n@@ -16073...
[]
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 + }, + { + ...
3
3
AlexsJones/llmfit#610
AlexsJones/llmfit
610
66f4c887b37c617944a8bc14a1d0a20aedac9767
da120f8d6993dd2e6cfed899478b6796b1992221
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 ...
[ { "subtask_id": "s1", "goal": "Implement the changes under `llmfit-tui/src/` needed for: fix(tui): handle unicode download directory input", "scope_files": [ "llmfit-tui/src/tui_app.rs", "llmfit-tui/src/tui_events.rs", "llmfit-tui/src/tui_ui.rs" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "llmfit-tui/src/tui_app.rs", "llmfit-tui/src/tui_events.rs", "llmfit-tui/src/tui_ui.rs" ], "solution_diff": "diff --git a/llmfit-tui/src/tui_app.rs b/llmfit-tui/src/tui_app.rs\nindex 6b99d161..a110d52a 100644\n--- a/llmfit-tui/src/tui_app.rs\n...
[]
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...
1
3
AlexsJones/llmfit#608
AlexsJones/llmfit
608
e317fb8502b485c1721c03d88a3f8bc1e63659b3
85960054bbb88c961ffa4797006dd3475a8b4699
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...
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: fix(tui): handle search input cursor and overflow", "scope_files": [ "Cargo.lock" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `llmfit-tui/` needed for: fix(tui): handle search input...
[ { "subtask_id": "s1", "scope_files": [ "Cargo.lock" ], "solution_diff": "diff --git a/Cargo.lock b/Cargo.lock\nindex a5a6214b..fcba7fdc 100644\n--- a/Cargo.lock\n+++ b/Cargo.lock\n@@ -2503,6 +2503,8 @@ dependencies = [\n \"tabled\",\n \"tokio\",\n \"tower\",\n+ \"unicode-segmentation\",\n+ ...
[]
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...
3
5
AlexsJones/llmfit#605
AlexsJones/llmfit
605
f0d4783dd99f4c12a0fe15d564d8bc787ef7c755
7407d1035ef7dd7b14ed50a1dc1f3f6e21a08a44
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/d...
[ { "subtask_id": "s1", "goal": "Implement the changes under `data/` needed for: feat: upgrade MiniMax default model to M3", "scope_files": [ "data/hf_models.json" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `llmfit-core/data/` needed for: feat: upgrade MiniMax de...
[ { "subtask_id": "s1", "scope_files": [ "data/hf_models.json" ], "solution_diff": "diff --git a/data/hf_models.json b/data/hf_models.json\nindex b3a6937e..68b47c08 100644\n--- a/data/hf_models.json\n+++ b/data/hf_models.json\n@@ -154276,7 +154276,7 @@\n \"active_parameters\": 18223715635\n ...
[]
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", ...
3
3
AlexsJones/llmfit#586
AlexsJones/llmfit
586
abab7f63f0a4b6b6684684356c02a3d19150c6b9
7d74d7d4a93cb8c229868b00d8bc3385005e3551
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.
[ { "subtask_id": "s1", "goal": "Implement the changes under `llmfit-tui/src/` needed for: feat: speed up provider navigation when holding shift (gh-571)", "scope_files": [ "llmfit-tui/src/tui_app.rs", "llmfit-tui/src/tui_events.rs", "llmfit-tui/src/tui_ui.rs" ] } ]
[ { "subtask_id": "s1", "scope_files": [ "llmfit-tui/src/tui_app.rs", "llmfit-tui/src/tui_events.rs", "llmfit-tui/src/tui_ui.rs" ], "solution_diff": "diff --git a/llmfit-tui/src/tui_app.rs b/llmfit-tui/src/tui_app.rs\nindex 752ddb24..4b789d2e 100644\n--- a/llmfit-tui/src/tui_app.rs\n...
[]
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...
1
3
AlexsJones/llmfit#601
AlexsJones/llmfit
601
b055a04beb50008c3d868aa7f43598ad6b614d33
88f4450a95c61f44a65488e93888bc9a18bf72b4
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....
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: chore(main): release 0.9.30", "scope_files": [ ".release-please-manifest.json", "CHANGELOG.md", "Cargo.lock", "Cargo.toml", "version.txt" ] } ]
[ { "subtask_id": "s1", "scope_files": [ ".release-please-manifest.json", "CHANGELOG.md", "Cargo.lock", "Cargo.toml", "version.txt" ], "solution_diff": "diff --git a/.release-please-manifest.json b/.release-please-manifest.json\nindex eb8621d5..03d18a20 100644\n--- a/.rel...
[]
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...
1
5
AlexsJones/llmfit#600
AlexsJones/llmfit
600
a376bb83eac9fd4a458d01c34aa6180c1e32884e
49e3539352a02d78b04dba10637646c15d18b6ce
[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...
[ { "subtask_id": "s1", "goal": "Implement the changes under `(root)/` needed for: [Feature] Fuzzy Search in Provider Menu", "scope_files": [ "README.md" ] }, { "subtask_id": "s2", "goal": "Implement the changes under `llmfit-tui/src/` needed for: [Feature] Fuzzy Search in Provider M...
[ { "subtask_id": "s1", "scope_files": [ "README.md" ], "solution_diff": "diff --git a/README.md b/README.md\nindex 3d3a3f50..172b6756 100644\n--- a/README.md\n+++ b/README.md\n@@ -132,7 +132,7 @@ Launches the interactive terminal UI. Your system specs (CPU, RAM, GPU name, VRA\n | `V` ...
[]
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` ...
2
4