mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-12 08:13:26 +01:00
[AltServer] Manages active/inactive profiles when installing apps
This commit is contained in:
@@ -262,11 +262,15 @@ public struct PrepareAppRequest: ServerMessageProtocol
|
||||
|
||||
public struct BeginInstallationRequest: ServerMessageProtocol
|
||||
{
|
||||
public var version = 1
|
||||
public var version = 2
|
||||
public var identifier = "BeginInstallationRequest"
|
||||
|
||||
public init()
|
||||
// If activeProfiles is non-nil, then AltServer should remove all profiles except active ones.
|
||||
public var activeProfiles: Set<String>?
|
||||
|
||||
public init(activeProfiles: Set<String>?)
|
||||
{
|
||||
self.activeProfiles = activeProfiles
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user