.changelog/2795.md
JITSource enum (.altStore, .stikDebug, .trollStore, .system, .unknown, .none) and JITSourceDetector to identify which tool is providing JIT (StikDebug via URL scheme, TrollStore via file-system paths, iOS 26 native JIT via JITAuthorizer class, jailbreak daemons, or Simulator)..stikDebug, .trollStore, and .nativeEntitlement to DOLJitType for type-safe representation of new JIT acquisition paths.DOLJitManager.attemptToAcquireJitByStikDebug() sends an HTTP attach request to the StikDebug VPN tunnel endpoint, mirroring the existing JitStreamer flow.DOLJitManager.isInstalledViaTrollStore() checks known file-system markers left by TrollStore, enabling automatic JIT without a debugger attachment.JITAuthorizer private class (iOS 26+) to identify when the system's formal JIT entitlement path is available; maps to .nativeEntitlement type and .system source.