From 95d64c9f608866616eb1b93b98787b7056798ad0 Mon Sep 17 00:00:00 2001 From: Noah Keck Date: Thu, 8 Jun 2023 00:08:59 -0500 Subject: [PATCH 1/2] Add sha256 and size to source guide --- sources/make-a-source.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/sources/make-a-source.md b/sources/make-a-source.md index a105772..1587c0e 100644 --- a/sources/make-a-source.md +++ b/sources/make-a-source.md @@ -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" }, @@ -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` (string) + +The physical download size of your `.ipa` in bytes. + +#### `sha256` (string) + +_(optional)_ + +A computed SHA256 hash of your `.ipa` so that AltStore can perform a check of the downloaded file to ensure its integrity. + #### `minOSVersion` (string) _(optional)_ From 43d36c1364e19b6464e18b73b100e27785b18101 Mon Sep 17 00:00:00 2001 From: Noah Keck Date: Thu, 8 Jun 2023 00:11:51 -0500 Subject: [PATCH 2/2] Fix size data type --- sources/make-a-source.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/make-a-source.md b/sources/make-a-source.md index 1587c0e..07982d7 100644 --- a/sources/make-a-source.md +++ b/sources/make-a-source.md @@ -253,7 +253,7 @@ 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` (string) +#### `size` (integer) The physical download size of your `.ipa` in bytes.