forked from art-class/v4
-
Notifications
You must be signed in to change notification settings - Fork 10
Adding Apps and Games
Toast edited this page Mar 2, 2025
·
2 revisions
![]()
Apps are found at public/assets/data/apps.js Games are found at public/assets/data/games.js
Follow this format for adding an app.
{
"id": "Id goes here",
"title": "Title goes here.",
"url": "URL link goes here.",
"image": 'Icon link goes here.',
"description": "Description goes here.",
'img': 'Cover image link goes here.'
},Follow this format for adding a game.
{
id: 'Id goes here',
title: 'Title goes here.',
description: 'Description goes here.',
url: 'Game link goes here.',
image: 'Icon link goes here.'
},- Ids should always be lowercase with no spaces, dashes, and underscores.
- If the app/game doesn't function properly, try adding
uv: false. This disables Ultraviolet and allows the game to run without a proxy.