mirror of
https://github.com/driftywinds/driftywinds.github.io.git
synced 2025-12-19 11:03:32 +00:00
Increase default featured apps limit (3 -> 5)
This commit is contained in:
@@ -30,8 +30,8 @@ function main(json) {
|
||||
// Featured apps
|
||||
let count = 1;
|
||||
json.apps.forEach(app => {
|
||||
// Max: 3 featured apps if not specified
|
||||
if (count > 3) return;
|
||||
// Max: 5 featured apps if not specified
|
||||
if (count > 5) return;
|
||||
|
||||
// Ignore beta apps
|
||||
if (app.beta) return;
|
||||
|
||||
Reference in New Issue
Block a user