Skip to content

Commit

Permalink
chore: add exaples
Browse files Browse the repository at this point in the history
  • Loading branch information
asdfzxcvbn committed Dec 19, 2024
1 parent bc0a846 commit 16ce3d5
Show file tree
Hide file tree
Showing 7 changed files with 112 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ most (if not all) keys are technically optional. here's an example repo with eve
}
```

you can see the output for this example in the `examples/` directory.

## useful key explanations
### root
`identifier` is usually a reverse id. this can really be anything, but i like the reverse domains.
Expand Down
21 changes: 21 additions & 0 deletions example.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "hello!",
"identifier": "fyi.zxcvbn.repo.test",
"iconURL": "https://example.com/path/to/some/icon.png",
"caption": "a *short* description of your repo!",
"description": "this can be a longer description and include stuff like your links or something, idk",
"apps": [
{
"name": "app name",
"developerName": "zx",
"bundleID": "fyi.zxcvbn.app",
"caption": "just like the repo's caption",
"description": "just like the repo's description",
"downloadURL": "https://example.com/path/to/some/app.ipa",
"iconURL": "https://example.com/hopefully/path/to/itunes/icon.png",
"version": "1.2",
"date": "2024-12-18",
"size": 1073741824
}
]
}
23 changes: 23 additions & 0 deletions examples/example.altstore.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"name": "hello!",
"subtitle": "a *short* description of your repo!",
"description": "this can be a longer description and include stuff like your links or something, idk",
"apps": [
{
"name": "app name",
"developerName": "zx",
"bundleIdentifier": "fyi.zxcvbn.app",
"localizedDescription": "",
"iconURL": "https://example.com/hopefully/path/to/itunes/icon.png",
"versions": [
{
"version": "1.2",
"date": "2024-12-18",
"size": 1073741824,
"downloadURL": "https://example.com/path/to/some/app.ipa",
"localizedDescription": "just like the repo's description"
}
]
}
]
}
16 changes: 16 additions & 0 deletions examples/example.esign.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "hello!",
"identifier": "fyi.zxcvbn.repo.test",
"apps": [
{
"name": "app name",
"bundleIdentifier": "fyi.zxcvbn.app",
"localizedDescription": "just like the repo's description",
"downloadURL": "https://example.com/path/to/some/app.ipa",
"iconURL": "https://example.com/hopefully/path/to/itunes/icon.png",
"version": "1.2",
"versionDate": "2024-12-18",
"size": 1073741824
}
]
}
16 changes: 16 additions & 0 deletions examples/example.feather.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "hello!",
"identifier": "fyi.zxcvbn.repo.test",
"apps": [
{
"name": "app name",
"bundleIdentifier": "fyi.zxcvbn.app",
"subtitle": "just like the repo's caption",
"localizedDescription": "just like the repo's description",
"downloadURL": "https://example.com/path/to/some/app.ipa",
"iconURL": "https://example.com/hopefully/path/to/itunes/icon.png",
"version": "1.2",
"size": 1073741824
}
]
}
17 changes: 17 additions & 0 deletions examples/example.gbox.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"version": "1.0",
"sourceName": "hello!",
"sourceImage": "https://example.com/path/to/some/icon.png",
"sourceDescription": "this can be a longer description and include stuff like your links or something, idk",
"appRepositories": [
{
"appType": "SELF_SIGN",
"appUpdateTime": "2024-12-18",
"appName": "app name",
"appVersion": "1.2",
"appDescription": "just like the repo's description",
"appImage": "https://example.com/hopefully/path/to/itunes/icon.png",
"appPackage": "https://example.com/path/to/some/app.ipa"
}
]
}
17 changes: 17 additions & 0 deletions examples/example.scarlet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"META": {
"repoName": "hello!",
"repoIcon": "https://example.com/path/to/some/icon.png"
},
"Tweaked": [
{
"name": "app name",
"dev": "zx",
"version": "1.2",
"icon": "https://example.com/hopefully/path/to/itunes/icon.png",
"down": "https://example.com/path/to/some/app.ipa",
"description": "just like the repo's description",
"bundleID": "fyi.zxcvbn.app"
}
]
}

0 comments on commit 16ce3d5

Please sign in to comment.