From 87e2d5b93447e1d3ba47e4648fe488eb6ba2a687 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Mas=C5=82owski?= Date: Sat, 29 Nov 2025 17:22:24 +0100 Subject: [PATCH 1/4] README.md: fix "all bounties" link Without parentheses, the query matched many of the closed issues too. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6b6b7c3..18d3e86 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Bounties per product: - [Others (mostly Dasharo firmware or documentation)](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20(label%3Abounty-warmup%20OR%20label%3Abounty-easy%20OR%20label%3Abounty-medium%20OR%20label%3Abounty-hard%20OR%20label%3Abounty)%20-label%3A%22DasharoToolsSuite%22) You can also view all bounties -[here](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20label%3Abounty-warmup%20OR%20label%3Abounty-easy%20OR%20label%3Abounty-medium%20OR%20label%3Abounty-hard%20OR%20label%3Abounty). +[here](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20(label%3Abounty-warmup%20OR%20label%3Abounty-easy%20OR%20label%3Abounty-medium%20OR%20label%3Abounty-hard%20OR%20label%3Abounty)). ## Issues per device From 08430cc41f476c5474e02348c96b4ebace998ce0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Mas=C5=82owski?= Date: Sat, 29 Nov 2025 17:33:05 +0100 Subject: [PATCH 2/4] README.md: percent-encode parentheses within links While these characters are allowed in URLs, they clash with Markdown syntax and tend to break a lot of software out there. (Like the code highlighting rules in my text editor, as well as those of `less`.) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 18d3e86..9a36554 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,11 @@ Bounties are categorized per difficulty: - [Hard](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20label%3Abounty-hard) Bounties per product: -- [DasharoToolsSuite](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20(label%3Abounty-warmup%20OR%20label%3Abounty-easy%20OR%20label%3Abounty-medium%20OR%20label%3Abounty-hard%20OR%20label%3Abounty)%20AND%20label%3A%22DasharoToolsSuite%22) -- [Others (mostly Dasharo firmware or documentation)](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20(label%3Abounty-warmup%20OR%20label%3Abounty-easy%20OR%20label%3Abounty-medium%20OR%20label%3Abounty-hard%20OR%20label%3Abounty)%20-label%3A%22DasharoToolsSuite%22) +- [DasharoToolsSuite](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20%28label%3Abounty-warmup%20OR%20label%3Abounty-easy%20OR%20label%3Abounty-medium%20OR%20label%3Abounty-hard%20OR%20label%3Abounty%29%20AND%20label%3A%22DasharoToolsSuite%22) +- [Others (mostly Dasharo firmware or documentation)](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20%28label%3Abounty-warmup%20OR%20label%3Abounty-easy%20OR%20label%3Abounty-medium%20OR%20label%3Abounty-hard%20OR%20label%3Abounty%29%20-label%3A%22DasharoToolsSuite%22) You can also view all bounties -[here](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20(label%3Abounty-warmup%20OR%20label%3Abounty-easy%20OR%20label%3Abounty-medium%20OR%20label%3Abounty-hard%20OR%20label%3Abounty)). +[here](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20%28label%3Abounty-warmup%20OR%20label%3Abounty-easy%20OR%20label%3Abounty-medium%20OR%20label%3Abounty-hard%20OR%20label%3Abounty%29). ## Issues per device From aef36435c1ed3aa35fcbd24f754b3be6bb2cae43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Mas=C5=82owski?= Date: Sat, 29 Nov 2025 18:20:24 +0100 Subject: [PATCH 3/4] README.md: de-obfuscate GitHub search links The same can be achieved with: `sed -i 0,/"BEGIN DEVICE ISSUES"/'{ s/%20/+/g; s/%3A/:/g; s/%22//g; }' README.md` The two places where `%22` (double quotes) were used, did not need them. This only applies to _before_ the autogenerated section starts. --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 9a36554..63622d5 100644 --- a/README.md +++ b/README.md @@ -15,17 +15,17 @@ You can find more details on the Bug Bounty program [on our website](https://3mdeb.com/bug-bounty/). Bounties are categorized per difficulty: -- [Warmup](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20label%3Abounty-warmup) -- [Easy](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20label%3Abounty-easy) -- [Medium](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20label%3Abounty-medium) -- [Hard](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20label%3Abounty-hard) +- [Warmup](https://github.com/Dasharo/dasharo-issues/issues?q=is:issue+state:open+label:bounty-warmup) +- [Easy](https://github.com/Dasharo/dasharo-issues/issues?q=is:issue+state:open+label:bounty-easy) +- [Medium](https://github.com/Dasharo/dasharo-issues/issues?q=is:issue+state:open+label:bounty-medium) +- [Hard](https://github.com/Dasharo/dasharo-issues/issues?q=is:issue+state:open+label:bounty-hard) Bounties per product: -- [DasharoToolsSuite](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20%28label%3Abounty-warmup%20OR%20label%3Abounty-easy%20OR%20label%3Abounty-medium%20OR%20label%3Abounty-hard%20OR%20label%3Abounty%29%20AND%20label%3A%22DasharoToolsSuite%22) -- [Others (mostly Dasharo firmware or documentation)](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20%28label%3Abounty-warmup%20OR%20label%3Abounty-easy%20OR%20label%3Abounty-medium%20OR%20label%3Abounty-hard%20OR%20label%3Abounty%29%20-label%3A%22DasharoToolsSuite%22) +- [DasharoToolsSuite](https://github.com/Dasharo/dasharo-issues/issues?q=is:issue+state:open+%28label:bounty-warmup+OR+label:bounty-easy+OR+label:bounty-medium+OR+label:bounty-hard+OR+label:bounty%29+AND+label:DasharoToolsSuite) +- [Others (mostly Dasharo firmware or documentation)](https://github.com/Dasharo/dasharo-issues/issues?q=is:issue+state:open+%28label:bounty-warmup+OR+label:bounty-easy+OR+label:bounty-medium+OR+label:bounty-hard+OR+label:bounty%29+-label:DasharoToolsSuite) You can also view all bounties -[here](https://github.com/Dasharo/dasharo-issues/issues?q=is%3Aissue%20state%3Aopen%20%28label%3Abounty-warmup%20OR%20label%3Abounty-easy%20OR%20label%3Abounty-medium%20OR%20label%3Abounty-hard%20OR%20label%3Abounty%29). +[here](https://github.com/Dasharo/dasharo-issues/issues?q=is:issue+state:open+%28label:bounty-warmup+OR+label:bounty-easy+OR+label:bounty-medium+OR+label:bounty-hard+OR+label:bounty%29). ## Issues per device From 2a78b98796a14c2e86ab23ae968838ec10064631 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Mas=C5=82owski?= Date: Sat, 29 Nov 2025 18:56:44 +0100 Subject: [PATCH 4/4] README.md: fix one typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 63622d5..80be8c9 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Dasharo Issues repository This repository tracks issues and feature development progress for the -[Dasharo Project](https://dasharo.com/). This repositories tracks issues +[Dasharo Project](https://dasharo.com/). This repository tracks issues for most of the repositories in the Dasharo universe. There are some exceptions with their own trackers, listed below: - [Open Source Firmware Validation](https://github.com/Dasharo/open-source-firmware-validation/issues)