Skip to content

Commit

Permalink
feat: sort README patch table by amount of patches per package
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Dec 2, 2022
1 parent af5eaf4 commit 40cb14e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/app/revanced/meta/readme/Generator.kt
Expand Up @@ -24,7 +24,7 @@ fun generateText(bundle: Bundle) {
}
}

for (pkg in packages) {
for (pkg in packages.entries.sortedByDescending { it.value.size }) {
output.appendLine("### \uD83D\uDCE6 `${pkg.key}`")
output.appendLine("<details>\n")

Expand Down

0 comments on commit 40cb14e

Please sign in to comment.