Created storeContent (markdown)

Pk11
2020-09-25 16:06:36 -05:00
parent 47ab93d1e1
commit e8d8e3d1dd
+44
@@ -0,0 +1,44 @@
Each UniStore must also have one `storeContent` which is an array of all items in it. Here is an example, see the pages under this for further explaination:
```json
"storeContent": [
{
"info": {
"author": "Universal-Team",
"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": "Universal-Updater",
"version": "v2.5.1"
},
"Download Universal-Updater.3dsx": [
{
"file": "https://github.com/Universal-Team/Universal-Updater/releases/download/v2.5.1/Universal-Updater.3dsx",
"message": "Downloading Universal-Updater.3dsx...",
"output": "sdmc:/3ds/Universal-Updater.3dsx",
"type": "downloadFile"
}
],
"Download Universal-Updater.cia": [
{
"file": "https://github.com/Universal-Team/Universal-Updater/releases/download/v2.5.1/Universal-Updater.cia",
"message": "Downloading Universal-Updater.cia...",
"output": "sdmc:/Universal-Updater.cia",
"type": "downloadFile"
},
{
"file": "/Universal-Updater.cia",
"message": "Installing Universal-Updater.cia...",
"type": "installCia"
},
{
"file": "sdmc:/Universal-Updater.cia",
"message": "Deleting Universal-Updater.cia.",
"type": "deleteFile"
}
]
}
]
```