Skip to content

Commit

Permalink
Fix #8 hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
Dadoum committed Dec 17, 2023
1 parent 21e3f43 commit cdd2aa0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,20 @@ I am here to help!
```sh
$ sideloader -h
Available commands:
app-id list List App IDs.
app-id add Add a new App ID.
app-id delete Delete an App ID (it won't let you create more App IDs though).
app-id download Download the provisioning profile for an App ID
cert list List certificates.
cert submit Submit a certificate signing request to Apple servers.
cert revoke Revoke a certificate.
install Install an application on the device (renames the app, register the
identifier, sign and install automatically).
sign Sign an application bundle (you need to have the App ID registered
though).



sign Sign an application bundle.
team list List teams.
tool list List tools.
tool run Run a tool.
version Print the version.
```
## How to install
Expand Down
4 changes: 2 additions & 2 deletions source/server/developersession.d
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,8 @@ class DeveloperSession {
);
}
).array(),
dict["maxQuantity"].uinteger().native(),
dict["availableQuantity"].uinteger().native(),
"maxQuantity" in dict ? dict["maxQuantity"].uinteger().native() : ulong.max,
"availableQuantity" in dict ? dict["availableQuantity"].uinteger().native() : ulong.max,
)),
(DeveloperPortalError err) => DeveloperPortalResponse(err)
);
Expand Down

0 comments on commit cdd2aa0

Please sign in to comment.