-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathaltstore.json
28 lines (28 loc) · 1.08 KB
/
altstore.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
---
{%- assign release = site.github.releases | first -%}
{%- assign asset = release.assets | where: "name", "iSH.ipa" -%}
{
"name": {{ site.title | jsonify }},
"identifier": "app.ish.iSH",
"apps": [
{
"bundleIdentifier": "app.ish.iSH",
"name": "iSH",
"developerName": "Theodore Dubois and contributors",
"iconURL": {{ "/assets/icon-full.png" | absolute_url | jsonify }},
"tintColor": "000000",
"subtitle": {{ site.github.project_tagline | jsonify }},
"localizedDescription": {{ site.description | jsonify }},
"screenshotURLs": [
{{ "/assets/front-iphone-full.png" | absolute_url | jsonify }}
],
"version": {{ release.name | jsonify }},
"versionDate": {{ release.created_at | date_to_xmlschema | jsonify }},
"versionDescription": {{ release.body | jsonify }},
"downloadURL": {{ asset[0].browser_download_url | jsonify }},
"size": {{ asset[0].size | jsonify }}
}
],
"userInfo": {}
}