Skip to content

Commit

Permalink
fix: trollapps better with altstore source
Browse files Browse the repository at this point in the history
  • Loading branch information
asdfzxcvbn committed Dec 21, 2024
1 parent 343fa87 commit 857d08b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# UniversalRepoFmt
a universal IPA repo format that automatically converts into nearly every major format! it converts into formats for the following apps:

- AltStore (incl. SideStore, altsource-viewer, and derivatives)
- AltStore (incl. SideStore, TrollApps, altsource-viewer, and derivatives)
- ESign (can usually be used in most places)
- Feather (incl. TrollApps)
- Feather
- GBox
- Scarlet

Expand Down
1 change: 1 addition & 0 deletions converters.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ func ConvertToFeather(uni *repos.Universal) *repos.Feather {
func ConvertToAltStore(uni *repos.Universal) *repos.AltStore {
r := repos.AltStore{
Name: uni.Name,
IconURL: uni.IconURL,
Caption: uni.Caption,
Description: uni.Description,
}
Expand Down
1 change: 1 addition & 0 deletions examples/example.altstore.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "hello!",
"iconURL": "https://example.com/path/to/some/icon.png",
"subtitle": "a *short* description of your repo!",
"description": "this can be a longer description and include stuff like your links or something, idk",
"apps": [
Expand Down
1 change: 1 addition & 0 deletions repos/altstore.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ type AltStoreApp struct {

type AltStore struct {
Name string `json:"name"`
IconURL string `json:"iconURL"`
Caption string `json:"subtitle,omitempty"`
Description string `json:"description"`
Apps []AltStoreApp `json:"apps"`
Expand Down

0 comments on commit 857d08b

Please sign in to comment.