From 0b7566e7808e50849dd376a09f3d50f2ec764828 Mon Sep 17 00:00:00 2001 From: Pk11 Date: Fri, 25 Sep 2020 16:17:31 -0500 Subject: [PATCH] Created Script info (UniStore) (markdown) --- Script-info-(UniStore).md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Script-info-(UniStore).md diff --git a/Script-info-(UniStore).md b/Script-info-(UniStore).md new file mode 100644 index 0000000..b9e9c0c --- /dev/null +++ b/Script-info-(UniStore).md @@ -0,0 +1,23 @@ +Each item in the UniStore must have one `info` section, here is an example and explanation: + +```json +"info": { + "title": "Universal-Updater", + "author": "Universal-Team", + "version": "v2.5.1", + "category": "utility", + "console": "3DS", + "description": "A multiapp, JSON script-based updater for Nintendo 3DS", + "icon_index": 0, + "last_updated": "2020-07-02 at 14:03 (UTC)" +} +``` + +- `title` is the name of the app, shown in the list and searchable +- `author` is the creator of the app, shown in the list and searchable +- `version` is the version of the app, used to check if its been updated +- `category` is the category of the app, used for filtering +- `console` is the console the app is for, usually `DS` or `3DS` +- `description` is the description to show when selected +- `icon_index` is the index of the icon inside the t3x sprite sheet, use `-1` if it doesn't have one +- `last_updated` is the date and time the app was last updated, used for sorting by last updated so YYYY-MM-DD HH:MM is recommended \ No newline at end of file