From d25c9e549bfb157e125f31e871898821ea3d110e Mon Sep 17 00:00:00 2001 From: Pk11 Date: Sun, 1 Nov 2020 15:21:44 -0600 Subject: [PATCH] Updated storeInfo (markdown) --- storeInfo.md | 35 +++++++---------------------------- 1 file changed, 7 insertions(+), 28 deletions(-) diff --git a/storeInfo.md b/storeInfo.md index dbdffc6..1eb415e 100644 --- a/storeInfo.md +++ b/storeInfo.md @@ -1,34 +1,15 @@ -All UniStores must have one `storeInfo`, this tells Universal-Updater information about how to display the UniStore. Here's an example and explanation of a version 2 UniStore: +All UniStores must have one `storeInfo`, this tells Universal-Updater information about how to display the UniStore. Here's an example and explanation of a version 3 UniStore: ```json "storeInfo": { "title": "Universal-DB", "author": "Universal-Team", "description": "Universal DB - An online database of 3DS and DS homebrew", - "file": "sdmc:/3ds/Universal-Updater/stores/Universal-DB.unistore", + "file": "universal-db.unistore", "url": "https://db.universal-team.net/unistore/universal-db.unistore", - "sheet": "sdmc:/3ds/Universal-Updater/stores/Universal-DB.t3x", + "sheet": "universal-db.t3x", "sheetURL": "https://db.universal-team.net/unistore/universal-db.t3x", - "authors": [ - "Universal-Team" - ], - "categories": [ - "utility" - ], - "consoles": [ - "3DS" - ], - "barDark": "#395472", - "barLight": "#395472", - "bgDark": "#262c4d", - "bgLight": "#60a8c0", - "boxDark": "#313131", - "boxLight": "#f7f7f7", - "outlineDark": "#f00000", - "outlineLight": "#f00000", - "textDark": "#ffffff", - "textLight": "#000000", - "version": 2, + "version": 3, "revision": 60 } ``` @@ -36,11 +17,9 @@ All UniStores must have one `storeInfo`, this tells Universal-Updater informatio - `title` is the name Universal-Updater will use for the UniStore - `author` is the name of the creator of the UniStore - `description` is the description of the UniStore Universal-Updater will show -- `file` is where the UniStore will be saved on the SD card, it's recommended to use the `sdmc:/3ds/Universal-Updater/stores` directory +- `file` is the name the UniStore will be saved as on the SD card - `url` is where the UniStore can be downloaded from for updating -- `sheet` is where the t3x sprite sheet for the UniStore's icons should be saved, it's recommended to use the `sdmc:/3ds/Universal-Updater/stores` directory +- `sheet` is the name the t3x sprite sheet for the UniStore's icons will be saved as on the SD card - `sheetURL` is where the t3x sprite sheet can be downloaded for updating -- `authors`, `categories`, and `consoles` are all arrays of all possible authors, categories, and consoles for use when searching -- The colors (with values of `#XXXXXX`) control the look of Universal-Updater while in the UniStore, there can be both dark and light themes, and anything left undefined will use the same user defined colors as the rest of Universal-Updater -- `version` is the version of the UniStore, this should always be `2` for the current version of Universal-Updater +- `version` is the version of the UniStore, this should always be `3` for the current version of Universal-Updater - `revision` is the revision of the UniStore, this should be incremented each time its updated so Universal-Updater knows there's been an update \ No newline at end of file