Skip to content

Add sha256 and size to source guide #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions sources/make-a-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ A list of all the published versions of your app.
"localizedDescription": "First AltStore release!",
"downloadURL": "https://myapp.com/myapp-1.0.ipa",
"size": 79821,
"sha256": "428982c14796e7caa66d2743964fa38157d0e9db574ada326aa99a65a11c147c",
"minOSVersion": "12.0",
"maxOSVersion": "16.3"
},
Expand Down Expand Up @@ -252,6 +253,16 @@ A description of what's new in this version. You can use this to tell users abou

The URL where your `.ipa` is hosted.

#### `size` <mark style="color:purple;">(integer)</mark>

The physical download size of your `.ipa` in bytes.

#### `sha256` <mark style="color:purple;">(string)</mark>

_(optional)_

A computed SHA256 hash of your `.ipa` so that AltStore can perform a check of the downloaded file to ensure its integrity.

#### `minOSVersion` <mark style="color:purple;">(string)</mark>

_(optional)_
Expand Down