This is an automated email from the ASF dual-hosted git repository. matrei pushed a commit to branch fix-owner-cloud-links in repository https://gitbox.apache.org/repos/asf/grails-static-website.git
commit 905b2c8415b9843e04a62dfce07bdd0e6ef969c3 Author: Mattias Reichel <[email protected]> AuthorDate: Fri Feb 13 08:47:26 2026 +0100 fix(plugins): 6 sortedByStars and sortedByDate For an even 2-up grid --- buildSrc/src/main/groovy/website/model/plugin/PluginsPage.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildSrc/src/main/groovy/website/model/plugin/PluginsPage.groovy b/buildSrc/src/main/groovy/website/model/plugin/PluginsPage.groovy index 98f4ac2c5e7..6673df38138 100644 --- a/buildSrc/src/main/groovy/website/model/plugin/PluginsPage.groovy +++ b/buildSrc/src/main/groovy/website/model/plugin/PluginsPage.groovy @@ -54,10 +54,10 @@ class PluginsPage { def sortedByName = (plugins ?: []) .toSorted { a, b -> a.name?.toLowerCase() <=> b.name?.toLowerCase() } def sortedByDate = (plugins ?: []) - .toSorted { a, b -> b.updated <=> a.updated }.take(5) + .toSorted { a, b -> b.updated <=> a.updated }.take(6) def sortedByStars = (plugins ?: []) .findAll { it.githubStars != null && it.githubStars > 0 } - .toSorted { a, b -> b.githubStars <=> a.githubStars }.take(5) + .toSorted { a, b -> b.githubStars <=> a.githubStars }.take(6) // Extract unique Grails major versions from plugins, sorted descending def grailsMajorVersions = (plugins ?: [])
