From 77c07340ca90bcf30ff68cd661c12e21d4556557 Mon Sep 17 00:00:00 2001 From: foxster-mp4 Date: Sun, 28 May 2023 11:36:55 -0700 Subject: [PATCH] Increase default featured apps limit (3 -> 5) --- js/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/index.js b/js/index.js index 09aa8b2..c6e6eac 100644 --- a/js/index.js +++ b/js/index.js @@ -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;