Commit Graph

1028 Commits

Author SHA1 Message Date
Riley Testut
d7bbf78b6b [AltStoreCore] Fixes incorrectly merging permissions for same app from different sources 2023-05-30 15:28:49 -05:00
Riley Testut
af61a5f052 Fixes crash when adding source with the same name as another source 2023-05-30 15:28:49 -05:00
Riley Testut
3efee63d41 [AltStoreCore] Makes AppPermission.usageDescription non-optional for backwards compatibility
Necessary to support switching between AltStore beta and public version.

Wraps private non-optional _usageDescription value in public accessor with optional return type to still treat it as “optional” value.
2023-05-30 14:24:35 -05:00
Riley Testut
2512b55c67 [Apps] Adds app permissions
AltStore 2.0 requires all app permissions to be listed in source JSON in order to install an app.
2023-05-30 13:53:11 -05:00
Riley Testut
1598166c29 Updates build version to 4 2023-05-30 13:04:47 -05:00
Riley Testut
2e9eb0b2f9 Fixes “non-sendable type 'Notification?' cannot cross actor boundary” warning 2023-05-30 13:00:18 -05:00
Riley Testut
13248c05e7 Revises appPermissions format in source JSON
Before, appPermissions was one array containing all permissions of different types.

Now, we split entitlement and privacy permissions into separate “entitlements” and “privacy” child arrays.
2023-05-30 12:57:45 -05:00
Riley Testut
48105f068b Changes ALTAppPermission.isKnown to check localizedName == nil, not localizedDescription
Privacy permissions always have nil localizedDescriptions, even if they’re known.
2023-05-30 12:53:26 -05:00
Riley Testut
cc01442e55 Fixes resigning some apps with incorrect entitlements
* Fixes resigning apps without required entitlements application-identifier, team-identifier, or get-task-allow
* Fixes resigning apps with wildcard keychain-access-groups
2023-05-30 12:18:46 -05:00
Riley Testut
418e594c1d Updates app version to 2.0b2 2023-05-29 20:14:09 -05:00
Riley Testut
b284a612b3 Updates Cocoapods to 1.12.1 2023-05-29 20:13:24 -05:00
Riley Testut
74468761bf [Permissions] Fixes incorrect entitlement keys and revises names + descriptions 2023-05-29 20:06:42 -05:00
Riley Testut
17aa1e6538 Fixes “Check for Updates” not updating any sources if one source fails 2023-05-29 20:06:42 -05:00
Riley Testut
4ec6bd3d2b Revises store page permissions UI (again)
* Switches back “Permissions” and “Privacy” section titles
* Shrinks privacy permissions card title font
* Combines privacy + entitlements back into single “Permissions” section
* Removes “Entitlements” section name
2023-05-29 16:50:17 -05:00
Riley Testut
0db5e3caab Adds “Disable Response Caching” debug setting
When enabled, AltStore will ignore cached responses for certain requests and will always make a new request to the server. This is useful for development when repeatedly testing changes to remote files.

Limited to UpdateKnownSourcesOperation for now, but will eventually affect fetching sources as well.
2023-05-29 16:50:17 -05:00
Riley Testut
c3721ba209 [AltStoreCore] Migrates Core Data model from v12 to v13 2023-05-29 16:50:17 -05:00
Riley Testut
c1e2a28c67 [AltStoreCore] Adds Permissions.plist with definitions for most known permissions
Simpler to update over time as a separate plist rather than in source code.
2023-05-29 16:50:17 -05:00
Riley Testut
484dad2af2 Fixes resigning apps with entitlements the original app doesn’t have 2023-05-29 16:50:17 -05:00
Riley Testut
89a4f8369b Refactors app version comparison logic to always include buildVersion
Before, whether or not the source included the buildVersion affected the comparison. If present, the buildVersion was used in comparison, if not, only the version itself was used for comparsion.

This meant it was impossible to update from a version with a buildVersion to the same version without one (e.g. going from betas to final releases). Now we _always_ consider the buildVersion in the comparsion, so an earlier entry in versions array without buildVersion can be considered “newer” even if versions match.
2023-05-29 16:50:17 -05:00
Riley Testut
de3096d9dc Revises store page permissions UI
* Switches “Permissions” and “Privacy” titles
* Makes “Entitlements” and “Other Entitlements” top-level sections
* Matches parent table view layout margins
2023-05-29 16:50:17 -05:00
Riley Testut
5bc8e609e8 Disables permission verification for DEBUG builds 2023-05-29 16:50:17 -05:00
Riley Testut
b2b0fd4c6f Fixes incorrectly handling misc. CancellationErrors 2023-05-29 16:50:17 -05:00
Riley Testut
895d7438c0 Fixes “Core Data error” when error is thrown while parsing Source JSON
‘NSCodingPath’ is an array of non-ObjC values, but because it’s an array the array itself conforms to NSSecureCoding via NSArray bridging.

We now make sure every element in an array or dictionary also conforms to NSSecureCoding to keep it in an error’s userInfo for serialization.
2023-05-29 16:50:17 -05:00
Riley Testut
4ed40cd544 Removes support for “background mode” permissions 2023-05-29 16:50:17 -05:00
Riley Testut
b662b90ea7 Temporarily disables verifying added permissions
We’ll re-enable once we finish the “Review Permissions” screen.
2023-05-29 16:48:43 -05:00
Riley Testut
260246a94d Includes more detailed info in VerificationError.addedPermission error messages
* New version
* Previous version
* Added permissions
2023-05-29 16:48:43 -05:00
Riley Testut
930b098cbf Fixes erroneously showing “Unsupported Updates Available” message 2023-05-29 16:48:43 -05:00
Riley Testut
a3813ace54 Revises Entitlements UI on app detail page 2023-05-29 16:48:43 -05:00
Riley Testut
04a237843b Fixes strong reference cycles in Source view controllers
* SourcesViewController
* SourcesDetailContentViewController
2023-05-29 16:47:30 -05:00
Riley Testut
c50e351e88 Fixes CollapsingTextView “More” button incorrectly appearing if lineCount == maximumNumberOfLines 2023-05-29 16:47:30 -05:00
Riley Testut
11ade8e54b Fixes AppViewController scrolling performance for apps with several privacy permissions 2023-05-29 16:47:30 -05:00
Riley Testut
04582c72e8 Redesigns store page permissions UI to show all entitlements and privacy permissions 2023-05-29 16:47:30 -05:00
Riley Testut
4766c14b6c [AltStoreCore] Adds some common ALTPrivacyPermissions
* Apple Music
* Bluetooth
* Calendars
* Camera
* Face ID
* Local Network
* Microphone
* Photos
2023-05-29 16:46:35 -05:00
Riley Testut
77bed04d68 Supports bypassing “Undeclared Permissions” error while sources are in beta
Presents error alert that can be explicitly bypassed by user when sideloading apps with undeclared permissions, and also allows user to view all undeclared permissions.
2023-05-22 15:02:26 -05:00
Riley Testut
eb81fee411 Fixes showing “Update” button on app store page when no supported update is available 2023-05-18 17:44:54 -05:00
Riley Testut
eebb777422 Shows AltStore build version in Settings for BETA builds 2023-05-18 16:03:27 -05:00
Riley Testut
9c2336832a Verifies downloaded app’s build version matches source (if provided) 2023-05-18 15:55:26 -05:00
Riley Testut
ced82ef4e3 [AltStoreCore] Renames StoreApp.latestVersionString to _version 2023-05-18 15:54:13 -05:00
Riley Testut
e97e48ba13 Supports app versions with explicit build versions
AltStore will now consider an update available if either:

* The source’s marketing version doesn’t match installed app’s version
* The source declares a build version AND it doesn’t match the install app’s build version

The installed app matches an app version if both maketing versions match, and the build versions match (if provided by the source).
2023-05-18 15:48:17 -05:00
Riley Testut
5985b4ca71 Shows error alert on app launch if any added sources are blocked 2023-05-16 15:46:37 -05:00
Riley Testut
fe412a07b6 Updates SourceError.blocked recovery suggestion to list installed/blocked apps
If source is already added, the error message will list all installed apps from the source.

If adding source for first time, the error message will mention exactly which apps have been blocked from the source (if provided).
2023-05-16 15:44:30 -05:00
Riley Testut
6053a075f4 [AltStoreCore] Backports iOS 15+ NSManagedObjectContext.performAndWait<T>()
Simplifies returning values and throwing errors from managed object contexts.
2023-05-16 15:15:43 -05:00
Riley Testut
5ba5bf995e Removes unused verificationHandler property from VerifyAppOperation 2023-05-15 18:40:47 -05:00
Riley Testut
bfb4fac42a Supports blocking third-party sources
Blocked sources cannot be added by new users, or updated for existing users.
2023-05-15 16:27:30 -05:00
Riley Testut
0255bd7b1c Moves SourceError to its own source file 2023-05-15 15:38:54 -05:00
Riley Testut
631109b54b Verifies all privacy + background mode permissions have usage descriptions 2023-05-15 15:29:51 -05:00
Riley Testut
af405d9e85 Verifies app updates have same permissions as previously installed versions 2023-05-15 15:14:13 -05:00
Riley Testut
45ed24bfb5 Verifies downloaded app’s permissions match source
Renames source JSON permissions key to “appPermissions” in order to preserve backwards compatibility, since we’ve changed the schema for permissions.
2023-05-12 18:26:24 -05:00
Riley Testut
729eb89433 Verifies source’s identifier doesn’t match existing sources when adding 2023-05-12 16:23:28 -05:00
Riley Testut
465be339fd Verifies source’s identifier doesn’t change after refreshing 2023-05-11 18:57:54 -05:00