├── .gitignore ├── Credits.rtf ├── English.lproj ├── InfoPlist.strings ├── Localizable.strings └── MainMenu.xib ├── FWBundle.h ├── FWBundle.m ├── FWManager.h ├── FWManager.m ├── JSONKit.h ├── JSONKit.m ├── NSApplication+SystemVersion.h ├── NSApplication+SystemVersion.m ├── NSData+Flip.h ├── NSData+Flip.mm ├── NSString+Extensions.h ├── NSString+Extensions.m ├── NativeStuffs ├── Restore │ ├── AMRestore.h │ ├── CoreMobileDevice.h │ ├── IPSW.h │ ├── IPSW.m │ ├── IPSWRestore.h │ ├── IPSWRestore.m │ ├── iUSBKit │ │ ├── IPhoneUSB.h │ │ ├── IPhoneUSB.m │ │ └── libusb.h │ ├── restorable.h │ └── restoreoptions.pr └── libusbkit │ ├── SHAtter.h │ ├── libusbkit.h │ ├── libusbkit.m │ ├── libusbkit.mm │ ├── limerain.h │ └── main.c ├── PatchedFile.h ├── PatchedFile.m ├── README ├── SPAppliance ├── BackRowExtras.h ├── English.lproj │ └── InfoPlist.strings ├── Info.plist ├── SPAppliance.h ├── SPAppliance.mm ├── SPAppliance.xcodeproj │ ├── kevinbradley.pbxuser │ ├── kevinbradley.perspectivev3 │ └── project.pbxproj ├── SPHelper │ ├── Makefile │ ├── SPHelper.m │ ├── SPHelperClass.h │ ├── SPHelperClass.m │ └── theos │ │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ └── text-base │ │ │ ├── LICENSE.svn-base │ │ │ └── Prefix.pch.svn-base │ │ ├── LICENSE │ │ ├── Prefix.pch │ │ ├── bin │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ ├── prop-base │ │ │ │ ├── deb_build_num.sh.svn-base │ │ │ │ ├── denicify.pl.svn-base │ │ │ │ ├── fakeroot.sh.svn-base │ │ │ │ ├── install.copyFile.svn-base │ │ │ │ ├── install.exec.svn-base │ │ │ │ ├── install.mergeDir.svn-base │ │ │ │ ├── logify.pl.svn-base │ │ │ │ ├── logos.pl.svn-base │ │ │ │ ├── nic.pl.svn-base │ │ │ │ ├── nicify.pl.svn-base │ │ │ │ ├── package_version.sh.svn-base │ │ │ │ └── plistkey.py.svn-base │ │ │ └── text-base │ │ │ │ ├── deb_build_num.sh.svn-base │ │ │ │ ├── denicify.pl.svn-base │ │ │ │ ├── fakeroot.sh.svn-base │ │ │ │ ├── install.copyFile.svn-base │ │ │ │ ├── install.exec.svn-base │ │ │ │ ├── install.mergeDir.svn-base │ │ │ │ ├── logify.pl.svn-base │ │ │ │ ├── logos.pl.svn-base │ │ │ │ ├── nic.pl.svn-base │ │ │ │ ├── nicify.pl.svn-base │ │ │ │ ├── package_version.sh.svn-base │ │ │ │ └── plistkey.py.svn-base │ │ ├── deb_build_num.sh │ │ ├── denicify.pl │ │ ├── fakeroot.sh │ │ ├── install.copyFile │ │ ├── install.exec │ │ ├── install.mergeDir │ │ ├── lib │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ ├── Logos │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── BaseClass.pm.svn-base │ │ │ │ │ │ ├── BaseMethod.pm.svn-base │ │ │ │ │ │ ├── BaseStaticClassGroup.pm.svn-base │ │ │ │ │ │ ├── BaseSubclass.pm.svn-base │ │ │ │ │ │ ├── Group.pm.svn-base │ │ │ │ │ │ └── Ivar.pm.svn-base │ │ │ │ ├── BaseClass.pm │ │ │ │ ├── BaseMethod.pm │ │ │ │ ├── BaseStaticClassGroup.pm │ │ │ │ ├── BaseSubclass.pm │ │ │ │ ├── Generator │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ └── entries │ │ │ │ │ └── MobileSubstrate │ │ │ │ │ │ ├── .svn │ │ │ │ │ │ ├── all-wcprops │ │ │ │ │ │ ├── entries │ │ │ │ │ │ └── text-base │ │ │ │ │ │ │ ├── Base.pm.svn-base │ │ │ │ │ │ │ ├── Class.pm.svn-base │ │ │ │ │ │ │ ├── Method.pm.svn-base │ │ │ │ │ │ │ ├── StaticClassGroup.pm.svn-base │ │ │ │ │ │ │ └── Subclass.pm.svn-base │ │ │ │ │ │ ├── Base.pm │ │ │ │ │ │ ├── Class.pm │ │ │ │ │ │ ├── Method.pm │ │ │ │ │ │ ├── StaticClassGroup.pm │ │ │ │ │ │ └── Subclass.pm │ │ │ │ ├── Group.pm │ │ │ │ └── Ivar.pm │ │ │ └── NIC │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ │ └── Formats │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ └── NIC1.pm.svn-base │ │ │ │ └── NIC1.pm │ │ ├── logify.pl │ │ ├── logos.pl │ │ ├── nic.pl │ │ ├── nicify.pl │ │ ├── package_version.sh │ │ └── plistkey.py │ │ ├── documentation │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── Makefile.svn-base │ │ │ │ └── makefiles.docbook.svn-base │ │ ├── Makefile │ │ └── makefiles.docbook │ │ ├── extras │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ └── entries │ │ └── vim │ │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ └── README.svn-base │ │ │ ├── README │ │ │ ├── ftplugin │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ └── logos.vim.svn-base │ │ │ └── logos.vim │ │ │ ├── indent │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ └── logos.vim.svn-base │ │ │ └── logos.vim │ │ │ └── syntax │ │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ └── logos.vim.svn-base │ │ │ └── logos.vim │ │ ├── include │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ ├── prop-base │ │ │ │ └── substrate.h.svn-base │ │ │ └── text-base │ │ │ │ ├── DHCommon.h.svn-base │ │ │ │ ├── DHHookCommon.h.svn-base │ │ │ │ ├── nlist.h.svn-base │ │ │ │ └── substrate.h.svn-base │ │ ├── BackRow │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── BRATVDataImageProxy.h.svn-base │ │ │ │ │ ├── BRATVMediaItem.h.svn-base │ │ │ │ │ ├── BRAXMetadataChangeProtocol.h.svn-base │ │ │ │ │ ├── BRAXSelectionChangeProtocol.h.svn-base │ │ │ │ │ ├── BRAXTitleChangeProtocol.h.svn-base │ │ │ │ │ ├── BRAccount.h.svn-base │ │ │ │ │ ├── BRAccountManager.h.svn-base │ │ │ │ │ ├── BRAccountMenuItemPopulator.h.svn-base │ │ │ │ │ ├── BRAccountType.h.svn-base │ │ │ │ │ ├── BRActionShelfControl.h.svn-base │ │ │ │ │ ├── BRAggregateDataStore.h.svn-base │ │ │ │ │ ├── BRAirTunesMetadataPopulator.h.svn-base │ │ │ │ │ ├── BRAirportManager.h.svn-base │ │ │ │ │ ├── BRAirportNetwork.h.svn-base │ │ │ │ │ ├── BRAirportNetworksControlFactory.h.svn-base │ │ │ │ │ ├── BRAirportNetworksProvider.h.svn-base │ │ │ │ │ ├── BRAlertControl.h.svn-base │ │ │ │ │ ├── BRAlertController.h.svn-base │ │ │ │ │ ├── BRAnimation.h.svn-base │ │ │ │ │ ├── BRAppliance.h.svn-base │ │ │ │ │ ├── BRApplianceBrowserControlFactory.h.svn-base │ │ │ │ │ ├── BRApplianceBrowserProtocol.h.svn-base │ │ │ │ │ ├── BRApplianceCategory.h.svn-base │ │ │ │ │ ├── BRApplianceCategoryListProvider.h.svn-base │ │ │ │ │ ├── BRApplianceCategoryProvider.h.svn-base │ │ │ │ │ ├── BRApplianceColumnControl.h.svn-base │ │ │ │ │ ├── BRApplianceInfo.h.svn-base │ │ │ │ │ ├── BRApplianceListProvider.h.svn-base │ │ │ │ │ ├── BRApplianceManager.h.svn-base │ │ │ │ │ ├── BRApplianceProvider.h.svn-base │ │ │ │ │ ├── BRApplication.h.svn-base │ │ │ │ │ ├── BRApplicationStackManager.h.svn-base │ │ │ │ │ ├── BRAsyncImageControl.h.svn-base │ │ │ │ │ ├── BRAsyncTask.h.svn-base │ │ │ │ │ ├── BRAsyncTaskContext.h.svn-base │ │ │ │ │ ├── BRAudioDeviceManager.h.svn-base │ │ │ │ │ ├── BRAudioVisualizerControl.h.svn-base │ │ │ │ │ ├── BRAudiobookMetadataPopulator.h.svn-base │ │ │ │ │ ├── BRAuthenticationController.h.svn-base │ │ │ │ │ ├── BRAuthenticationResources.h.svn-base │ │ │ │ │ ├── BRAutoScrollingTextControl.h.svn-base │ │ │ │ │ ├── BRBackgroundTask.h.svn-base │ │ │ │ │ ├── BRBackgroundTaskManager.h.svn-base │ │ │ │ │ ├── BRBaseAppliance.h.svn-base │ │ │ │ │ ├── BRBaseMediaAsset.h.svn-base │ │ │ │ │ ├── BRBaseMediaCollection.h.svn-base │ │ │ │ │ ├── BRBaseMediaProvider.h.svn-base │ │ │ │ │ ├── BRBaseMenuItemLayerPopulator.h.svn-base │ │ │ │ │ ├── BRBaseMetadataPopulator.h.svn-base │ │ │ │ │ ├── BRBaseParserDelegate.h.svn-base │ │ │ │ │ ├── BRBlueGlowSelectionLozengeLayer.h.svn-base │ │ │ │ │ ├── BRBlueGlowSelectionLozengeLayerBacking.h.svn-base │ │ │ │ │ ├── BRBoxControl.h.svn-base │ │ │ │ │ ├── BRBoxListControl.h.svn-base │ │ │ │ │ ├── BRButtonControl.h.svn-base │ │ │ │ │ ├── BRCacheCleaner.h.svn-base │ │ │ │ │ ├── BRCappedFileCache.h.svn-base │ │ │ │ │ ├── BRChapterGridItem.h.svn-base │ │ │ │ │ ├── BRChapterSubtitleAudioPickerControl.h.svn-base │ │ │ │ │ ├── BRCollectionMenuItemPopulator.h.svn-base │ │ │ │ │ ├── BRComboMenuItemLayer.h.svn-base │ │ │ │ │ ├── BRContentController.h.svn-base │ │ │ │ │ ├── BRContextMenuControl.h.svn-base │ │ │ │ │ ├── BRContextMenuUtility.h.svn-base │ │ │ │ │ ├── BRControl.h.svn-base │ │ │ │ │ ├── BRControlFactory.h.svn-base │ │ │ │ │ ├── BRControlHeightFactory.h.svn-base │ │ │ │ │ ├── BRControlLayer.h.svn-base │ │ │ │ │ ├── BRControlMediator.h.svn-base │ │ │ │ │ ├── BRController.h.svn-base │ │ │ │ │ ├── BRControllerStack.h.svn-base │ │ │ │ │ ├── BRCoverArtImageLayer.h.svn-base │ │ │ │ │ ├── BRCoverArtPreviewControl.h.svn-base │ │ │ │ │ ├── BRCrossfadeTransitionControl.h.svn-base │ │ │ │ │ ├── BRCursorControl.h.svn-base │ │ │ │ │ ├── BRCursorLayer.h.svn-base │ │ │ │ │ ├── BRCyclerControl.h.svn-base │ │ │ │ │ ├── BRDAAPMediaHost.h.svn-base │ │ │ │ │ ├── BRDarwinNotificationTranslator.h.svn-base │ │ │ │ │ ├── BRDataQueryController.h.svn-base │ │ │ │ │ ├── BRDataStore.h.svn-base │ │ │ │ │ ├── BRDataStoreProvider.h.svn-base │ │ │ │ │ ├── BRDeletable.h.svn-base │ │ │ │ │ ├── BRDependentProvider.h.svn-base │ │ │ │ │ ├── BRDescriptionOverlayControl.h.svn-base │ │ │ │ │ ├── BRDetailedMediaControl.h.svn-base │ │ │ │ │ ├── BRDetailedMetadataControl.h.svn-base │ │ │ │ │ ├── BRDetailedMusicMetadataControl.h.svn-base │ │ │ │ │ ├── BRDeviceKeyboardMessage.h.svn-base │ │ │ │ │ ├── BRDialog.h.svn-base │ │ │ │ │ ├── BRDigitalExtrasController.h.svn-base │ │ │ │ │ ├── BRDigitalExtrasMenuItemPopulator.h.svn-base │ │ │ │ │ ├── BRDigitalExtrasWebControl.h.svn-base │ │ │ │ │ ├── BRDisplayManager.h.svn-base │ │ │ │ │ ├── BRDisplayMode.h.svn-base │ │ │ │ │ ├── BRDisplayModeRefreshRateSortDescriptor.h.svn-base │ │ │ │ │ ├── BRDividerControl.h.svn-base │ │ │ │ │ ├── BRDividerProvider.h.svn-base │ │ │ │ │ ├── BRDotArrayControl.h.svn-base │ │ │ │ │ ├── BRDownload.h.svn-base │ │ │ │ │ ├── BRDownloadManager.h.svn-base │ │ │ │ │ ├── BRDownloadPlayableAlertControl.h.svn-base │ │ │ │ │ ├── BRDropShadowControl.h.svn-base │ │ │ │ │ ├── BRErrorControl.h.svn-base │ │ │ │ │ ├── BREvent.h.svn-base │ │ │ │ │ ├── BRFadeMaskLayer.h.svn-base │ │ │ │ │ ├── BRFadeThroughBlackTransitionControl.h.svn-base │ │ │ │ │ ├── BRFeatureManager.h.svn-base │ │ │ │ │ ├── BRFileManager.h.svn-base │ │ │ │ │ ├── BRFocusContainer.h.svn-base │ │ │ │ │ ├── BRFocusEngine.h.svn-base │ │ │ │ │ ├── BRFocusableImageControl.h.svn-base │ │ │ │ │ ├── BRFontCache.h.svn-base │ │ │ │ │ ├── BRFrontControl.h.svn-base │ │ │ │ │ ├── BRFullScreenPhotoController.h.svn-base │ │ │ │ │ ├── BRFullScreenPhotoControllerDelegate.h.svn-base │ │ │ │ │ ├── BRGenre.h.svn-base │ │ │ │ │ ├── BRGridControl.h.svn-base │ │ │ │ │ ├── BRGridView.h.svn-base │ │ │ │ │ ├── BRHDCPMonitor.h.svn-base │ │ │ │ │ ├── BRHIDEvent.h.svn-base │ │ │ │ │ ├── BRHeaderControl.h.svn-base │ │ │ │ │ ├── BRHexInputMethod.h.svn-base │ │ │ │ │ ├── BRHiddenSelectionMenuItem.h.svn-base │ │ │ │ │ ├── BRHomeShareManager.h.svn-base │ │ │ │ │ ├── BRHorizontalSegmentedWidget.h.svn-base │ │ │ │ │ ├── BRIPConfiguration.h.svn-base │ │ │ │ │ ├── BRITunesLibraryUtilitiesAccess.h.svn-base │ │ │ │ │ ├── BRITunesUtilities.h.svn-base │ │ │ │ │ ├── BRIconPreviewController.h.svn-base │ │ │ │ │ ├── BRImage.h.svn-base │ │ │ │ │ ├── BRImageAndSyncingPreviewController.h.svn-base │ │ │ │ │ ├── BRImageControl.h.svn-base │ │ │ │ │ ├── BRImageLoadDelegate.h.svn-base │ │ │ │ │ ├── BRImageLoadJob.h.svn-base │ │ │ │ │ ├── BRImageLoader.h.svn-base │ │ │ │ │ ├── BRImageManager.h.svn-base │ │ │ │ │ ├── BRImageProxy.h.svn-base │ │ │ │ │ ├── BRImageProxyProvider.h.svn-base │ │ │ │ │ ├── BRInitialImage.h.svn-base │ │ │ │ │ ├── BRInputMethod.h.svn-base │ │ │ │ │ ├── BRInternetRadioImageProxy.h.svn-base │ │ │ │ │ ├── BRInvocationAnimationDelegate.h.svn-base │ │ │ │ │ ├── BRInvocationSelectionHandler.h.svn-base │ │ │ │ │ ├── BRJapaneseInputMethod.h.svn-base │ │ │ │ │ ├── BRKeyValueObservationEntry.h.svn-base │ │ │ │ │ ├── BRKeyValueObservingRegistry.h.svn-base │ │ │ │ │ ├── BRKeyboard.h.svn-base │ │ │ │ │ ├── BRKeyboardActionControl.h.svn-base │ │ │ │ │ ├── BRKeyboardCandidates.h.svn-base │ │ │ │ │ ├── BRKeyboardHex.h.svn-base │ │ │ │ │ ├── BRKeyboardJapaneseFull.h.svn-base │ │ │ │ │ ├── BRKeyboardJapaneseFullRoman.h.svn-base │ │ │ │ │ ├── BRKeyboardJapaneseFullSymbols.h.svn-base │ │ │ │ │ ├── BRKeyboardJapaneseRomanSquare.h.svn-base │ │ │ │ │ ├── BRKeyboardJapaneseRomanSymbols.h.svn-base │ │ │ │ │ ├── BRKeyboardJapaneseSquareHiragana.h.svn-base │ │ │ │ │ ├── BRKeyboardNumbers.h.svn-base │ │ │ │ │ ├── BRKeyboardRomanAccount.h.svn-base │ │ │ │ │ ├── BRKeyboardRomanFull.h.svn-base │ │ │ │ │ ├── BRKeyboardRomanSquare.h.svn-base │ │ │ │ │ ├── BRKeyboardRomanSymbols.h.svn-base │ │ │ │ │ ├── BRKeyboardRomanURL.h.svn-base │ │ │ │ │ ├── BRKeyboardRomanURLActionKeysContainer.h.svn-base │ │ │ │ │ ├── BRKeyboardRomanURLSymbols.h.svn-base │ │ │ │ │ ├── BRKeyboardRomanURLUppercase.h.svn-base │ │ │ │ │ ├── BRKeyboardRomanWeb.h.svn-base │ │ │ │ │ ├── BRKeyboardRomanWebKeyContainer.h.svn-base │ │ │ │ │ ├── BRLegacyProvider.h.svn-base │ │ │ │ │ ├── BRListControl.h.svn-base │ │ │ │ │ ├── BRListControlMonitor.h.svn-base │ │ │ │ │ ├── BRListView.h.svn-base │ │ │ │ │ ├── BRLocalizedStringManager.h.svn-base │ │ │ │ │ ├── BRMainMenuControl.h.svn-base │ │ │ │ │ ├── BRMainMenuControlFactory.h.svn-base │ │ │ │ │ ├── BRMainMenuController.h.svn-base │ │ │ │ │ ├── BRMainMenuImageControl.h.svn-base │ │ │ │ │ ├── BRMainMenuSelectionHandler.h.svn-base │ │ │ │ │ ├── BRMainMenuShelfControl.h.svn-base │ │ │ │ │ ├── BRMainMenuShelfErrorControl.h.svn-base │ │ │ │ │ ├── BRMappingDictionary.h.svn-base │ │ │ │ │ ├── BRMarimbaMenuView.h.svn-base │ │ │ │ │ ├── BRMarimbaSlideshowControl.h.svn-base │ │ │ │ │ ├── BRMarqueeScrollingDelegate.h.svn-base │ │ │ │ │ ├── BRMarqueeStack.h.svn-base │ │ │ │ │ ├── BRMarqueeTextControl.h.svn-base │ │ │ │ │ ├── BRMediaAccessUtilities.h.svn-base │ │ │ │ │ ├── BRMediaAsset.h.svn-base │ │ │ │ │ ├── BRMediaAssetDerivesMediaURL.h.svn-base │ │ │ │ │ ├── BRMediaAssetDigitalExtraInfo.h.svn-base │ │ │ │ │ ├── BRMediaAssetExpiryInfo.h.svn-base │ │ │ │ │ ├── BRMediaCollection.h.svn-base │ │ │ │ │ ├── BRMediaCollectionEditor.h.svn-base │ │ │ │ │ ├── BRMediaCollectionGeniusInfo.h.svn-base │ │ │ │ │ ├── BRMediaCollectionGeniusMixInfo.h.svn-base │ │ │ │ │ ├── BRMediaCollectionType.h.svn-base │ │ │ │ │ ├── BRMediaHost.h.svn-base │ │ │ │ │ ├── BRMediaHostConnectionDialog.h.svn-base │ │ │ │ │ ├── BRMediaHostDisconnectedDialog.h.svn-base │ │ │ │ │ ├── BRMediaHostEvent.h.svn-base │ │ │ │ │ ├── BRMediaHostState.h.svn-base │ │ │ │ │ ├── BRMediaHostStateAvailable.h.svn-base │ │ │ │ │ ├── BRMediaHostStateMountFailed.h.svn-base │ │ │ │ │ ├── BRMediaHostStateMounted.h.svn-base │ │ │ │ │ ├── BRMediaHostStateMounting.h.svn-base │ │ │ │ │ ├── BRMediaHostStateUnavailable.h.svn-base │ │ │ │ │ ├── BRMediaHostStateUnmounting.h.svn-base │ │ │ │ │ ├── BRMediaHostWaitDialogFactory.h.svn-base │ │ │ │ │ ├── BRMediaIdentityProtocol.h.svn-base │ │ │ │ │ ├── BRMediaListControl.h.svn-base │ │ │ │ │ ├── BRMediaLoading.h.svn-base │ │ │ │ │ ├── BRMediaMenuController.h.svn-base │ │ │ │ │ ├── BRMediaMenuView.h.svn-base │ │ │ │ │ ├── BRMediaObject.h.svn-base │ │ │ │ │ ├── BRMediaObjectButtonSelectionHandler.h.svn-base │ │ │ │ │ ├── BRMediaObjectControlFactory.h.svn-base │ │ │ │ │ ├── BRMediaObjectProvider.h.svn-base │ │ │ │ │ ├── BRMediaParadeControl.h.svn-base │ │ │ │ │ ├── BRMediaParadeLayer.h.svn-base │ │ │ │ │ ├── BRMediaParadeProvider.h.svn-base │ │ │ │ │ ├── BRMediaPlayer.h.svn-base │ │ │ │ │ ├── BRMediaPlayerController.h.svn-base │ │ │ │ │ ├── BRMediaPlayerControllerTransitionDelegate.h.svn-base │ │ │ │ │ ├── BRMediaPlayerEventHandler.h.svn-base │ │ │ │ │ ├── BRMediaPlayerManager.h.svn-base │ │ │ │ │ ├── BRMediaPlayerWaitControl.h.svn-base │ │ │ │ │ ├── BRMediaPreviewControlFactory.h.svn-base │ │ │ │ │ ├── BRMediaProvider.h.svn-base │ │ │ │ │ ├── BRMediaShareListController.h.svn-base │ │ │ │ │ ├── BRMediaShelfControl.h.svn-base │ │ │ │ │ ├── BRMediaShelfView.h.svn-base │ │ │ │ │ ├── BRMediaType.h.svn-base │ │ │ │ │ ├── BRMediaUtilities.h.svn-base │ │ │ │ │ ├── BRMediatorProvider.h.svn-base │ │ │ │ │ ├── BRMenuController.h.svn-base │ │ │ │ │ ├── BRMenuItem.h.svn-base │ │ │ │ │ ├── BRMenuItemLayerFactory.h.svn-base │ │ │ │ │ ├── BRMenuItemMediator.h.svn-base │ │ │ │ │ ├── BRMenuListItemProvider.h.svn-base │ │ │ │ │ ├── BRMenuSavedState.h.svn-base │ │ │ │ │ ├── BRMenuView.h.svn-base │ │ │ │ │ ├── BRMerchant.h.svn-base │ │ │ │ │ ├── BRMetadataControl.h.svn-base │ │ │ │ │ ├── BRMetadataDetailChunkControl.h.svn-base │ │ │ │ │ ├── BRMetadataDetailControl.h.svn-base │ │ │ │ │ ├── BRMetadataLineLayer.h.svn-base │ │ │ │ │ ├── BRMetadataLinesLayer.h.svn-base │ │ │ │ │ ├── BRMetadataLongDescriptionControl.h.svn-base │ │ │ │ │ ├── BRMetadataLongDescriptionPreviewControl.h.svn-base │ │ │ │ │ ├── BRMetadataPopulator.h.svn-base │ │ │ │ │ ├── BRMetadataPopulatorFactory.h.svn-base │ │ │ │ │ ├── BRMetadataPreviewControl.h.svn-base │ │ │ │ │ ├── BRMetadataPreviewControlFactory.h.svn-base │ │ │ │ │ ├── BRMetadataTitleControl.h.svn-base │ │ │ │ │ ├── BRModalDialog.h.svn-base │ │ │ │ │ ├── BRModalOptionDialog.h.svn-base │ │ │ │ │ ├── BRMovieMetadataPopulator.h.svn-base │ │ │ │ │ ├── BRMovieRatingStringTransformer.h.svn-base │ │ │ │ │ ├── BRMovieTrailer.h.svn-base │ │ │ │ │ ├── BRMovieTrailerCollection.h.svn-base │ │ │ │ │ ├── BRMovieTrailerMetadataPopulator.h.svn-base │ │ │ │ │ ├── BRMovieTrailersProvider.h.svn-base │ │ │ │ │ ├── BRMultiPartWidgetLayer.h.svn-base │ │ │ │ │ ├── BRMusicAlbumMetadataPopulator.h.svn-base │ │ │ │ │ ├── BRMusicContextMenuUtility.h.svn-base │ │ │ │ │ ├── BRMusicNowPlayingControl.h.svn-base │ │ │ │ │ ├── BRMusicNowPlayingLayer.h.svn-base │ │ │ │ │ ├── BRMusicNowPlayingTransportLayer.h.svn-base │ │ │ │ │ ├── BRMusicScrubber.h.svn-base │ │ │ │ │ ├── BRMusicStore.h.svn-base │ │ │ │ │ ├── BRMusicStoreUtility.h.svn-base │ │ │ │ │ ├── BRMusicVideoMetadataPopulator.h.svn-base │ │ │ │ │ ├── BRNetworkAlertController.h.svn-base │ │ │ │ │ ├── BRNetworkMediaProvider.h.svn-base │ │ │ │ │ ├── BRNowPlayingControlFactory.h.svn-base │ │ │ │ │ ├── BRNowPlayingProvider.h.svn-base │ │ │ │ │ ├── BROptionAlertControl.h.svn-base │ │ │ │ │ ├── BROptionDialog.h.svn-base │ │ │ │ │ ├── BRPagedView.h.svn-base │ │ │ │ │ ├── BRPairingController.h.svn-base │ │ │ │ │ ├── BRPairingPinControl.h.svn-base │ │ │ │ │ ├── BRPanelControl.h.svn-base │ │ │ │ │ ├── BRParentalControlManager.h.svn-base │ │ │ │ │ ├── BRParentalControlsPasscodeChangedController.h.svn-base │ │ │ │ │ ├── BRParentalControlsPasscodeController.h.svn-base │ │ │ │ │ ├── BRPasscodeEntryControl.h.svn-base │ │ │ │ │ ├── BRPasscodeSelectionLayer.h.svn-base │ │ │ │ │ ├── BRPasscodeSelectionWidget.h.svn-base │ │ │ │ │ ├── BRPercentageIndicatorLayer.h.svn-base │ │ │ │ │ ├── BRPhotoBrowserBannerButton.h.svn-base │ │ │ │ │ ├── BRPhotoBrowserControlFactory.h.svn-base │ │ │ │ │ ├── BRPhotoBrowserController.h.svn-base │ │ │ │ │ ├── BRPhotoBrowserCorkBoardControl.h.svn-base │ │ │ │ │ ├── BRPhotoBrowserHeaderControl.h.svn-base │ │ │ │ │ ├── BRPhotoCollectionDataStore.h.svn-base │ │ │ │ │ ├── BRPhotoControlFactory.h.svn-base │ │ │ │ │ ├── BRPhotoDataStoreProvider.h.svn-base │ │ │ │ │ ├── BRPhotoDataStoreProviderForCollection.h.svn-base │ │ │ │ │ ├── BRPhotoImageProxy.h.svn-base │ │ │ │ │ ├── BRPhotoMediaAsset.h.svn-base │ │ │ │ │ ├── BRPhotoMediaCollection.h.svn-base │ │ │ │ │ ├── BRPhotoProvider.h.svn-base │ │ │ │ │ ├── BRPhotoProviderForCollection.h.svn-base │ │ │ │ │ ├── BRPhotoSelectionHandler.h.svn-base │ │ │ │ │ ├── BRPhotoSubImageProxy.h.svn-base │ │ │ │ │ ├── BRPlaylistDataStore.h.svn-base │ │ │ │ │ ├── BRPlaylistItemsMenuConroller.h.svn-base │ │ │ │ │ ├── BRPlaylistsControlFactory.h.svn-base │ │ │ │ │ ├── BRPlaylistsMenuController.h.svn-base │ │ │ │ │ ├── BRPodcastMetadataPopulator.h.svn-base │ │ │ │ │ ├── BRPopPanelControl.h.svn-base │ │ │ │ │ ├── BRPopUpManager.h.svn-base │ │ │ │ │ ├── BRPosterControl.h.svn-base │ │ │ │ │ ├── BRPosterControlFactory.h.svn-base │ │ │ │ │ ├── BRPosterImageControl.h.svn-base │ │ │ │ │ ├── BRPosterLayer.h.svn-base │ │ │ │ │ ├── BRPosterReflectionControl.h.svn-base │ │ │ │ │ ├── BRPreferenceManager.h.svn-base │ │ │ │ │ ├── BRPreferences.h.svn-base │ │ │ │ │ ├── BRPreviewBrowserControl.h.svn-base │ │ │ │ │ ├── BRPreviewBrowserSelectionHandler.h.svn-base │ │ │ │ │ ├── BRProgressBarWidget.h.svn-base │ │ │ │ │ ├── BRProvider.h.svn-base │ │ │ │ │ ├── BRProviderGroup.h.svn-base │ │ │ │ │ ├── BRRSSMediaAsset.h.svn-base │ │ │ │ │ ├── BRRSSMetadataPopulator.h.svn-base │ │ │ │ │ ├── BRRadioMetadataPopulator.h.svn-base │ │ │ │ │ ├── BRRecentAlbumsProvider.h.svn-base │ │ │ │ │ ├── BRReflectedImageControl.h.svn-base │ │ │ │ │ ├── BRReflectionControl.h.svn-base │ │ │ │ │ ├── BRRemoteMediaHost.h.svn-base │ │ │ │ │ ├── BRResolution.h.svn-base │ │ │ │ │ ├── BRResponder.h.svn-base │ │ │ │ │ ├── BRResumeMenuControl.h.svn-base │ │ │ │ │ ├── BRRetailHiddenMenuItem.h.svn-base │ │ │ │ │ ├── BRRomanInputMethod.h.svn-base │ │ │ │ │ ├── BRRoundRectOutlineLayer.h.svn-base │ │ │ │ │ ├── BRScalingLayoutManager.h.svn-base │ │ │ │ │ ├── BRScrollControl.h.svn-base │ │ │ │ │ ├── BRScrollingTextBoxControl.h.svn-base │ │ │ │ │ ├── BRScrollingTextControl.h.svn-base │ │ │ │ │ ├── BRScrollingTextControlFactory.h.svn-base │ │ │ │ │ ├── BRScrollingTextControlSelectionHandler.h.svn-base │ │ │ │ │ ├── BRScrollingTextPlane.h.svn-base │ │ │ │ │ ├── BRScrollingTextTextProvider.h.svn-base │ │ │ │ │ ├── BRSegmentedSortControl.h.svn-base │ │ │ │ │ ├── BRSelectionHandler.h.svn-base │ │ │ │ │ ├── BRSelectionLozengeLayer.h.svn-base │ │ │ │ │ ├── BRSentinel.h.svn-base │ │ │ │ │ ├── BRSeriesControlFactory.h.svn-base │ │ │ │ │ ├── BRSeriesDataStore.h.svn-base │ │ │ │ │ ├── BRSeriesMainMenuShelfSelectionHandler.h.svn-base │ │ │ │ │ ├── BRSeriesMediaMenuController.h.svn-base │ │ │ │ │ ├── BRSeriesMostRecentNoStoreProvider.h.svn-base │ │ │ │ │ ├── BRSeriesProvider.h.svn-base │ │ │ │ │ ├── BRSettingsFacade.h.svn-base │ │ │ │ │ ├── BRShareManager.h.svn-base │ │ │ │ │ ├── BRShimmerControl.h.svn-base │ │ │ │ │ ├── BRSimpleMenuItem.h.svn-base │ │ │ │ │ ├── BRSimpleMenuItemPopulator.h.svn-base │ │ │ │ │ ├── BRSingleton.h.svn-base │ │ │ │ │ ├── BRSlideshowSettingsController.h.svn-base │ │ │ │ │ ├── BRSlideshowSettingsMusicController.h.svn-base │ │ │ │ │ ├── BRSongMenuItemPopulator.h.svn-base │ │ │ │ │ ├── BRSongMetadataPopulator.h.svn-base │ │ │ │ │ ├── BRSoundHandler.h.svn-base │ │ │ │ │ ├── BRSpacerControl.h.svn-base │ │ │ │ │ ├── BRSpecialKeyRow.h.svn-base │ │ │ │ │ ├── BRStandardCursorLayer.h.svn-base │ │ │ │ │ ├── BRStatusAlertControl.h.svn-base │ │ │ │ │ ├── BRStatusAlertControlDelegate.h.svn-base │ │ │ │ │ ├── BRStreamingMediaAsset.h.svn-base │ │ │ │ │ ├── BRStreamingMediaHost.h.svn-base │ │ │ │ │ ├── BRStreamingPhotoAsset.h.svn-base │ │ │ │ │ ├── BRStreamingPhotoCollection.h.svn-base │ │ │ │ │ ├── BRSubsetProvider.h.svn-base │ │ │ │ │ ├── BRSyncProgressControl.h.svn-base │ │ │ │ │ ├── BRSyncingMediaHost.h.svn-base │ │ │ │ │ ├── BRSystemLanguages.h.svn-base │ │ │ │ │ ├── BRTVShowMetadataPopulator.h.svn-base │ │ │ │ │ ├── BRTabControl.h.svn-base │ │ │ │ │ ├── BRTabControlDelegate.h.svn-base │ │ │ │ │ ├── BRTabControlItem.h.svn-base │ │ │ │ │ ├── BRTaskManager.h.svn-base │ │ │ │ │ ├── BRTextControl.h.svn-base │ │ │ │ │ ├── BRTextEntryControl.h.svn-base │ │ │ │ │ ├── BRTextEntryController.h.svn-base │ │ │ │ │ ├── BRTextEntryCursorLayer.h.svn-base │ │ │ │ │ ├── BRTextEntryDialog.h.svn-base │ │ │ │ │ ├── BRTextField.h.svn-base │ │ │ │ │ ├── BRTextFieldBackgroundLayer.h.svn-base │ │ │ │ │ ├── BRTextFieldControl.h.svn-base │ │ │ │ │ ├── BRTextFieldDelegate.h.svn-base │ │ │ │ │ ├── BRTextLineControl.h.svn-base │ │ │ │ │ ├── BRTextMenuItemControlFactory.h.svn-base │ │ │ │ │ ├── BRTextWithSpinnerController.h.svn-base │ │ │ │ │ ├── BRThemeInfo.h.svn-base │ │ │ │ │ ├── BRThreadCallback.h.svn-base │ │ │ │ │ ├── BRThreadNotificationManager.h.svn-base │ │ │ │ │ ├── BRThresholdControlMediator.h.svn-base │ │ │ │ │ ├── BRTileLayer.h.svn-base │ │ │ │ │ ├── BRTiledLayer.h.svn-base │ │ │ │ │ ├── BRTimer.h.svn-base │ │ │ │ │ ├── BRTitleProvider.h.svn-base │ │ │ │ │ ├── BRTopShelfRefreshTask.h.svn-base │ │ │ │ │ ├── BRTopShelfView.h.svn-base │ │ │ │ │ ├── BRTrackInfoControl.h.svn-base │ │ │ │ │ ├── BRTrackInfoLayer.h.svn-base │ │ │ │ │ ├── BRTrailerDelegate.h.svn-base │ │ │ │ │ ├── BRTransientPlaybackRange.h.svn-base │ │ │ │ │ ├── BRTransitionControl.h.svn-base │ │ │ │ │ ├── BRTransportControl.h.svn-base │ │ │ │ │ ├── BRTransportLayer.h.svn-base │ │ │ │ │ ├── BRType.h.svn-base │ │ │ │ │ ├── BRTypesetLine.h.svn-base │ │ │ │ │ ├── BRTypesetter.h.svn-base │ │ │ │ │ ├── BRURLDocument.h.svn-base │ │ │ │ │ ├── BRURLDocumentManager.h.svn-base │ │ │ │ │ ├── BRURLImageProxy.h.svn-base │ │ │ │ │ ├── BRURLPlist.h.svn-base │ │ │ │ │ ├── BRUnboundedSelectionLozengeLayer.h.svn-base │ │ │ │ │ ├── BRUsageReporter.h.svn-base │ │ │ │ │ ├── BRUsageReporterOptInDialog.h.svn-base │ │ │ │ │ ├── BRVerticalScrollBarControl.h.svn-base │ │ │ │ │ ├── BRVideoCacheManager.h.svn-base │ │ │ │ │ ├── BRVideoCacheManagerDelegate.h.svn-base │ │ │ │ │ ├── BRVideoChapterControlFactory.h.svn-base │ │ │ │ │ ├── BRVideoChapterProvider.h.svn-base │ │ │ │ │ ├── BRViewController.h.svn-base │ │ │ │ │ ├── BRVolumeControl.h.svn-base │ │ │ │ │ ├── BRWaitPromptControl.h.svn-base │ │ │ │ │ ├── BRWaitSpinnerControl.h.svn-base │ │ │ │ │ ├── BRWebControl.h.svn-base │ │ │ │ │ ├── BRWebFocusContainer.h.svn-base │ │ │ │ │ ├── BRWebFormHelper.h.svn-base │ │ │ │ │ ├── BRWebMediaElementProxy.h.svn-base │ │ │ │ │ ├── BRWebOverlayControl.h.svn-base │ │ │ │ │ ├── BRWebPointerControl.h.svn-base │ │ │ │ │ ├── BRWebWindowControl.h.svn-base │ │ │ │ │ ├── BRWindow.h.svn-base │ │ │ │ │ ├── BRXMLDocument.h.svn-base │ │ │ │ │ ├── BRXMLElement.h.svn-base │ │ │ │ │ ├── BRXMLImageProxy.h.svn-base │ │ │ │ │ ├── BRXMLMediaAsset.h.svn-base │ │ │ │ │ ├── BRXMLNode.h.svn-base │ │ │ │ │ ├── BRYTMetadataPopulator.h.svn-base │ │ │ │ │ ├── BRZoomTransitionControl.h.svn-base │ │ │ │ │ ├── BackRow-Structs.h.svn-base │ │ │ │ │ ├── BackRow.h.svn-base │ │ │ │ │ ├── CALayer.h.svn-base │ │ │ │ │ ├── DOMDocument.h.svn-base │ │ │ │ │ ├── DOMEventBridge.h.svn-base │ │ │ │ │ ├── DOMEventListener.h.svn-base │ │ │ │ │ ├── DOMHTMLAnchorElement.h.svn-base │ │ │ │ │ ├── DOMHTMLInputElement.h.svn-base │ │ │ │ │ ├── DOMHTMLObjectElement.h.svn-base │ │ │ │ │ ├── DOMHTMLSelectElement.h.svn-base │ │ │ │ │ ├── DOMHTMLTextAreaElement.h.svn-base │ │ │ │ │ ├── DOMNode.h.svn-base │ │ │ │ │ ├── ListAnimationDelegate.h.svn-base │ │ │ │ │ ├── ListViewAnimationDelegate.h.svn-base │ │ │ │ │ ├── ScrollAnimationDelegate.h.svn-base │ │ │ │ │ └── WebWindowDelegate.h.svn-base │ │ │ ├── BRATVDataImageProxy.h │ │ │ ├── BRATVMediaItem.h │ │ │ ├── BRAXMetadataChangeProtocol.h │ │ │ ├── BRAXSelectionChangeProtocol.h │ │ │ ├── BRAXTitleChangeProtocol.h │ │ │ ├── BRAccount.h │ │ │ ├── BRAccountManager.h │ │ │ ├── BRAccountMenuItemPopulator.h │ │ │ ├── BRAccountType.h │ │ │ ├── BRActionShelfControl.h │ │ │ ├── BRAggregateDataStore.h │ │ │ ├── BRAirTunesMetadataPopulator.h │ │ │ ├── BRAirportManager.h │ │ │ ├── BRAirportNetwork.h │ │ │ ├── BRAirportNetworksControlFactory.h │ │ │ ├── BRAirportNetworksProvider.h │ │ │ ├── BRAlertControl.h │ │ │ ├── BRAlertController.h │ │ │ ├── BRAnimation.h │ │ │ ├── BRAppliance.h │ │ │ ├── BRApplianceBrowserControlFactory.h │ │ │ ├── BRApplianceBrowserProtocol.h │ │ │ ├── BRApplianceCategory.h │ │ │ ├── BRApplianceCategoryListProvider.h │ │ │ ├── BRApplianceCategoryProvider.h │ │ │ ├── BRApplianceColumnControl.h │ │ │ ├── BRApplianceInfo.h │ │ │ ├── BRApplianceListProvider.h │ │ │ ├── BRApplianceManager.h │ │ │ ├── BRApplianceProvider.h │ │ │ ├── BRApplication.h │ │ │ ├── BRApplicationStackManager.h │ │ │ ├── BRAsyncImageControl.h │ │ │ ├── BRAsyncTask.h │ │ │ ├── BRAsyncTaskContext.h │ │ │ ├── BRAudioDeviceManager.h │ │ │ ├── BRAudioVisualizerControl.h │ │ │ ├── BRAudiobookMetadataPopulator.h │ │ │ ├── BRAuthenticationController.h │ │ │ ├── BRAuthenticationResources.h │ │ │ ├── BRAutoScrollingTextControl.h │ │ │ ├── BRBackgroundTask.h │ │ │ ├── BRBackgroundTaskManager.h │ │ │ ├── BRBaseAppliance.h │ │ │ ├── BRBaseMediaAsset.h │ │ │ ├── BRBaseMediaCollection.h │ │ │ ├── BRBaseMediaProvider.h │ │ │ ├── BRBaseMenuItemLayerPopulator.h │ │ │ ├── BRBaseMetadataPopulator.h │ │ │ ├── BRBaseParserDelegate.h │ │ │ ├── BRBlueGlowSelectionLozengeLayer.h │ │ │ ├── BRBlueGlowSelectionLozengeLayerBacking.h │ │ │ ├── BRBoxControl.h │ │ │ ├── BRBoxListControl.h │ │ │ ├── BRButtonControl.h │ │ │ ├── BRCacheCleaner.h │ │ │ ├── BRCappedFileCache.h │ │ │ ├── BRChapterGridItem.h │ │ │ ├── BRChapterSubtitleAudioPickerControl.h │ │ │ ├── BRCollectionMenuItemPopulator.h │ │ │ ├── BRComboMenuItemLayer.h │ │ │ ├── BRContentController.h │ │ │ ├── BRContextMenuControl.h │ │ │ ├── BRContextMenuUtility.h │ │ │ ├── BRControl.h │ │ │ ├── BRControlFactory.h │ │ │ ├── BRControlHeightFactory.h │ │ │ ├── BRControlLayer.h │ │ │ ├── BRControlMediator.h │ │ │ ├── BRController.h │ │ │ ├── BRControllerStack.h │ │ │ ├── BRCoverArtImageLayer.h │ │ │ ├── BRCoverArtPreviewControl.h │ │ │ ├── BRCrossfadeTransitionControl.h │ │ │ ├── BRCursorControl.h │ │ │ ├── BRCursorLayer.h │ │ │ ├── BRCyclerControl.h │ │ │ ├── BRDAAPMediaHost.h │ │ │ ├── BRDarwinNotificationTranslator.h │ │ │ ├── BRDataQueryController.h │ │ │ ├── BRDataStore.h │ │ │ ├── BRDataStoreProvider.h │ │ │ ├── BRDeletable.h │ │ │ ├── BRDependentProvider.h │ │ │ ├── BRDescriptionOverlayControl.h │ │ │ ├── BRDetailedMediaControl.h │ │ │ ├── BRDetailedMetadataControl.h │ │ │ ├── BRDetailedMusicMetadataControl.h │ │ │ ├── BRDeviceKeyboardMessage.h │ │ │ ├── BRDialog.h │ │ │ ├── BRDigitalExtrasController.h │ │ │ ├── BRDigitalExtrasMenuItemPopulator.h │ │ │ ├── BRDigitalExtrasWebControl.h │ │ │ ├── BRDisplayManager.h │ │ │ ├── BRDisplayMode.h │ │ │ ├── BRDisplayModeRefreshRateSortDescriptor.h │ │ │ ├── BRDividerControl.h │ │ │ ├── BRDividerProvider.h │ │ │ ├── BRDotArrayControl.h │ │ │ ├── BRDownload.h │ │ │ ├── BRDownloadManager.h │ │ │ ├── BRDownloadPlayableAlertControl.h │ │ │ ├── BRDropShadowControl.h │ │ │ ├── BRErrorControl.h │ │ │ ├── BREvent.h │ │ │ ├── BRFadeMaskLayer.h │ │ │ ├── BRFadeThroughBlackTransitionControl.h │ │ │ ├── BRFeatureManager.h │ │ │ ├── BRFileManager.h │ │ │ ├── BRFocusContainer.h │ │ │ ├── BRFocusEngine.h │ │ │ ├── BRFocusableImageControl.h │ │ │ ├── BRFontCache.h │ │ │ ├── BRFrontControl.h │ │ │ ├── BRFullScreenPhotoController.h │ │ │ ├── BRFullScreenPhotoControllerDelegate.h │ │ │ ├── BRGenre.h │ │ │ ├── BRGridControl.h │ │ │ ├── BRGridView.h │ │ │ ├── BRHDCPMonitor.h │ │ │ ├── BRHIDEvent.h │ │ │ ├── BRHeaderControl.h │ │ │ ├── BRHexInputMethod.h │ │ │ ├── BRHiddenSelectionMenuItem.h │ │ │ ├── BRHomeShareManager.h │ │ │ ├── BRHorizontalSegmentedWidget.h │ │ │ ├── BRIPConfiguration.h │ │ │ ├── BRITunesLibraryUtilitiesAccess.h │ │ │ ├── BRITunesUtilities.h │ │ │ ├── BRIconPreviewController.h │ │ │ ├── BRImage.h │ │ │ ├── BRImageAndSyncingPreviewController.h │ │ │ ├── BRImageControl.h │ │ │ ├── BRImageLoadDelegate.h │ │ │ ├── BRImageLoadJob.h │ │ │ ├── BRImageLoader.h │ │ │ ├── BRImageManager.h │ │ │ ├── BRImageProxy.h │ │ │ ├── BRImageProxyProvider.h │ │ │ ├── BRInitialImage.h │ │ │ ├── BRInputMethod.h │ │ │ ├── BRInternetRadioImageProxy.h │ │ │ ├── BRInvocationAnimationDelegate.h │ │ │ ├── BRInvocationSelectionHandler.h │ │ │ ├── BRJapaneseInputMethod.h │ │ │ ├── BRKeyValueObservationEntry.h │ │ │ ├── BRKeyValueObservingRegistry.h │ │ │ ├── BRKeyboard.h │ │ │ ├── BRKeyboardActionControl.h │ │ │ ├── BRKeyboardCandidates.h │ │ │ ├── BRKeyboardHex.h │ │ │ ├── BRKeyboardJapaneseFull.h │ │ │ ├── BRKeyboardJapaneseFullRoman.h │ │ │ ├── BRKeyboardJapaneseFullSymbols.h │ │ │ ├── BRKeyboardJapaneseRomanSquare.h │ │ │ ├── BRKeyboardJapaneseRomanSymbols.h │ │ │ ├── BRKeyboardJapaneseSquareHiragana.h │ │ │ ├── BRKeyboardNumbers.h │ │ │ ├── BRKeyboardRomanAccount.h │ │ │ ├── BRKeyboardRomanFull.h │ │ │ ├── BRKeyboardRomanSquare.h │ │ │ ├── BRKeyboardRomanSymbols.h │ │ │ ├── BRKeyboardRomanURL.h │ │ │ ├── BRKeyboardRomanURLActionKeysContainer.h │ │ │ ├── BRKeyboardRomanURLSymbols.h │ │ │ ├── BRKeyboardRomanURLUppercase.h │ │ │ ├── BRKeyboardRomanWeb.h │ │ │ ├── BRKeyboardRomanWebKeyContainer.h │ │ │ ├── BRLegacyProvider.h │ │ │ ├── BRListControl.h │ │ │ ├── BRListControlMonitor.h │ │ │ ├── BRListView.h │ │ │ ├── BRLocalizedStringManager.h │ │ │ ├── BRMainMenuControl.h │ │ │ ├── BRMainMenuControlFactory.h │ │ │ ├── BRMainMenuController.h │ │ │ ├── BRMainMenuImageControl.h │ │ │ ├── BRMainMenuSelectionHandler.h │ │ │ ├── BRMainMenuShelfControl.h │ │ │ ├── BRMainMenuShelfErrorControl.h │ │ │ ├── BRMappingDictionary.h │ │ │ ├── BRMarimbaMenuView.h │ │ │ ├── BRMarimbaSlideshowControl.h │ │ │ ├── BRMarqueeScrollingDelegate.h │ │ │ ├── BRMarqueeStack.h │ │ │ ├── BRMarqueeTextControl.h │ │ │ ├── BRMediaAccessUtilities.h │ │ │ ├── BRMediaAsset.h │ │ │ ├── BRMediaAssetDerivesMediaURL.h │ │ │ ├── BRMediaAssetDigitalExtraInfo.h │ │ │ ├── BRMediaAssetExpiryInfo.h │ │ │ ├── BRMediaCollection.h │ │ │ ├── BRMediaCollectionEditor.h │ │ │ ├── BRMediaCollectionGeniusInfo.h │ │ │ ├── BRMediaCollectionGeniusMixInfo.h │ │ │ ├── BRMediaCollectionType.h │ │ │ ├── BRMediaHost.h │ │ │ ├── BRMediaHostConnectionDialog.h │ │ │ ├── BRMediaHostDisconnectedDialog.h │ │ │ ├── BRMediaHostEvent.h │ │ │ ├── BRMediaHostState.h │ │ │ ├── BRMediaHostStateAvailable.h │ │ │ ├── BRMediaHostStateMountFailed.h │ │ │ ├── BRMediaHostStateMounted.h │ │ │ ├── BRMediaHostStateMounting.h │ │ │ ├── BRMediaHostStateUnavailable.h │ │ │ ├── BRMediaHostStateUnmounting.h │ │ │ ├── BRMediaHostWaitDialogFactory.h │ │ │ ├── BRMediaIdentityProtocol.h │ │ │ ├── BRMediaListControl.h │ │ │ ├── BRMediaLoading.h │ │ │ ├── BRMediaMenuController.h │ │ │ ├── BRMediaMenuView.h │ │ │ ├── BRMediaObject.h │ │ │ ├── BRMediaObjectButtonSelectionHandler.h │ │ │ ├── BRMediaObjectControlFactory.h │ │ │ ├── BRMediaObjectProvider.h │ │ │ ├── BRMediaParadeControl.h │ │ │ ├── BRMediaParadeLayer.h │ │ │ ├── BRMediaParadeProvider.h │ │ │ ├── BRMediaPlayer.h │ │ │ ├── BRMediaPlayerController.h │ │ │ ├── BRMediaPlayerControllerTransitionDelegate.h │ │ │ ├── BRMediaPlayerEventHandler.h │ │ │ ├── BRMediaPlayerManager.h │ │ │ ├── BRMediaPlayerWaitControl.h │ │ │ ├── BRMediaPreviewControlFactory.h │ │ │ ├── BRMediaProvider.h │ │ │ ├── BRMediaShareListController.h │ │ │ ├── BRMediaShelfControl.h │ │ │ ├── BRMediaShelfView.h │ │ │ ├── BRMediaType.h │ │ │ ├── BRMediaUtilities.h │ │ │ ├── BRMediatorProvider.h │ │ │ ├── BRMenuController.h │ │ │ ├── BRMenuItem.h │ │ │ ├── BRMenuItemLayerFactory.h │ │ │ ├── BRMenuItemMediator.h │ │ │ ├── BRMenuListItemProvider.h │ │ │ ├── BRMenuSavedState.h │ │ │ ├── BRMenuView.h │ │ │ ├── BRMerchant.h │ │ │ ├── BRMetadataControl.h │ │ │ ├── BRMetadataDetailChunkControl.h │ │ │ ├── BRMetadataDetailControl.h │ │ │ ├── BRMetadataLineLayer.h │ │ │ ├── BRMetadataLinesLayer.h │ │ │ ├── BRMetadataLongDescriptionControl.h │ │ │ ├── BRMetadataLongDescriptionPreviewControl.h │ │ │ ├── BRMetadataPopulator.h │ │ │ ├── BRMetadataPopulatorFactory.h │ │ │ ├── BRMetadataPreviewControl.h │ │ │ ├── BRMetadataPreviewControlFactory.h │ │ │ ├── BRMetadataTitleControl.h │ │ │ ├── BRModalDialog.h │ │ │ ├── BRModalOptionDialog.h │ │ │ ├── BRMovieMetadataPopulator.h │ │ │ ├── BRMovieRatingStringTransformer.h │ │ │ ├── BRMovieTrailer.h │ │ │ ├── BRMovieTrailerCollection.h │ │ │ ├── BRMovieTrailerMetadataPopulator.h │ │ │ ├── BRMovieTrailersProvider.h │ │ │ ├── BRMultiPartWidgetLayer.h │ │ │ ├── BRMusicAlbumMetadataPopulator.h │ │ │ ├── BRMusicContextMenuUtility.h │ │ │ ├── BRMusicNowPlayingControl.h │ │ │ ├── BRMusicNowPlayingLayer.h │ │ │ ├── BRMusicNowPlayingTransportLayer.h │ │ │ ├── BRMusicScrubber.h │ │ │ ├── BRMusicStore.h │ │ │ ├── BRMusicStoreUtility.h │ │ │ ├── BRMusicVideoMetadataPopulator.h │ │ │ ├── BRNetworkAlertController.h │ │ │ ├── BRNetworkMediaProvider.h │ │ │ ├── BRNowPlayingControlFactory.h │ │ │ ├── BRNowPlayingProvider.h │ │ │ ├── BROptionAlertControl.h │ │ │ ├── BROptionDialog.h │ │ │ ├── BRPagedView.h │ │ │ ├── BRPairingController.h │ │ │ ├── BRPairingPinControl.h │ │ │ ├── BRPanelControl.h │ │ │ ├── BRParentalControlManager.h │ │ │ ├── BRParentalControlsPasscodeChangedController.h │ │ │ ├── BRParentalControlsPasscodeController.h │ │ │ ├── BRPasscodeEntryControl.h │ │ │ ├── BRPasscodeSelectionLayer.h │ │ │ ├── BRPasscodeSelectionWidget.h │ │ │ ├── BRPercentageIndicatorLayer.h │ │ │ ├── BRPhotoBrowserBannerButton.h │ │ │ ├── BRPhotoBrowserControlFactory.h │ │ │ ├── BRPhotoBrowserController.h │ │ │ ├── BRPhotoBrowserCorkBoardControl.h │ │ │ ├── BRPhotoBrowserHeaderControl.h │ │ │ ├── BRPhotoCollectionDataStore.h │ │ │ ├── BRPhotoControlFactory.h │ │ │ ├── BRPhotoDataStoreProvider.h │ │ │ ├── BRPhotoDataStoreProviderForCollection.h │ │ │ ├── BRPhotoImageProxy.h │ │ │ ├── BRPhotoMediaAsset.h │ │ │ ├── BRPhotoMediaCollection.h │ │ │ ├── BRPhotoProvider.h │ │ │ ├── BRPhotoProviderForCollection.h │ │ │ ├── BRPhotoSelectionHandler.h │ │ │ ├── BRPhotoSubImageProxy.h │ │ │ ├── BRPlaylistDataStore.h │ │ │ ├── BRPlaylistItemsMenuConroller.h │ │ │ ├── BRPlaylistsControlFactory.h │ │ │ ├── BRPlaylistsMenuController.h │ │ │ ├── BRPodcastMetadataPopulator.h │ │ │ ├── BRPopPanelControl.h │ │ │ ├── BRPopUpManager.h │ │ │ ├── BRPosterControl.h │ │ │ ├── BRPosterControlFactory.h │ │ │ ├── BRPosterImageControl.h │ │ │ ├── BRPosterLayer.h │ │ │ ├── BRPosterReflectionControl.h │ │ │ ├── BRPreferenceManager.h │ │ │ ├── BRPreferences.h │ │ │ ├── BRPreviewBrowserControl.h │ │ │ ├── BRPreviewBrowserSelectionHandler.h │ │ │ ├── BRProgressBarWidget.h │ │ │ ├── BRProvider.h │ │ │ ├── BRProviderGroup.h │ │ │ ├── BRRSSMediaAsset.h │ │ │ ├── BRRSSMetadataPopulator.h │ │ │ ├── BRRadioMetadataPopulator.h │ │ │ ├── BRRecentAlbumsProvider.h │ │ │ ├── BRReflectedImageControl.h │ │ │ ├── BRReflectionControl.h │ │ │ ├── BRRemoteMediaHost.h │ │ │ ├── BRResolution.h │ │ │ ├── BRResponder.h │ │ │ ├── BRResumeMenuControl.h │ │ │ ├── BRRetailHiddenMenuItem.h │ │ │ ├── BRRomanInputMethod.h │ │ │ ├── BRRoundRectOutlineLayer.h │ │ │ ├── BRScalingLayoutManager.h │ │ │ ├── BRScrollControl.h │ │ │ ├── BRScrollingTextBoxControl.h │ │ │ ├── BRScrollingTextControl.h │ │ │ ├── BRScrollingTextControlFactory.h │ │ │ ├── BRScrollingTextControlSelectionHandler.h │ │ │ ├── BRScrollingTextPlane.h │ │ │ ├── BRScrollingTextTextProvider.h │ │ │ ├── BRSegmentedSortControl.h │ │ │ ├── BRSelectionHandler.h │ │ │ ├── BRSelectionLozengeLayer.h │ │ │ ├── BRSentinel.h │ │ │ ├── BRSeriesControlFactory.h │ │ │ ├── BRSeriesDataStore.h │ │ │ ├── BRSeriesMainMenuShelfSelectionHandler.h │ │ │ ├── BRSeriesMediaMenuController.h │ │ │ ├── BRSeriesMostRecentNoStoreProvider.h │ │ │ ├── BRSeriesProvider.h │ │ │ ├── BRSettingsFacade.h │ │ │ ├── BRShareManager.h │ │ │ ├── BRShimmerControl.h │ │ │ ├── BRSimpleMenuItem.h │ │ │ ├── BRSimpleMenuItemPopulator.h │ │ │ ├── BRSingleton.h │ │ │ ├── BRSlideshowSettingsController.h │ │ │ ├── BRSlideshowSettingsMusicController.h │ │ │ ├── BRSongMenuItemPopulator.h │ │ │ ├── BRSongMetadataPopulator.h │ │ │ ├── BRSoundHandler.h │ │ │ ├── BRSpacerControl.h │ │ │ ├── BRSpecialKeyRow.h │ │ │ ├── BRStandardCursorLayer.h │ │ │ ├── BRStatusAlertControl.h │ │ │ ├── BRStatusAlertControlDelegate.h │ │ │ ├── BRStreamingMediaAsset.h │ │ │ ├── BRStreamingMediaHost.h │ │ │ ├── BRStreamingPhotoAsset.h │ │ │ ├── BRStreamingPhotoCollection.h │ │ │ ├── BRSubsetProvider.h │ │ │ ├── BRSyncProgressControl.h │ │ │ ├── BRSyncingMediaHost.h │ │ │ ├── BRSystemLanguages.h │ │ │ ├── BRTVShowMetadataPopulator.h │ │ │ ├── BRTabControl.h │ │ │ ├── BRTabControlDelegate.h │ │ │ ├── BRTabControlItem.h │ │ │ ├── BRTaskManager.h │ │ │ ├── BRTextControl.h │ │ │ ├── BRTextEntryControl.h │ │ │ ├── BRTextEntryController.h │ │ │ ├── BRTextEntryCursorLayer.h │ │ │ ├── BRTextEntryDialog.h │ │ │ ├── BRTextField.h │ │ │ ├── BRTextFieldBackgroundLayer.h │ │ │ ├── BRTextFieldControl.h │ │ │ ├── BRTextFieldDelegate.h │ │ │ ├── BRTextLineControl.h │ │ │ ├── BRTextMenuItemControlFactory.h │ │ │ ├── BRTextWithSpinnerController.h │ │ │ ├── BRThemeInfo.h │ │ │ ├── BRThreadCallback.h │ │ │ ├── BRThreadNotificationManager.h │ │ │ ├── BRThresholdControlMediator.h │ │ │ ├── BRTileLayer.h │ │ │ ├── BRTiledLayer.h │ │ │ ├── BRTimer.h │ │ │ ├── BRTitleProvider.h │ │ │ ├── BRTopShelfRefreshTask.h │ │ │ ├── BRTopShelfView.h │ │ │ ├── BRTrackInfoControl.h │ │ │ ├── BRTrackInfoLayer.h │ │ │ ├── BRTrailerDelegate.h │ │ │ ├── BRTransientPlaybackRange.h │ │ │ ├── BRTransitionControl.h │ │ │ ├── BRTransportControl.h │ │ │ ├── BRTransportLayer.h │ │ │ ├── BRType.h │ │ │ ├── BRTypesetLine.h │ │ │ ├── BRTypesetter.h │ │ │ ├── BRURLDocument.h │ │ │ ├── BRURLDocumentManager.h │ │ │ ├── BRURLImageProxy.h │ │ │ ├── BRURLPlist.h │ │ │ ├── BRUnboundedSelectionLozengeLayer.h │ │ │ ├── BRUsageReporter.h │ │ │ ├── BRUsageReporterOptInDialog.h │ │ │ ├── BRVerticalScrollBarControl.h │ │ │ ├── BRVideoCacheManager.h │ │ │ ├── BRVideoCacheManagerDelegate.h │ │ │ ├── BRVideoChapterControlFactory.h │ │ │ ├── BRVideoChapterProvider.h │ │ │ ├── BRViewController.h │ │ │ ├── BRVolumeControl.h │ │ │ ├── BRWaitPromptControl.h │ │ │ ├── BRWaitSpinnerControl.h │ │ │ ├── BRWebControl.h │ │ │ ├── BRWebFocusContainer.h │ │ │ ├── BRWebFormHelper.h │ │ │ ├── BRWebMediaElementProxy.h │ │ │ ├── BRWebOverlayControl.h │ │ │ ├── BRWebPointerControl.h │ │ │ ├── BRWebWindowControl.h │ │ │ ├── BRWindow.h │ │ │ ├── BRXMLDocument.h │ │ │ ├── BRXMLElement.h │ │ │ ├── BRXMLImageProxy.h │ │ │ ├── BRXMLMediaAsset.h │ │ │ ├── BRXMLNode.h │ │ │ ├── BRYTMetadataPopulator.h │ │ │ ├── BRZoomTransitionControl.h │ │ │ ├── BackRow-Structs.h │ │ │ ├── BackRow.h │ │ │ ├── CALayer.h │ │ │ ├── DOMDocument.h │ │ │ ├── DOMEventBridge.h │ │ │ ├── DOMEventListener.h │ │ │ ├── DOMHTMLAnchorElement.h │ │ │ ├── DOMHTMLInputElement.h │ │ │ ├── DOMHTMLObjectElement.h │ │ │ ├── DOMHTMLSelectElement.h │ │ │ ├── DOMHTMLTextAreaElement.h │ │ │ ├── DOMNode.h │ │ │ ├── ListAnimationDelegate.h │ │ │ ├── ListViewAnimationDelegate.h │ │ │ ├── ScrollAnimationDelegate.h │ │ │ └── WebWindowDelegate.h │ │ ├── DHCommon.h │ │ ├── DHHookCommon.h │ │ ├── nlist.h │ │ └── substrate.h │ │ ├── lib │ │ ├── .keep │ │ └── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base │ │ │ └── .keep.svn-base │ │ ├── makefiles │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── entries │ │ │ └── text-base │ │ │ │ ├── aggregate.mk.svn-base │ │ │ │ ├── application.mk.svn-base │ │ │ │ ├── bundle.mk.svn-base │ │ │ │ ├── common.mk.svn-base │ │ │ │ ├── framework.mk.svn-base │ │ │ │ ├── library.mk.svn-base │ │ │ │ ├── messages.mk.svn-base │ │ │ │ ├── null.mk.svn-base │ │ │ │ ├── package.mk.svn-base │ │ │ │ ├── rules.mk.svn-base │ │ │ │ ├── subproject.mk.svn-base │ │ │ │ ├── tool.mk.svn-base │ │ │ │ └── tweak.mk.svn-base │ │ ├── aggregate.mk │ │ ├── application.mk │ │ ├── bundle.mk │ │ ├── common.mk │ │ ├── framework.mk │ │ ├── instance │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── application.mk.svn-base │ │ │ │ │ ├── bundle.mk.svn-base │ │ │ │ │ ├── framework.mk.svn-base │ │ │ │ │ ├── library.mk.svn-base │ │ │ │ │ ├── null.mk.svn-base │ │ │ │ │ ├── rules.mk.svn-base │ │ │ │ │ ├── subproject.mk.svn-base │ │ │ │ │ ├── tool.mk.svn-base │ │ │ │ │ └── tweak.mk.svn-base │ │ │ ├── application.mk │ │ │ ├── bundle.mk │ │ │ ├── framework.mk │ │ │ ├── library.mk │ │ │ ├── null.mk │ │ │ ├── rules.mk │ │ │ ├── shared │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── bundle.mk.svn-base │ │ │ │ └── bundle.mk │ │ │ ├── subproject.mk │ │ │ ├── tool.mk │ │ │ └── tweak.mk │ │ ├── library.mk │ │ ├── master │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── aggregate.mk.svn-base │ │ │ │ │ ├── application.mk.svn-base │ │ │ │ │ ├── bundle.mk.svn-base │ │ │ │ │ ├── framework.mk.svn-base │ │ │ │ │ ├── library.mk.svn-base │ │ │ │ │ ├── null.mk.svn-base │ │ │ │ │ ├── rules.mk.svn-base │ │ │ │ │ ├── subproject.mk.svn-base │ │ │ │ │ ├── tool.mk.svn-base │ │ │ │ │ └── tweak.mk.svn-base │ │ │ ├── aggregate.mk │ │ │ ├── application.mk │ │ │ ├── bundle.mk │ │ │ ├── framework.mk │ │ │ ├── library.mk │ │ │ ├── null.mk │ │ │ ├── rules.mk │ │ │ ├── subproject.mk │ │ │ ├── tool.mk │ │ │ └── tweak.mk │ │ ├── messages.mk │ │ ├── null.mk │ │ ├── package.mk │ │ ├── platform │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── Darwin-arm.mk.svn-base │ │ │ │ │ ├── Darwin.mk.svn-base │ │ │ │ │ └── Linux.mk.svn-base │ │ │ ├── Darwin-arm.mk │ │ │ ├── Darwin.mk │ │ │ └── Linux.mk │ │ ├── rules.mk │ │ ├── subproject.mk │ │ ├── targets │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ └── entries │ │ │ ├── Darwin-arm │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── iphone.mk.svn-base │ │ │ │ │ │ └── native.mk.svn-base │ │ │ │ ├── iphone.mk │ │ │ │ └── native.mk │ │ │ ├── Darwin │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── iphone.mk.svn-base │ │ │ │ │ │ ├── macosx.mk.svn-base │ │ │ │ │ │ ├── native.mk.svn-base │ │ │ │ │ │ └── simulator.mk.svn-base │ │ │ │ ├── iphone.mk │ │ │ │ ├── macosx.mk │ │ │ │ ├── native.mk │ │ │ │ └── simulator.mk │ │ │ ├── Linux │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── iphone.mk.svn-base │ │ │ │ │ │ ├── linux.mk.svn-base │ │ │ │ │ │ └── native.mk.svn-base │ │ │ │ ├── iphone.mk │ │ │ │ ├── linux.mk │ │ │ │ └── native.mk │ │ │ └── _common │ │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── entries │ │ │ │ └── text-base │ │ │ │ │ ├── darwin.mk.svn-base │ │ │ │ │ ├── install_deb_local.mk.svn-base │ │ │ │ │ ├── install_deb_remote.mk.svn-base │ │ │ │ │ └── linux.mk.svn-base │ │ │ │ ├── darwin.mk │ │ │ │ ├── install_deb_local.mk │ │ │ │ ├── install_deb_remote.mk │ │ │ │ └── linux.mk │ │ ├── tool.mk │ │ └── tweak.mk │ │ ├── mod │ │ └── .svn │ │ │ ├── all-wcprops │ │ │ └── entries │ │ └── templates │ │ ├── .svn │ │ ├── all-wcprops │ │ └── entries │ │ └── iphone │ │ ├── .svn │ │ ├── all-wcprops │ │ ├── entries │ │ └── text-base │ │ │ ├── application.nic.svn-base │ │ │ ├── library.nic.svn-base │ │ │ ├── preference_bundle.nic.svn-base │ │ │ ├── tool.nic.svn-base │ │ │ └── tweak.nic.svn-base │ │ ├── application.nic │ │ ├── library.nic │ │ ├── preference_bundle.nic │ │ ├── tool.nic │ │ └── tweak.nic ├── SPOptionDialog.h ├── SPOptionDialog.m ├── SPPrefix.pch ├── control └── sp.png ├── SPButton.h ├── SPButton.m ├── SPFWButton.h ├── SPFWButton.m ├── SPMenuItem.h ├── SPMenuItem.m ├── Seas0nPass.icns ├── Sparkle.framework ├── Headers ├── Modules ├── PrivateHeaders ├── Resources ├── Sparkle └── Versions │ ├── A │ ├── Headers │ │ ├── SUAppcast.h │ │ ├── SUAppcastItem.h │ │ ├── SUErrors.h │ │ ├── SUExport.h │ │ ├── SUStandardVersionComparator.h │ │ ├── SUUpdater.h │ │ ├── SUVersionComparisonProtocol.h │ │ ├── SUVersionDisplayProtocol.h │ │ └── Sparkle.h │ ├── Modules │ │ └── module.modulemap │ ├── PrivateHeaders │ │ └── SUUnarchiver.h │ ├── Resources │ │ ├── Autoupdate.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── Autoupdate │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ ├── AppIcon.icns │ │ │ │ ├── SUStatus.nib │ │ │ │ ├── ar.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ca.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── cs.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── da.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── de.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── el.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── en.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── es.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fi.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fr.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── he.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── is.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── it.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ja.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ko.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── nb.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── nl.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pl.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt_BR.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt_PT.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ro.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ru.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sk.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sl.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sv.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── th.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── tr.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── uk.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ ├── zh_CN.lproj │ │ │ │ └── Sparkle.strings │ │ │ │ └── zh_TW.lproj │ │ │ │ └── Sparkle.strings │ │ ├── Info.plist │ │ ├── SUModelTranslation.plist │ │ ├── SUStatus.nib │ │ ├── ar.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ca.lproj │ │ │ └── Sparkle.strings │ │ ├── cs.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── da.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── de.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── el.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── en.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── es.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── fi.lproj │ │ │ └── Sparkle.strings │ │ ├── fr.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── fr_CA.lproj │ │ ├── he.lproj │ │ │ └── Sparkle.strings │ │ ├── is.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── it.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ja.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ko.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── nb.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── nl.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── pl.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── pt.lproj │ │ ├── pt_BR.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── pt_PT.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ro.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── ru.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── sk.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── sl.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── sv.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── th.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── tr.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── uk.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ ├── zh_CN.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ │ └── zh_TW.lproj │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ ├── SUUpdateAlert.nib │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ └── Sparkle.strings │ ├── Sparkle │ └── _CodeSignature │ │ └── CodeResources │ └── Current ├── TSS ├── .svn │ ├── all-wcprops │ ├── entries │ └── text-base │ │ ├── TSSCommon.h.svn-base │ │ ├── TSSCommon.m.svn-base │ │ ├── TSSHelper.m.svn-base │ │ ├── TSSManager.h.svn-base │ │ ├── TSSManager.mm.svn-base │ │ ├── TSSWorker.h.svn-base │ │ └── TSSWorker.m.svn-base ├── TSSCategories.h ├── TSSCategories.m ├── TSSCommon.h ├── TSSCommon.m ├── TSSHelper.m ├── TSSManager.h ├── TSSManager.mm ├── TSSWorker.h └── TSSWorker.m ├── archives └── Cydia.tgz ├── atvfix.diff ├── bin ├── genpass ├── idr │ ├── idevicerestore │ ├── libcrypto.1.0.0.dylib │ ├── libcurl.4.dylib │ ├── libiconv.2.dylib │ ├── libidn.11.dylib │ ├── libimobiledevice.4.dylib │ ├── libintl.8.dylib │ ├── libirecovery.1.dylib │ ├── liblzma.5.dylib │ ├── libplist.1.dylib │ ├── libssl.1.0.0.dylib │ ├── libusb-1.0.0.dylib │ ├── libusbmuxd.2.dylib │ ├── libxml2.2.dylib │ ├── libz.1.dylib │ └── libzip.2.dylib ├── imagetool ├── lib │ └── libpng12.0.dylib ├── vfdecrypt └── xpwntool ├── bundles ├── AppleTV2,1_4.1_8M89.bundle │ ├── Info.plist │ ├── Lowtide.patch │ ├── Services.patch │ ├── asr.patch │ ├── fstab.patch │ ├── iBSS.k66ap.RELEASE.patch │ ├── libgmalloc.dylib │ ├── pf2 │ └── restored.patch ├── AppleTV2,1_4.2.1_8C154.bundle │ ├── AppleTV.patch │ ├── Info.plist │ ├── Services.patch │ ├── asr.patch │ ├── fstab.patch │ ├── hfs_mdb │ ├── iBSS.k66ap.RELEASE.patch │ ├── kern_sploit │ ├── punchd │ └── restored.patch ├── AppleTV2,1_4.2_8C150.bundle │ ├── Info.plist │ ├── Services.patch │ ├── asr.patch │ ├── fstab.patch │ └── iBSS.k66ap.RELEASE.patch ├── AppleTV2,1_4.3_8F191m.bundle │ ├── AppleTV.patch │ ├── Info.plist │ ├── Services.patch │ ├── asr.patch │ ├── fstab.patch │ └── iBSS.k66ap.RELEASE.patch ├── AppleTV2,1_4.3_8F202.bundle │ ├── AppleTV.patch │ ├── Info.plist │ ├── Services.patch │ ├── asr.patch │ ├── crunchd │ ├── fstab.patch │ └── iBSS.k66ap.RELEASE.patch ├── AppleTV2,1_4.3_8F305.bundle │ ├── AppleTV.patch │ ├── Info.plist │ ├── Services.patch │ ├── asr.patch │ ├── crunchd │ ├── fstab.patch │ └── iBSS.k66ap.RELEASE.patch ├── AppleTV2,1_4.3_8F455.bundle │ ├── AppleTV.patch │ ├── Info.plist │ ├── asr.patch │ ├── fstab.patch │ ├── iBSS.k66ap.RELEASE.patch │ ├── saffron.deb │ └── saffron.tgz ├── AppleTV2,1_4.4.1_9A335a.bundle │ ├── AppleTV.patch │ ├── Info.plist │ ├── asr.patch │ ├── fstab.patch │ ├── iBEC.k66ap.RELEASE.patch │ ├── iBSS.k66ap.RELEASE.patch │ └── kernelcache.release.patch ├── AppleTV2,1_4.4.2_9A336a.bundle │ ├── AppleTV.patch │ ├── Info.plist │ ├── asr.patch │ ├── fstab.patch │ ├── iBEC.k66ap.RELEASE.patch │ ├── iBSS.k66ap.RELEASE.patch │ └── kernelcache.release.patch ├── AppleTV2,1_4.4.3_9A405l.bundle │ ├── AppleTV.patch │ ├── Info.plist │ ├── asr.patch │ ├── corona.tgz │ ├── fstab.patch │ ├── iBEC.k66ap.RELEASE.patch │ ├── iBSS.k66ap.RELEASE.patch │ └── racoon.patch ├── AppleTV2,1_4.4.4_9A406a.bundle │ ├── AppleTV.patch │ ├── Info.plist │ ├── asr.patch │ ├── corona.tgz │ ├── fstab.patch │ ├── iBEC.k66ap.RELEASE.patch │ ├── iBSS.k66ap.RELEASE.patch │ ├── kernelcache.release.patch │ └── racoon.patch ├── AppleTV2,1_4.4_9A334v.bundle │ ├── AppleTV.patch │ ├── Info.plist │ ├── asr.patch │ ├── fstab.patch │ ├── iBEC.k66ap.RELEASE.patch │ ├── iBSS.k66ap.RELEASE.patch │ └── kernelcache.release.patch ├── AppleTV2,1_5.0.2_9B830.bundle │ ├── Info.plist │ ├── asr.patch │ ├── fstab.patch │ ├── iBEC.k66ap.RELEASE.patch │ ├── iBSS.k66ap.RELEASE.patch │ ├── racoon.patch │ └── rocky.tgz ├── AppleTV2,1_5.0_9B179b.bundle │ ├── Info.plist │ ├── asr.patch │ ├── fstab.patch │ ├── iBEC.k66ap.RELEASE.patch │ ├── iBSS.k66ap.RELEASE.patch │ └── kernelcache.release.patch ├── AppleTV2,1_5.0_9B206f.bundle │ ├── Info.plist │ ├── asr.patch │ ├── fstab.patch │ ├── iBEC.k66ap.RELEASE.patch │ ├── iBSS.k66ap.RELEASE.patch │ ├── racoon.patch │ └── rocky.tgz ├── AppleTV2,1_5.1.1_10A831.bundle │ ├── Info.plist │ ├── Services.patch │ ├── asr.patch │ ├── evasi0n.tgz │ ├── fstab.patch │ ├── iBEC.k66ap.RELEASE.patch │ ├── iBSS.k66ap.RELEASE.patch │ └── restored_external.patch ├── AppleTV2,1_5.1_10A406e.bundle │ ├── Info.plist │ ├── Services.patch │ ├── asr.patch │ ├── evasi0n.tgz │ ├── fstab.patch │ ├── iBEC.k66ap.RELEASE.patch │ ├── iBSS.k66ap.RELEASE.patch │ └── restored_external.patch ├── AppleTV2,1_5.2.1_10B329a.bundle │ ├── AppleTV.patch │ ├── Info.plist │ ├── Services.patch │ ├── asr.patch │ ├── fstab.patch │ ├── iBEC.k66ap.RELEASE.patch │ ├── iBSS.k66ap.RELEASE.patch │ └── restored_external.patch ├── AppleTV2,1_5.2_10B144b.bundle │ ├── AppleTV.patch │ ├── Info.plist │ ├── Services.patch │ ├── asr.patch │ ├── evasi0n.tgz │ ├── fstab.patch │ ├── iBEC.k66ap.RELEASE.patch │ ├── iBSS.k66ap.RELEASE.patch │ └── restored_external.patch ├── AppleTV2,1_5.3_10B809.bundle │ ├── AppleTV.patch │ ├── Info.plist │ ├── Services.patch │ ├── asr.patch │ ├── fstab.patch │ ├── iBEC.k66ap.RELEASE.patch │ ├── iBSS.k66ap.RELEASE.patch │ ├── p0sixspwn.tgz │ └── restored_external.patch └── AppleTV2,1_6.2.1_11D258.bundle │ ├── AppleTV.patch │ ├── Info.plist │ ├── Services.patch │ ├── asr.patch │ ├── dirhelper │ ├── iBEC.k66ap.RELEASE.patch │ ├── iBSS.k66ap.RELEASE.patch │ └── restored_external.patch ├── debs ├── asubstratesafe.deb ├── awkwardtv.deb ├── bsubstrate.deb ├── com.firecore.seas0npass_0.1.3-12_iphoneos-arm.deb └── com.nito.tssagent_1.3-13_iphoneos-arm.deb ├── deprecatedDebs ├── Seas0nPass.deb ├── beigelist_2.0.99-2_iphoneos-arm.deb ├── beigelist_2.1-2_iphoneos-arm.deb ├── com.nito.gs_0.1-4_iphoneos-arm.deb ├── com.whatanutbar.exposed._0.6_iphoneos-arm.deb └── sysmbootstrap.deb ├── iFaith-Certs ├── s5l8930x_DataCenter.bin └── s5l8930x_Factory.bin ├── idevicerestore build.txt ├── include ├── Win32 │ ├── getopt.h │ ├── inttypes.h │ ├── libgen.h │ ├── stdbool.h │ └── unistd.h ├── common.h ├── exploits.h ├── libirecovery.h ├── libpartial.h ├── libpois0n.h ├── libusb-1.0 │ ├── config.h │ ├── libusb.h │ ├── libusbi.h │ └── os │ │ ├── darwin_usb.h │ │ └── linux_usbfs.h ├── payloads.h ├── payloads │ ├── iBSS.k48ap.h │ ├── iBSS.k66ap.h │ ├── iBSS.n18ap.h │ ├── iBSS.n72ap.h │ ├── iBSS.n81ap.h │ ├── iBSS.n88ap.h │ ├── iBSS.n90ap.h │ ├── iBoot.k48ap.h │ ├── iBoot.k66ap.h │ ├── iBoot.n18ap.h │ ├── iBoot.n72ap.h │ ├── iBoot.n81ap.h │ ├── iBoot.n88ap.h │ └── iBoot.n90ap.h └── resources │ └── ramdisk.h ├── ipsw.png ├── libsyringe.a ├── libusb-1.0.0.dylib ├── libusb-1.0.a ├── main.m ├── nitoUtility.h ├── nitoUtility.m ├── patches ├── asr.patch ├── fstab.patch ├── iBSS.patch └── status.patch ├── payload.bin ├── pony ├── Makefile ├── apocalypsePony.plist ├── apocalypsePony.xm └── layout │ ├── DEBIAN │ └── control │ └── var │ └── mobile │ └── Media │ └── Photos │ ├── seas0nTV.png │ └── spicon.png ├── pwnHelper.m ├── pwnHelperClass.h ├── pwnHelperClass.m ├── restore.png ├── ripURL.h ├── ripURL.m ├── scripts ├── space.sh └── space60.sh ├── success.png ├── tether.png ├── tetherKit-Info.plist ├── tetherKit.xcodeproj ├── kevinbradley.pbxuser ├── kevinbradley.perspectivev3 └── project.pbxproj ├── tetherKitAppDelegate.h ├── tetherKitAppDelegate.m ├── tetherKit_Prefix.pch ├── tetheredRemote.png ├── untethered.jpg └── untethered.png /.gitignore: -------------------------------------------------------------------------------- 1 | 4.3* 2 | Cydia* 3 | build* 4 | bunk* 5 | lowtide 6 | *Cydia* 7 | punchd 8 | services 9 | -------------------------------------------------------------------------------- /English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /FWManager.h: -------------------------------------------------------------------------------- 1 | // 2 | // FWManager.h 3 | // tetherKit 4 | // 5 | // Created by Kevin Bradley on 12/29/10. 6 | // Copyright 2011 Fire Core, LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface FWManager : NSObject { 13 | 14 | } 15 | 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /FWManager.m: -------------------------------------------------------------------------------- 1 | // 2 | // FWManager.m 3 | // tetherKit 4 | // 5 | // Created by Kevin Bradley on 12/29/10. 6 | // Copyright 2011 Fire Core, LLC. All rights reserved. 7 | // 8 | 9 | #import "FWManager.h" 10 | 11 | 12 | @implementation FWManager 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /NSApplication+SystemVersion.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface NSApplication (SystemVersion) 4 | 5 | - (void)getSystemVersionMajor:(unsigned *)major 6 | minor:(unsigned *)minor 7 | bugFix:(unsigned *)bugFix; 8 | 9 | @end 10 | 11 | 12 | -------------------------------------------------------------------------------- /NSData+Flip.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSData+Flip.h 3 | // tetherKit 4 | // 5 | // Created by Kevin Bradley on 1/26/12. 6 | // Copyright 2012 FireCore, LLC. All rights reserved. 7 | // 8 | 9 | 10 | @interface NSData (myAdditions) 11 | 12 | - (NSData *)byteFlipped; 13 | + (NSData *)dataFromStringHex:(NSString *)command; 14 | - (NSData *)reverse; 15 | - (NSString *)decimalString; 16 | @end 17 | 18 | 19 | -------------------------------------------------------------------------------- /NSString+Extensions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+Extensions.h 3 | // tetherKit 4 | // 5 | // Created by Kevin Bradley on 4/6/13. 6 | // Copyright 2013 FireCore, LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface NSString (specialData) 13 | 14 | - (NSString *)hexToString; 15 | - (NSData *) stringToHexData; 16 | - (NSString *)stringToPaddedHex; 17 | @end 18 | 19 | @interface NSXMLDocument (specialData) 20 | 21 | - (NSDictionary *)iFaithDictionaryRepresentation; 22 | 23 | @end 24 | 25 | -------------------------------------------------------------------------------- /SPAppliance/BackRowExtras.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | template 4 | static inline Type_ &MSHookIvar(id self, const char *name) { 5 | Ivar ivar(class_getInstanceVariable(object_getClass(self), name)); 6 | void *pointer(ivar == NULL ? NULL : reinterpret_cast(self) + ivar_getOffset(ivar)); 7 | return *reinterpret_cast(pointer); 8 | } 9 | -------------------------------------------------------------------------------- /SPAppliance/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleName = "Seas0nPass"; 4 | NSHumanReadableCopyright = "Copyright © 2011, Firecore, LLC"; -------------------------------------------------------------------------------- /SPAppliance/SPHelper/SPHelperClass.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | @interface SPHelperClass : NSObject { 4 | 5 | 6 | 7 | } 8 | 9 | - (int)removePackage:(NSString *)packageId; 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/SPHelperClass.m: -------------------------------------------------------------------------------- 1 | 2 | 3 | #import "SPHelperClass.h" 4 | 5 | 6 | 7 | @implementation SPHelperClass 8 | 9 | 10 | 11 | - (int)removePackage:(NSString *)packageId 12 | { 13 | 14 | NSString *removeString = [NSString stringWithFormat:@"/usr/bin/apt-get -y --force-yes remove %@ 2>&1", packageId]; 15 | int sysReturn = system([removeString UTF8String]); 16 | //NSLog(@"remove %@ returned with %i", installString, sysReturn); 17 | return sysReturn; 18 | 19 | } 20 | 21 | 22 | 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 65 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos 5 | END 6 | LICENSE 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 73 10 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/LICENSE 11 | END 12 | Prefix.pch 13 | K 25 14 | svn:wc:ra_dav:version-url 15 | V 76 16 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/Prefix.pch 17 | END 18 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/prop-base/deb_build_num.sh.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/prop-base/denicify.pl.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/prop-base/fakeroot.sh.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/prop-base/install.copyFile.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/prop-base/install.exec.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/prop-base/install.mergeDir.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/prop-base/logify.pl.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/prop-base/logos.pl.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/prop-base/nic.pl.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/prop-base/nicify.pl.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/prop-base/package_version.sh.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/prop-base/plistkey.py.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/text-base/install.copyFile.svn-base: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | if [[ TARGET_REMOTE -eq 1 ]]; then 3 | scp -P $FW_DEVICE_PORT $1 root@$FW_DEVICE_IP:$2 4 | else 5 | cp $1 $2 6 | fi 7 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/text-base/install.exec.svn-base: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | if [[ TARGET_REMOTE -eq 1 ]]; then 3 | ssh -p $FW_DEVICE_PORT root@$FW_DEVICE_IP "$*" 4 | else 5 | $* 6 | fi 7 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/text-base/install.mergeDir.svn-base: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd $1 3 | # Use fakeroot.sh to ensure that permissions are preserved, and install.exec to ensure that we are running tar -x on the right system. 4 | fakeroot.sh -r tar -c . | install.exec tar -x -C $2 5 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/.svn/text-base/plistkey.py.svn-base: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import plistlib, sys 3 | 4 | if len(sys.argv) < 4: 5 | print 'Syntax:', sys.argv[0], 'plist key value' 6 | sys.exit(1) 7 | 8 | filename = sys.argv[1] 9 | key = sys.argv[2] 10 | value = sys.argv[3] 11 | maindict = plistlib.readPlist(filename) 12 | maindict[key] = value 13 | plistlib.writePlist(maindict, filename) 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/install.copyFile: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | if [[ TARGET_REMOTE -eq 1 ]]; then 3 | scp -P $FW_DEVICE_PORT $1 root@$FW_DEVICE_IP:$2 4 | else 5 | cp $1 $2 6 | fi 7 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/install.exec: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | if [[ TARGET_REMOTE -eq 1 ]]; then 3 | ssh -p $FW_DEVICE_PORT root@$FW_DEVICE_IP "$*" 4 | else 5 | $* 6 | fi 7 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/install.mergeDir: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd $1 3 | # Use fakeroot.sh to ensure that permissions are preserved, and install.exec to ensure that we are running tar -x on the right system. 4 | fakeroot.sh -r tar -c . | install.exec tar -x -C $2 5 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/lib/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 73 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/bin/lib 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/lib/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 16 5 | https://pl3.projectlocker.com/abathingchris/nito/svn/nitoTV3/trunk/nitoHelper/theos/bin/lib 6 | https://pl3.projectlocker.com/abathingchris/nito/svn 7 | 8 | 9 | 10 | 2010-12-10T00:55:03.828969Z 11 | 3 12 | chris.long@mac.com 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | caa9a463-b487-4ceb-abff-6809e25550c1 28 | 29 | Logos 30 | dir 31 | 32 | NIC 33 | dir 34 | 35 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/lib/Logos/Generator/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 89 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/bin/lib/Logos/Generator 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/lib/Logos/Generator/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 16 5 | https://pl3.projectlocker.com/abathingchris/nito/svn/nitoTV3/trunk/nitoHelper/theos/bin/lib/Logos/Generator 6 | https://pl3.projectlocker.com/abathingchris/nito/svn 7 | 8 | 9 | 10 | 2010-12-10T00:55:03.828969Z 11 | 3 12 | chris.long@mac.com 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | caa9a463-b487-4ceb-abff-6809e25550c1 28 | 29 | MobileSubstrate 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/lib/Logos/Generator/MobileSubstrate/.svn/text-base/Base.pm.svn-base: -------------------------------------------------------------------------------- 1 | package Generator; 2 | use strict; 3 | 4 | sub generateClassList { 5 | shift; 6 | my $return = ""; 7 | map $return .= "\@class $_; ", @_; 8 | return $return; 9 | } 10 | 11 | sub classReferenceWithScope { 12 | shift; 13 | my $classname = shift; 14 | my $scope = shift; 15 | my $prefix = "\$"; 16 | if($scope eq "+") { 17 | $prefix = "\$meta\$"; 18 | } 19 | return $prefix.$classname; 20 | } 21 | 22 | 1; 23 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/lib/Logos/Generator/MobileSubstrate/Base.pm: -------------------------------------------------------------------------------- 1 | package Generator; 2 | use strict; 3 | 4 | sub generateClassList { 5 | shift; 6 | my $return = ""; 7 | map $return .= "\@class $_; ", @_; 8 | return $return; 9 | } 10 | 11 | sub classReferenceWithScope { 12 | shift; 13 | my $classname = shift; 14 | my $scope = shift; 15 | my $prefix = "\$"; 16 | if($scope eq "+") { 17 | $prefix = "\$meta\$"; 18 | } 19 | return $prefix.$classname; 20 | } 21 | 22 | 1; 23 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/lib/NIC/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 77 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/bin/lib/NIC 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/lib/NIC/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 16 5 | https://pl3.projectlocker.com/abathingchris/nito/svn/nitoTV3/trunk/nitoHelper/theos/bin/lib/NIC 6 | https://pl3.projectlocker.com/abathingchris/nito/svn 7 | 8 | 9 | 10 | 2010-12-10T00:55:03.828969Z 11 | 3 12 | chris.long@mac.com 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | caa9a463-b487-4ceb-abff-6809e25550c1 28 | 29 | Formats 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/lib/NIC/Formats/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 85 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/bin/lib/NIC/Formats 5 | END 6 | NIC1.pm 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 93 10 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/bin/lib/NIC/Formats/NIC1.pm 11 | END 12 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/bin/plistkey.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import plistlib, sys 3 | 4 | if len(sys.argv) < 4: 5 | print 'Syntax:', sys.argv[0], 'plist key value' 6 | sys.exit(1) 7 | 8 | filename = sys.argv[1] 9 | key = sys.argv[2] 10 | value = sys.argv[3] 11 | maindict = plistlib.readPlist(filename) 12 | maindict[key] = value 13 | plistlib.writePlist(maindict, filename) 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/documentation/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 79 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/documentation 5 | END 6 | makefiles.docbook 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 97 10 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/documentation/makefiles.docbook 11 | END 12 | Makefile 13 | K 25 14 | svn:wc:ra_dav:version-url 15 | V 88 16 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/documentation/Makefile 17 | END 18 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/documentation/.svn/text-base/Makefile.svn-base: -------------------------------------------------------------------------------- 1 | all: makefiles.html 2 | 3 | %.html: %.docbook 4 | xsltproc --output $@ /usr/share/sgml/docbook/xsl-stylesheets/xhtml/docbook.xsl $< 5 | 6 | clean: 7 | rm *.html 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/documentation/Makefile: -------------------------------------------------------------------------------- 1 | all: makefiles.html 2 | 3 | %.html: %.docbook 4 | xsltproc --output $@ /usr/share/sgml/docbook/xsl-stylesheets/xhtml/docbook.xsl $< 5 | 6 | clean: 7 | rm *.html 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/extras/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 72 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/extras 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/extras/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 16 5 | https://pl3.projectlocker.com/abathingchris/nito/svn/nitoTV3/trunk/nitoHelper/theos/extras 6 | https://pl3.projectlocker.com/abathingchris/nito/svn 7 | 8 | 9 | 10 | 2010-12-10T00:55:03.828969Z 11 | 3 12 | chris.long@mac.com 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | caa9a463-b487-4ceb-abff-6809e25550c1 28 | 29 | vim 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/extras/vim/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 76 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/extras/vim 5 | END 6 | README 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 83 10 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/extras/vim/README 11 | END 12 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/extras/vim/.svn/text-base/README.svn-base: -------------------------------------------------------------------------------- 1 | Place the following in filetype.vim. 2 | 3 | au BufNewFile,BufRead *.xm,*.xmm,*.l.mm setf logos 4 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/extras/vim/README: -------------------------------------------------------------------------------- 1 | Place the following in filetype.vim. 2 | 3 | au BufNewFile,BufRead *.xm,*.xmm,*.l.mm setf logos 4 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/extras/vim/ftplugin/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 85 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/extras/vim/ftplugin 5 | END 6 | logos.vim 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 95 10 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/extras/vim/ftplugin/logos.vim 11 | END 12 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/extras/vim/ftplugin/.svn/text-base/logos.vim.svn-base: -------------------------------------------------------------------------------- 1 | " Vim filetype plugin file 2 | " Language: Logos (Objective-C++) 3 | " Maintainer: Dustin Howett 4 | " Latest Revision: December 22, 2009 5 | 6 | if exists("b:did_ftplugin") 7 | finish 8 | endif 9 | 10 | " Behaves just like Objective-C 11 | runtime! ftplugin/objc.vim 12 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/extras/vim/ftplugin/logos.vim: -------------------------------------------------------------------------------- 1 | " Vim filetype plugin file 2 | " Language: Logos (Objective-C++) 3 | " Maintainer: Dustin Howett 4 | " Latest Revision: December 22, 2009 5 | 6 | if exists("b:did_ftplugin") 7 | finish 8 | endif 9 | 10 | " Behaves just like Objective-C 11 | runtime! ftplugin/objc.vim 12 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/extras/vim/indent/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 83 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/extras/vim/indent 5 | END 6 | logos.vim 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 93 10 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/extras/vim/indent/logos.vim 11 | END 12 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/extras/vim/indent/.svn/text-base/logos.vim.svn-base: -------------------------------------------------------------------------------- 1 | " Vim filetype plugin file 2 | " Language: Logos (Objective-C++) 3 | " Maintainer: Dustin Howett 4 | " Latest Revision: December 22, 2009 5 | 6 | runtime! indent/objc.vim 7 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/extras/vim/indent/logos.vim: -------------------------------------------------------------------------------- 1 | " Vim filetype plugin file 2 | " Language: Logos (Objective-C++) 3 | " Maintainer: Dustin Howett 4 | " Latest Revision: December 22, 2009 5 | 6 | runtime! indent/objc.vim 7 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/extras/vim/syntax/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 83 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/extras/vim/syntax 5 | END 6 | logos.vim 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 93 10 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/extras/vim/syntax/logos.vim 11 | END 12 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/.svn/prop-base/substrate.h.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRATVMediaItem.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BackRow-Structs.h" 9 | 10 | 11 | @protocol BRATVMediaItem 12 | - (ATVMediaItemRef)mediaItemRef; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRAXMetadataChangeProtocol.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRAXMetadataChangeProtocol 11 | - (id)axMetadataText; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRAXSelectionChangeProtocol.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRAXSelectionChangeProtocol 11 | - (id)axSelectedItemText; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRAXTitleChangeProtocol.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRAXTitleChangeProtocol 11 | - (id)axTitleText; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRAnimation.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface BRAnimation : NSObject { 11 | } 12 | + (id)defaultValueForKey:(id)key; // 0x316899c9 13 | + (void)initialize; // 0x31689a2d 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRAudioDeviceManager.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface BRAudioDeviceManager : NSObject { 11 | } 12 | + (void)initializeAudio; // 0x315d4ee5 13 | + (void)setPreferredAudioFormat:(int)format; // 0x315d4f91 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRContentController.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRController.h" 9 | 10 | 11 | __attribute__((visibility("hidden"))) 12 | @interface BRContentController : BRController { 13 | } 14 | - (void)layoutSubcontrols; // 0x315bf805 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRControlFactory.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRControlFactory 11 | - (id)controlForData:(id)data currentControl:(id)control requestedBy:(id)by; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRControlHeightFactory.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRControlHeightFactory 11 | - (float)heightForControlForData:(id)data requestedBy:(id)by; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRControlLayer.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | __attribute__((visibility("hidden"))) 9 | @interface BRControlLayer : CALayer { 10 | } 11 | + (id)defaultActionForKey:(id)key; // 0x315d1519 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRDeletable.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRDeletable 11 | - (BOOL)canBeDeleted; 12 | - (void)delete; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRFullScreenPhotoControllerDelegate.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRFullScreenPhotoControllerDelegate 11 | - (void)photoPlaybackWillStartForPlayer:(id)photoPlayback; 12 | - (void)setLastViewedSlideIndex:(int)index; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRGenre.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRType.h" 9 | 10 | 11 | @interface BRGenre : BRType { 12 | } 13 | + (id)classical; // 0x3162f8f9 14 | + (id)pop; // 0x3162f9cd 15 | + (id)rock; // 0x3162f825 16 | - (id)displayString; // 0x315ba445 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRHDCPMonitor.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface BRHDCPMonitor : NSObject { 11 | } 12 | + (BOOL)protectedContentPlayable; // 0x316664fd 13 | + (void)startMonitoring; // 0x316664f9 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRMarqueeScrollingDelegate.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRMarqueeScrollingDelegate 11 | - (void)controlDidFinishingScrolling:(id)control; 12 | - (BOOL)shouldControlWaitToScroll:(id)scroll; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRMediaAssetDerivesMediaURL.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRMediaAssetDerivesMediaURL 11 | - (id)resolveMediaURL; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRMediaAssetDigitalExtraInfo.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface BRMediaAssetDigitalExtraInfo : NSObject { 11 | } 12 | + (id)digitalExtraForObject:(id)object; // 0x3165cc25 13 | + (void)setImplementationClass:(Class)aClass; // 0x3165cc19 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRMediaHostWaitDialogFactory.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface BRMediaHostWaitDialogFactory : NSObject { 11 | } 12 | + (id)mediaHostWaitDialogForMediaHost:(id)mediaHost; // 0x3161b999 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRMediaIdentityProtocol.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRMediaIdentityProtocol 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRMediaLoading.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRMediaLoading 11 | - (int)load; 12 | - (int)loadWithUsername:(id)username password:(id)password; 13 | - (int)unload; 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRMetadataPopulator.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRMetadataPopulator 11 | - (id)axMetadataFromAsset:(id)asset; 12 | - (void)populateLayer:(id)layer fromAsset:(id)asset; 13 | - (void)populateLongDescriptionLayer:(id)layer fromAsset:(id)asset; 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRModalDialog.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRDialog.h" 9 | 10 | 11 | __attribute__((visibility("hidden"))) 12 | @interface BRModalDialog : BRDialog { 13 | } 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRMusicStoreUtility.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface BRMusicStoreUtility : NSObject { 11 | } 12 | + (void)fetchBookmarkTimeForAsset:(id)asset completionHandler:(id)handler; // 0x3168b169 13 | + (void)setImplementationClass:(Class)aClass; // 0x3168b15d 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRPopPanelControl.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BackRow-Structs.h" 9 | #import "BRControl.h" 10 | 11 | 12 | __attribute__((visibility("hidden"))) 13 | @interface BRPopPanelControl : BRControl { 14 | } 15 | - (void)layoutSubcontrols; // 0x3162db49 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRPreviewBrowserControl.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRButtonControl.h" 9 | 10 | 11 | @interface BRPreviewBrowserControl : BRButtonControl { 12 | } 13 | + (id)previewBrowser; // 0x315f30d9 14 | - (BOOL)brEventAction:(id)action; // 0x315f315d 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRProgressBarWidget.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRPercentageIndicatorLayer.h" 9 | 10 | 11 | @interface BRProgressBarWidget : BRPercentageIndicatorLayer { 12 | } 13 | - (id)init; // 0x31612c71 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRProvider.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRProvider 11 | - (id)controlFactory; 12 | - (id)dataAtIndex:(long)index; 13 | - (long)dataCount; 14 | - (id)hashForDataAtIndex:(long)index; 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRResponder.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRResponder 11 | - (BOOL)brEventAction:(id)action; 12 | - (BOOL)brKeyEvent:(id)event; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRSelectionHandler.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRSelectionHandler 11 | - (BOOL)handleSelectionForControl:(id)control; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRTextField.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRResponder.h" 9 | 10 | 11 | @protocol BRTextField 12 | - (void)setString:(id)string; 13 | - (id)stringValue; 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRTextFieldDelegate.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRTextFieldDelegate 11 | - (void)textDidChange:(id)text; 12 | - (void)textDidEndEditing:(id)text; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRTileLayer.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | __attribute__((visibility("hidden"))) 9 | @interface BRTileLayer : CALayer { 10 | } 11 | + (id)defaultActionForKey:(id)key; // 0x3161e929 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRTitleProvider.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRProvider.h" 9 | 10 | 11 | @protocol BRTitleProvider 12 | - (id)title; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRUsageReporterOptInDialog.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface BRUsageReporterOptInDialog : NSObject { 11 | } 12 | + (void)showAndSetPreference; // 0x31685625 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/BRVideoCacheManagerDelegate.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRVideoCacheManagerDelegate 11 | - (BOOL)handleAssetFailedToLoad:(id)load; 12 | - (BOOL)handleAssetReadyToPlay:(id)play; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/DOMDocument.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BackRow-Structs.h" 9 | 10 | 11 | @interface DOMDocument (Clickability) 12 | - (id)clickableNodes; // 0x3165b9f5 13 | - (id)clickableNodesInRect:(CGRect)rect; // 0x3165b929 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/DOMEventListener.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol DOMEventListener 11 | - (void)handleEvent:(id)event; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/DOMHTMLAnchorElement.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface DOMHTMLAnchorElement (Clickability) 11 | - (BOOL)respondsToClick; // 0x3165b681 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/DOMHTMLObjectElement.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface DOMHTMLObjectElement (Clickability) 11 | - (BOOL)respondsToClick; // 0x3165b685 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/DOMHTMLSelectElement.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface DOMHTMLSelectElement (TextEntryAssistants) 11 | - (int)formPeriperalType; // 0x3165b6b5 12 | - (BOOL)nodeCanBecomeFirstResponder; // 0x3165b6b1 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/.svn/text-base/WebWindowDelegate.h.svn-base: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol WebWindowDelegate 11 | - (void)focusedElementChangedTo:(id)to forWindow:(id)window; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRATVMediaItem.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BackRow-Structs.h" 9 | 10 | 11 | @protocol BRATVMediaItem 12 | - (ATVMediaItemRef)mediaItemRef; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRAXMetadataChangeProtocol.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRAXMetadataChangeProtocol 11 | - (id)axMetadataText; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRAXSelectionChangeProtocol.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRAXSelectionChangeProtocol 11 | - (id)axSelectedItemText; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRAXTitleChangeProtocol.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRAXTitleChangeProtocol 11 | - (id)axTitleText; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRAnimation.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface BRAnimation : NSObject { 11 | } 12 | + (id)defaultValueForKey:(id)key; // 0x316899c9 13 | + (void)initialize; // 0x31689a2d 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRAudioDeviceManager.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface BRAudioDeviceManager : NSObject { 11 | } 12 | + (void)initializeAudio; // 0x315d4ee5 13 | + (void)setPreferredAudioFormat:(int)format; // 0x315d4f91 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRContentController.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRController.h" 9 | 10 | 11 | __attribute__((visibility("hidden"))) 12 | @interface BRContentController : BRController { 13 | } 14 | - (void)layoutSubcontrols; // 0x315bf805 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRControlFactory.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRControlFactory 11 | - (id)controlForData:(id)data currentControl:(id)control requestedBy:(id)by; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRControlHeightFactory.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRControlHeightFactory 11 | - (float)heightForControlForData:(id)data requestedBy:(id)by; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRControlLayer.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | __attribute__((visibility("hidden"))) 9 | @interface BRControlLayer : CALayer { 10 | } 11 | + (id)defaultActionForKey:(id)key; // 0x315d1519 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRDeletable.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRDeletable 11 | - (BOOL)canBeDeleted; 12 | - (void)delete; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRDigitalExtrasMenuItemPopulator.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRBaseMenuItemLayerPopulator.h" 9 | 10 | 11 | @interface BRDigitalExtrasMenuItemPopulator : BRBaseMenuItemLayerPopulator { 12 | } 13 | + (BOOL)canHandleObject:(id)object; // 0x31658c9d 14 | - (id)menuItem; // 0x31658bb1 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRFullScreenPhotoControllerDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRFullScreenPhotoControllerDelegate 11 | - (void)photoPlaybackWillStartForPlayer:(id)photoPlayback; 12 | - (void)setLastViewedSlideIndex:(int)index; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRGenre.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRType.h" 9 | 10 | 11 | @interface BRGenre : BRType { 12 | } 13 | + (id)classical; // 0x3162f8f9 14 | + (id)pop; // 0x3162f9cd 15 | + (id)rock; // 0x3162f825 16 | - (id)displayString; // 0x315ba445 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRHDCPMonitor.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface BRHDCPMonitor : NSObject { 11 | } 12 | + (BOOL)protectedContentPlayable; // 0x316664fd 13 | + (void)startMonitoring; // 0x316664f9 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRKeyboardRomanAccount.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRKeyboardRomanFull.h" 9 | 10 | 11 | __attribute__((visibility("hidden"))) 12 | @interface BRKeyboardRomanAccount : BRKeyboardRomanFull { 13 | } 14 | - (id)_keyboardDataFileName; // 0x315fe005 15 | - (id)name; // 0x315fdff5 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMainMenuShelfControl.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BackRow-Structs.h" 9 | #import "BRMediaShelfControl.h" 10 | 11 | 12 | @interface BRMainMenuShelfControl : BRMediaShelfControl { 13 | } 14 | - (id)init; // 0x316611c9 15 | - (void)controlWasDeactivated; // 0x3166118d 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMarqueeScrollingDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRMarqueeScrollingDelegate 11 | - (void)controlDidFinishingScrolling:(id)control; 12 | - (BOOL)shouldControlWaitToScroll:(id)scroll; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMediaAssetDerivesMediaURL.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRMediaAssetDerivesMediaURL 11 | - (id)resolveMediaURL; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMediaAssetDigitalExtraInfo.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface BRMediaAssetDigitalExtraInfo : NSObject { 11 | } 12 | + (id)digitalExtraForObject:(id)object; // 0x3165cc25 13 | + (void)setImplementationClass:(Class)aClass; // 0x3165cc19 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMediaHostStateAvailable.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRMediaHostState.h" 9 | 10 | 11 | __attribute__((visibility("hidden"))) 12 | @interface BRMediaHostStateAvailable : BRMediaHostState { 13 | } 14 | - (id)mediaHostEvent:(id)event forMediaHost:(id)mediaHost; // 0x3159134d 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMediaHostStateMountFailed.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRMediaHostState.h" 9 | 10 | 11 | __attribute__((visibility("hidden"))) 12 | @interface BRMediaHostStateMountFailed : BRMediaHostState { 13 | } 14 | - (id)mediaHostEvent:(id)event forMediaHost:(id)mediaHost; // 0x31632dcd 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMediaHostStateMounted.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRMediaHostState.h" 9 | 10 | 11 | __attribute__((visibility("hidden"))) 12 | @interface BRMediaHostStateMounted : BRMediaHostState { 13 | } 14 | - (id)mediaHostEvent:(id)event forMediaHost:(id)mediaHost; // 0x3159a659 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMediaHostStateMounting.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRMediaHostState.h" 9 | 10 | 11 | __attribute__((visibility("hidden"))) 12 | @interface BRMediaHostStateMounting : BRMediaHostState { 13 | } 14 | - (id)mediaHostEvent:(id)event forMediaHost:(id)mediaHost; // 0x31591d9d 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMediaHostStateUnavailable.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRMediaHostState.h" 9 | 10 | 11 | __attribute__((visibility("hidden"))) 12 | @interface BRMediaHostStateUnavailable : BRMediaHostState { 13 | } 14 | - (id)mediaHostEvent:(id)event forMediaHost:(id)mediaHost; // 0x31590eb1 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMediaHostStateUnmounting.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRMediaHostState.h" 9 | 10 | 11 | __attribute__((visibility("hidden"))) 12 | @interface BRMediaHostStateUnmounting : BRMediaHostState { 13 | } 14 | - (id)mediaHostEvent:(id)event forMediaHost:(id)mediaHost; // 0x31632c59 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMediaHostWaitDialogFactory.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface BRMediaHostWaitDialogFactory : NSObject { 11 | } 12 | + (id)mediaHostWaitDialogForMediaHost:(id)mediaHost; // 0x3161b999 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMediaIdentityProtocol.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRMediaIdentityProtocol 11 | @end 12 | 13 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMediaLoading.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRMediaLoading 11 | - (int)load; 12 | - (int)loadWithUsername:(id)username password:(id)password; 13 | - (int)unload; 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMediaObject.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRMediaObject 11 | - (BOOL)isValid; 12 | - (id)mediaObjectID; 13 | - (void)performSelector:(SEL)selector target:(id)target; 14 | - (void)performSelector:(SEL)selector target:(id)target withObject:(id)object; 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMenuListItemProvider.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRMenuListItemProvider 11 | - (float)heightForRow:(long)row; 12 | - (long)itemCount; 13 | - (id)itemForRow:(long)row; 14 | - (BOOL)rowSelectable:(long)selectable; 15 | - (id)titleForRow:(long)row; 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMetadataPopulator.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRMetadataPopulator 11 | - (id)axMetadataFromAsset:(id)asset; 12 | - (void)populateLayer:(id)layer fromAsset:(id)asset; 13 | - (void)populateLongDescriptionLayer:(id)layer fromAsset:(id)asset; 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRModalDialog.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRDialog.h" 9 | 10 | 11 | __attribute__((visibility("hidden"))) 12 | @interface BRModalDialog : BRDialog { 13 | } 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMovieRatingStringTransformer.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | __attribute__((visibility("hidden"))) 11 | @interface BRMovieRatingStringTransformer : NSValueTransformer { 12 | } 13 | + (Class)transformedValueClass; // 0x31667179 14 | - (id)transformedValue:(id)value; // 0x31667121 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMovieTrailer.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRXMLMediaAsset.h" 9 | 10 | 11 | @interface BRMovieTrailer : BRXMLMediaAsset { 12 | } 13 | + (id)movieTrailerFromMediaProvider:(id)mediaProvider; // 0x315ae6e9 14 | - (id)mediaType; // 0x315ae80d 15 | - (id)titleForSorting; // 0x315ce43d 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRMusicStoreUtility.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface BRMusicStoreUtility : NSObject { 11 | } 12 | + (void)fetchBookmarkTimeForAsset:(id)asset completionHandler:(id)handler; // 0x3168b169 13 | + (void)setImplementationClass:(Class)aClass; // 0x3168b15d 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRPasscodeSelectionWidget.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BackRow-Structs.h" 9 | #import "BRHorizontalSegmentedWidget.h" 10 | 11 | 12 | __attribute__((visibility("hidden"))) 13 | @interface BRPasscodeSelectionWidget : BRHorizontalSegmentedWidget { 14 | } 15 | - (id)init; // 0x31625a25 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRPopPanelControl.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BackRow-Structs.h" 9 | #import "BRControl.h" 10 | 11 | 12 | __attribute__((visibility("hidden"))) 13 | @interface BRPopPanelControl : BRControl { 14 | } 15 | - (void)layoutSubcontrols; // 0x3162db49 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRPreviewBrowserControl.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRButtonControl.h" 9 | 10 | 11 | @interface BRPreviewBrowserControl : BRButtonControl { 12 | } 13 | + (id)previewBrowser; // 0x315f30d9 14 | - (BOOL)brEventAction:(id)action; // 0x315f315d 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRProgressBarWidget.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRPercentageIndicatorLayer.h" 9 | 10 | 11 | @interface BRProgressBarWidget : BRPercentageIndicatorLayer { 12 | } 13 | - (id)init; // 0x31612c71 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRProvider.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRProvider 11 | - (id)controlFactory; 12 | - (id)dataAtIndex:(long)index; 13 | - (long)dataCount; 14 | - (id)hashForDataAtIndex:(long)index; 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRRadioMetadataPopulator.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRBaseMetadataPopulator.h" 9 | 10 | 11 | __attribute__((visibility("hidden"))) 12 | @interface BRRadioMetadataPopulator : BRBaseMetadataPopulator { 13 | } 14 | - (void)populateLayer:(id)layer fromAsset:(id)asset; // 0x316209d1 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRResponder.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRResponder 11 | - (BOOL)brEventAction:(id)action; 12 | - (BOOL)brKeyEvent:(id)event; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRSelectionHandler.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRSelectionHandler 11 | - (BOOL)handleSelectionForControl:(id)control; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRTextField.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRResponder.h" 9 | 10 | 11 | @protocol BRTextField 12 | - (void)setString:(id)string; 13 | - (id)stringValue; 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRTextFieldDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRTextFieldDelegate 11 | - (void)textDidChange:(id)text; 12 | - (void)textDidEndEditing:(id)text; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRThreadNotificationManager.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface BRThreadNotificationManager : NSObject { 11 | } 12 | + (void)initializeNotificationCallbackForCurrentThread; // 0x31598a11 13 | + (void)postNotification:(id)notification onThread:(id)thread; // 0x3159b371 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRTileLayer.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | __attribute__((visibility("hidden"))) 9 | @interface BRTileLayer : CALayer { 10 | } 11 | + (id)defaultActionForKey:(id)key; // 0x3161e929 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRTitleProvider.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRProvider.h" 9 | 10 | 11 | @protocol BRTitleProvider 12 | - (id)title; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRTopShelfRefreshTask.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRBackgroundTask.h" 9 | 10 | 11 | __attribute__((visibility("hidden"))) 12 | @interface BRTopShelfRefreshTask : BRBackgroundTask { 13 | } 14 | - (id)init; // 0x3166123d 15 | - (BOOL)perform:(id)perform; // 0x3166127d 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRUsageReporterOptInDialog.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface BRUsageReporterOptInDialog : NSObject { 11 | } 12 | + (void)showAndSetPreference; // 0x31685625 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRVideoCacheManagerDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol BRVideoCacheManagerDelegate 11 | - (BOOL)handleAssetFailedToLoad:(id)load; 12 | - (BOOL)handleAssetReadyToPlay:(id)play; 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/BRXMLElement.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BRXMLNode.h" 9 | 10 | 11 | @interface BRXMLElement : BRXMLNode { 12 | } 13 | - (void)insertChild:(id)child atIndex:(unsigned)index; // 0x31666e05 14 | - (void)replaceChildAtIndex:(unsigned)index withNode:(id)node; // 0x31666f21 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/DOMDocument.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | #import "BackRow-Structs.h" 9 | 10 | 11 | @interface DOMDocument (Clickability) 12 | - (id)clickableNodes; // 0x3165b9f5 13 | - (id)clickableNodesInRect:(CGRect)rect; // 0x3165b929 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/DOMEventListener.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol DOMEventListener 11 | - (void)handleEvent:(id)event; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/DOMHTMLAnchorElement.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface DOMHTMLAnchorElement (Clickability) 11 | - (BOOL)respondsToClick; // 0x3165b681 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/DOMHTMLObjectElement.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface DOMHTMLObjectElement (Clickability) 11 | - (BOOL)respondsToClick; // 0x3165b685 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/DOMHTMLSelectElement.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @interface DOMHTMLSelectElement (TextEntryAssistants) 11 | - (int)formPeriperalType; // 0x3165b6b5 12 | - (BOOL)nodeCanBecomeFirstResponder; // 0x3165b6b1 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/include/BackRow/WebWindowDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * This header is generated by class-dump-z 0.2a. 3 | * class-dump-z is Copyright (C) 2009 by KennyTM~, licensed under GPLv3. 4 | * 5 | * Source: /System/Library/PrivateFrameworks/BackRow.framework/BackRow 6 | */ 7 | 8 | 9 | 10 | @protocol WebWindowDelegate 11 | - (void)focusedElementChangedTo:(id)to forWindow:(id)window; 12 | @end 13 | 14 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/lib/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/SPAppliance/SPHelper/theos/lib/.keep -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/lib/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 69 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/lib 5 | END 6 | .keep 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 75 10 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/lib/.keep 11 | END 12 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/lib/.svn/text-base/.keep.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/SPAppliance/SPHelper/theos/lib/.svn/text-base/.keep.svn-base -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/.svn/text-base/aggregate.mk.svn-base: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_AGGREGATE_MK_LOADED),) 2 | FW_AGGREGATE_MK_LOADED := 1 3 | 4 | ifeq ($(FW_INSTANCE),) 5 | include $(FW_MAKEDIR)/master/aggregate.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/.svn/text-base/application.mk.svn-base: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/application.mk 3 | else 4 | ifeq ($(FW_TYPE),application) 5 | include $(FW_MAKEDIR)/instance/application.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/.svn/text-base/bundle.mk.svn-base: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/bundle.mk 3 | else 4 | ifeq ($(FW_TYPE),bundle) 5 | include $(FW_MAKEDIR)/instance/bundle.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/.svn/text-base/framework.mk.svn-base: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/framework.mk 3 | else 4 | ifeq ($(FW_TYPE),framework) 5 | include $(FW_MAKEDIR)/instance/framework.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/.svn/text-base/library.mk.svn-base: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/library.mk 3 | else 4 | ifeq ($(FW_TYPE),library) 5 | include $(FW_MAKEDIR)/instance/library.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/.svn/text-base/null.mk.svn-base: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/null.mk 3 | else 4 | ifeq ($(FW_TYPE),null) 5 | include $(FW_MAKEDIR)/instance/null.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/.svn/text-base/subproject.mk.svn-base: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/subproject.mk 3 | else 4 | ifeq ($(FW_TYPE),subproject) 5 | include $(FW_MAKEDIR)/instance/subproject.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/.svn/text-base/tool.mk.svn-base: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/tool.mk 3 | else 4 | ifeq ($(FW_TYPE),tool) 5 | include $(FW_MAKEDIR)/instance/tool.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/.svn/text-base/tweak.mk.svn-base: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/tweak.mk 3 | else 4 | ifeq ($(FW_TYPE),tweak) 5 | include $(FW_MAKEDIR)/instance/tweak.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/aggregate.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_AGGREGATE_MK_LOADED),) 2 | FW_AGGREGATE_MK_LOADED := 1 3 | 4 | ifeq ($(FW_INSTANCE),) 5 | include $(FW_MAKEDIR)/master/aggregate.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/application.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/application.mk 3 | else 4 | ifeq ($(FW_TYPE),application) 5 | include $(FW_MAKEDIR)/instance/application.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/bundle.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/bundle.mk 3 | else 4 | ifeq ($(FW_TYPE),bundle) 5 | include $(FW_MAKEDIR)/instance/bundle.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/framework.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/framework.mk 3 | else 4 | ifeq ($(FW_TYPE),framework) 5 | include $(FW_MAKEDIR)/instance/framework.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/instance/.svn/text-base/null.mk.svn-base: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_RULES_LOADED),) 2 | include $(FW_MAKEDIR)/rules.mk 3 | endif 4 | 5 | .PHONY: internal-null-all_ internal-null-stage_ 6 | 7 | internal-null-all_:: 8 | 9 | internal-null-stage_:: 10 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/instance/null.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_RULES_LOADED),) 2 | include $(FW_MAKEDIR)/rules.mk 3 | endif 4 | 5 | .PHONY: internal-null-all_ internal-null-stage_ 6 | 7 | internal-null-all_:: 8 | 9 | internal-null-stage_:: 10 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/instance/shared/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 91 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/makefiles/instance/shared 5 | END 6 | bundle.mk 7 | K 25 8 | svn:wc:ra_dav:version-url 9 | V 101 10 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/makefiles/instance/shared/bundle.mk 11 | END 12 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/library.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/library.mk 3 | else 4 | ifeq ($(FW_TYPE),library) 5 | include $(FW_MAKEDIR)/instance/library.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/null.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/null.mk 3 | else 4 | ifeq ($(FW_TYPE),null) 5 | include $(FW_MAKEDIR)/instance/null.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/platform/.svn/text-base/Darwin-arm.mk.svn-base: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_PLATFORM_LOADED),) 2 | FW_PLATFORM_LOADED := 1 3 | FW_PLATFORM_NAME := iphone 4 | 5 | FW_PLATFORM_DEFAULT_TARGET := iphone 6 | DU_EXCLUDE = --exclude 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/platform/.svn/text-base/Darwin.mk.svn-base: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_PLATFORM_LOADED),) 2 | FW_PLATFORM_LOADED := 1 3 | FW_PLATFORM_NAME := macosx 4 | 5 | FW_PLATFORM_DEFAULT_TARGET := iphone 6 | DU_EXCLUDE = -I 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/platform/.svn/text-base/Linux.mk.svn-base: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_PLATFORM_LOADED),) 2 | FW_PLATFORM_LOADED := 1 3 | FW_PLATFORM_NAME := linux 4 | 5 | FW_PLATFORM_DEFAULT_TARGET := iphone 6 | DU_EXCLUDE = --exclude 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/platform/Darwin-arm.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_PLATFORM_LOADED),) 2 | FW_PLATFORM_LOADED := 1 3 | FW_PLATFORM_NAME := iphone 4 | 5 | FW_PLATFORM_DEFAULT_TARGET := iphone 6 | DU_EXCLUDE = --exclude 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/platform/Darwin.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_PLATFORM_LOADED),) 2 | FW_PLATFORM_LOADED := 1 3 | FW_PLATFORM_NAME := macosx 4 | 5 | FW_PLATFORM_DEFAULT_TARGET := iphone 6 | DU_EXCLUDE = -I 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/platform/Linux.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_PLATFORM_LOADED),) 2 | FW_PLATFORM_LOADED := 1 3 | FW_PLATFORM_NAME := linux 4 | 5 | FW_PLATFORM_DEFAULT_TARGET := iphone 6 | DU_EXCLUDE = --exclude 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/subproject.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/subproject.mk 3 | else 4 | ifeq ($(FW_TYPE),subproject) 5 | include $(FW_MAKEDIR)/instance/subproject.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/targets/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 83 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/makefiles/targets 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/targets/_common/.svn/text-base/darwin.mk.svn-base: -------------------------------------------------------------------------------- 1 | # Variables that are common to all Darwin-based targets. 2 | TARGET_EXE_EXT = 3 | TARGET_LIB_EXT = .dylib 4 | 5 | TARGET_LDFLAGS_DYNAMICLIB = -dynamiclib -install_name $(LOCAL_INSTALL_PATH)/$(1) 6 | TARGET_CFLAGS_DYNAMICLIB = 7 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/targets/_common/.svn/text-base/install_deb_local.mk.svn-base: -------------------------------------------------------------------------------- 1 | export TARGET_REMOTE := 0 2 | 3 | ifeq ($(FW_CAN_PACKAGE),1) 4 | internal-install:: 5 | install.exec "dpkg -i $(FW_PACKAGE_FILENAME).deb" 6 | else # FW_CAN_PACKAGE 7 | internal-install:: stage 8 | install.mergeDir "$(FW_STAGING_DIR)" "/" 9 | endif 10 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/targets/_common/.svn/text-base/linux.mk.svn-base: -------------------------------------------------------------------------------- 1 | # Variables that are common to all Linux-based targets. 2 | TARGET_EXE_EXT = 3 | TARGET_LIB_EXT = .so 4 | 5 | TARGET_LDFLAGS_DYNAMICLIB = -shared -Wl,-soname,$(1) 6 | TARGET_CFLAGS_DYNAMICLIB = -fPIC 7 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/targets/_common/darwin.mk: -------------------------------------------------------------------------------- 1 | # Variables that are common to all Darwin-based targets. 2 | TARGET_EXE_EXT = 3 | TARGET_LIB_EXT = .dylib 4 | 5 | TARGET_LDFLAGS_DYNAMICLIB = -dynamiclib -install_name $(LOCAL_INSTALL_PATH)/$(1) 6 | TARGET_CFLAGS_DYNAMICLIB = 7 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/targets/_common/install_deb_local.mk: -------------------------------------------------------------------------------- 1 | export TARGET_REMOTE := 0 2 | 3 | ifeq ($(FW_CAN_PACKAGE),1) 4 | internal-install:: 5 | install.exec "dpkg -i $(FW_PACKAGE_FILENAME).deb" 6 | else # FW_CAN_PACKAGE 7 | internal-install:: stage 8 | install.mergeDir "$(FW_STAGING_DIR)" "/" 9 | endif 10 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/targets/_common/linux.mk: -------------------------------------------------------------------------------- 1 | # Variables that are common to all Linux-based targets. 2 | TARGET_EXE_EXT = 3 | TARGET_LIB_EXT = .so 4 | 5 | TARGET_LDFLAGS_DYNAMICLIB = -shared -Wl,-soname,$(1) 6 | TARGET_CFLAGS_DYNAMICLIB = -fPIC 7 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/tool.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/tool.mk 3 | else 4 | ifeq ($(FW_TYPE),tool) 5 | include $(FW_MAKEDIR)/instance/tool.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/makefiles/tweak.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(FW_INSTANCE),) 2 | include $(FW_MAKEDIR)/master/tweak.mk 3 | else 4 | ifeq ($(FW_TYPE),tweak) 5 | include $(FW_MAKEDIR)/instance/tweak.mk 6 | endif 7 | endif 8 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/mod/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 69 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/mod 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/mod/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 16 5 | https://pl3.projectlocker.com/abathingchris/nito/svn/nitoTV3/trunk/nitoHelper/theos/mod 6 | https://pl3.projectlocker.com/abathingchris/nito/svn 7 | 8 | 9 | 10 | 2010-12-10T00:55:03.828969Z 11 | 3 12 | chris.long@mac.com 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | caa9a463-b487-4ceb-abff-6809e25550c1 28 | 29 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/templates/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 75 4 | /abathingchris/nito/svn/!svn/ver/3/nitoTV3/trunk/nitoHelper/theos/templates 5 | END 6 | -------------------------------------------------------------------------------- /SPAppliance/SPHelper/theos/templates/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 16 5 | https://pl3.projectlocker.com/abathingchris/nito/svn/nitoTV3/trunk/nitoHelper/theos/templates 6 | https://pl3.projectlocker.com/abathingchris/nito/svn 7 | 8 | 9 | 10 | 2010-12-10T00:55:03.828969Z 11 | 3 12 | chris.long@mac.com 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | caa9a463-b487-4ceb-abff-6809e25550c1 28 | 29 | iphone 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /SPAppliance/control: -------------------------------------------------------------------------------- 1 | Architecture: iphoneos-arm 2 | Name: Seas0nPass 3 | Package: com.firecore.seas0npass 4 | Version: 0.1.1 5 | Website: http://firecore.com 6 | Maintainer: FireCore, LLC 7 | Author: FireCore, LLC 8 | Description: Seas0nPass 9 | Section: Utilities 10 | Depends: mobilesubstrate, beigelist 11 | -------------------------------------------------------------------------------- /SPAppliance/sp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/SPAppliance/sp.png -------------------------------------------------------------------------------- /SPButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPButton.h 3 | // tetherKit 4 | // 5 | // Created by Kevin Bradley on 1/18/11. 6 | // Copyright 2011 FireCore, LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface SPButton : NSButton { 13 | 14 | } 15 | 16 | - (void)showMenu:(NSPoint)thePoint; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /SPFWButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPFWButton.h 3 | // tetherKit 4 | // 5 | // Created by Kevin Bradley on 1/18/11. 6 | // Copyright 2011 FireCore, LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface SPFWButton : NSButton { 13 | 14 | } 15 | 16 | - (void)showMenu:(NSPoint)thePoint; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /SPMenuItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // SPMenuItem.h 3 | // tetherKit 4 | // 5 | // Created by Kevin Bradley on 1/19/11. 6 | // Copyright 2011 FireCore, LLC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface SPMenuItem : NSMenuItem { 13 | 14 | } 15 | - (IBAction)add:(id)sender; 16 | @end 17 | -------------------------------------------------------------------------------- /Seas0nPass.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Seas0nPass.icns -------------------------------------------------------------------------------- /Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Sparkle.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Sparkle.framework/PrivateHeaders: -------------------------------------------------------------------------------- 1 | Versions/Current/PrivateHeaders -------------------------------------------------------------------------------- /Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Headers/SUExport.h: -------------------------------------------------------------------------------- 1 | // 2 | // SUExport.h 3 | // Sparkle 4 | // 5 | // Created by Jake Petroules on 2014-08-23. 6 | // Copyright (c) 2014 Sparkle Project. All rights reserved. 7 | // 8 | 9 | #ifndef SUEXPORT_H 10 | #define SUEXPORT_H 11 | 12 | #ifdef BUILDING_SPARKLE 13 | #define SU_EXPORT __attribute__((visibility("default"))) 14 | #else 15 | #define SU_EXPORT 16 | #endif 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module Sparkle { 2 | umbrella header "Sparkle.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/fr_CA.lproj: -------------------------------------------------------------------------------- 1 | fr.lproj -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt.lproj: -------------------------------------------------------------------------------- 1 | pt_BR.lproj -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /TSS/.svn/text-base/TSSCommon.h.svn-base: -------------------------------------------------------------------------------- 1 | // 2 | // TSSCommon.h 3 | // TSSAgent 4 | // 5 | // Created by Kevin Bradley on 1/23/12. 6 | // Copyright 2012 nito, LLC. All rights reserved. 7 | // 8 | 9 | @interface TSSCommon : NSObject { 10 | 11 | } 12 | 13 | +(NSString *)stringReturnForProcess:(NSString *)call; 14 | + (NSString *)osVersion; 15 | + (BOOL)fiveOHPlus; 16 | + (NSString *)osBuild; 17 | + (void)fixUIDevices; 18 | @end 19 | -------------------------------------------------------------------------------- /TSS/TSSCategories.h: -------------------------------------------------------------------------------- 1 | // 2 | // TSSCategories.h 3 | // TSSAgent 4 | // 5 | // Created by Kevin Bradley on 6/22/13. 6 | // Copyright 2013 nito. All rights reserved. 7 | // 8 | 9 | 10 | @interface NSDictionary (strings) 11 | 12 | - (NSString *)stringFromDictionary; 13 | 14 | @end 15 | 16 | @interface NSArray (strings) 17 | 18 | - (NSString *)stringFromArray; 19 | 20 | @end 21 | 22 | 23 | 24 | @interface NSString (TSSAdditions) 25 | 26 | - (id)dictionaryFromString; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /TSS/TSSCommon.h: -------------------------------------------------------------------------------- 1 | // 2 | // TSSCommon.h 3 | // TSSAgent 4 | // 5 | // Created by Kevin Bradley on 1/23/12. 6 | // Copyright 2012 nito, LLC. All rights reserved. 7 | // 8 | 9 | #import "TSSCategories.h" 10 | #import "JSONKit.h" 11 | 12 | @interface TSSCommon : NSObject { 13 | 14 | } 15 | 16 | +(NSString *)stringReturnForProcess:(NSString *)call; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /archives/Cydia.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/archives/Cydia.tgz -------------------------------------------------------------------------------- /bin/genpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/genpass -------------------------------------------------------------------------------- /bin/idr/idevicerestore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/idevicerestore -------------------------------------------------------------------------------- /bin/idr/libcrypto.1.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/libcrypto.1.0.0.dylib -------------------------------------------------------------------------------- /bin/idr/libcurl.4.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/libcurl.4.dylib -------------------------------------------------------------------------------- /bin/idr/libiconv.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/libiconv.2.dylib -------------------------------------------------------------------------------- /bin/idr/libidn.11.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/libidn.11.dylib -------------------------------------------------------------------------------- /bin/idr/libimobiledevice.4.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/libimobiledevice.4.dylib -------------------------------------------------------------------------------- /bin/idr/libintl.8.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/libintl.8.dylib -------------------------------------------------------------------------------- /bin/idr/libirecovery.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/libirecovery.1.dylib -------------------------------------------------------------------------------- /bin/idr/liblzma.5.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/liblzma.5.dylib -------------------------------------------------------------------------------- /bin/idr/libplist.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/libplist.1.dylib -------------------------------------------------------------------------------- /bin/idr/libssl.1.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/libssl.1.0.0.dylib -------------------------------------------------------------------------------- /bin/idr/libusb-1.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/libusb-1.0.0.dylib -------------------------------------------------------------------------------- /bin/idr/libusbmuxd.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/libusbmuxd.2.dylib -------------------------------------------------------------------------------- /bin/idr/libxml2.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/libxml2.2.dylib -------------------------------------------------------------------------------- /bin/idr/libz.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/libz.1.dylib -------------------------------------------------------------------------------- /bin/idr/libzip.2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/idr/libzip.2.dylib -------------------------------------------------------------------------------- /bin/imagetool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/imagetool -------------------------------------------------------------------------------- /bin/lib/libpng12.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/lib/libpng12.0.dylib -------------------------------------------------------------------------------- /bin/vfdecrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/vfdecrypt -------------------------------------------------------------------------------- /bin/xpwntool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bin/xpwntool -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.1_8M89.bundle/Lowtide.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.1_8M89.bundle/Lowtide.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.1_8M89.bundle/Services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.1_8M89.bundle/Services.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.1_8M89.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.1_8M89.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.1_8M89.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.1_8M89.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.1_8M89.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.1_8M89.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.1_8M89.bundle/libgmalloc.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.1_8M89.bundle/libgmalloc.dylib -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.1_8M89.bundle/pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.1_8M89.bundle/pf2 -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.1_8M89.bundle/restored.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.1_8M89.bundle/restored.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.2.1_8C154.bundle/AppleTV.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.2.1_8C154.bundle/AppleTV.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.2.1_8C154.bundle/Services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.2.1_8C154.bundle/Services.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.2.1_8C154.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.2.1_8C154.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.2.1_8C154.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.2.1_8C154.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.2.1_8C154.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.2.1_8C154.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.2.1_8C154.bundle/kern_sploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.2.1_8C154.bundle/kern_sploit -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.2.1_8C154.bundle/punchd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.2.1_8C154.bundle/punchd -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.2.1_8C154.bundle/restored.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.2.1_8C154.bundle/restored.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.2_8C150.bundle/Services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.2_8C150.bundle/Services.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.2_8C150.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.2_8C150.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.2_8C150.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.2_8C150.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.2_8C150.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.2_8C150.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F191m.bundle/AppleTV.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F191m.bundle/AppleTV.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F191m.bundle/Services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F191m.bundle/Services.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F191m.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F191m.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F191m.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F191m.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F191m.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F191m.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F202.bundle/AppleTV.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F202.bundle/AppleTV.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F202.bundle/Services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F202.bundle/Services.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F202.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F202.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F202.bundle/crunchd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F202.bundle/crunchd -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F202.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F202.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F202.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F202.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F305.bundle/AppleTV.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F305.bundle/AppleTV.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F305.bundle/Services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F305.bundle/Services.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F305.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F305.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F305.bundle/crunchd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F305.bundle/crunchd -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F305.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F305.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F305.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F305.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F455.bundle/AppleTV.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F455.bundle/AppleTV.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F455.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F455.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F455.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F455.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F455.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F455.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F455.bundle/saffron.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F455.bundle/saffron.deb -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.3_8F455.bundle/saffron.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.3_8F455.bundle/saffron.tgz -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.1_9A335a.bundle/AppleTV.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.1_9A335a.bundle/AppleTV.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.1_9A335a.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.1_9A335a.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.1_9A335a.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.1_9A335a.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.1_9A335a.bundle/iBEC.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.1_9A335a.bundle/iBEC.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.1_9A335a.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.1_9A335a.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.1_9A335a.bundle/kernelcache.release.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.1_9A335a.bundle/kernelcache.release.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.2_9A336a.bundle/AppleTV.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.2_9A336a.bundle/AppleTV.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.2_9A336a.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.2_9A336a.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.2_9A336a.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.2_9A336a.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.2_9A336a.bundle/iBEC.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.2_9A336a.bundle/iBEC.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.2_9A336a.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.2_9A336a.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.2_9A336a.bundle/kernelcache.release.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.2_9A336a.bundle/kernelcache.release.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.3_9A405l.bundle/AppleTV.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.3_9A405l.bundle/AppleTV.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.3_9A405l.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.3_9A405l.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.3_9A405l.bundle/corona.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.3_9A405l.bundle/corona.tgz -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.3_9A405l.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.3_9A405l.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.3_9A405l.bundle/iBEC.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.3_9A405l.bundle/iBEC.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.3_9A405l.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.3_9A405l.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.3_9A405l.bundle/racoon.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.3_9A405l.bundle/racoon.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.4_9A406a.bundle/AppleTV.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.4_9A406a.bundle/AppleTV.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.4_9A406a.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.4_9A406a.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.4_9A406a.bundle/corona.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.4_9A406a.bundle/corona.tgz -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.4_9A406a.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.4_9A406a.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.4_9A406a.bundle/iBEC.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.4_9A406a.bundle/iBEC.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.4_9A406a.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.4_9A406a.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.4_9A406a.bundle/kernelcache.release.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.4_9A406a.bundle/kernelcache.release.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4.4_9A406a.bundle/racoon.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4.4_9A406a.bundle/racoon.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4_9A334v.bundle/AppleTV.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4_9A334v.bundle/AppleTV.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4_9A334v.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4_9A334v.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4_9A334v.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4_9A334v.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4_9A334v.bundle/iBEC.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4_9A334v.bundle/iBEC.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4_9A334v.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4_9A334v.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_4.4_9A334v.bundle/kernelcache.release.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_4.4_9A334v.bundle/kernelcache.release.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0.2_9B830.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0.2_9B830.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0.2_9B830.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0.2_9B830.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0.2_9B830.bundle/iBEC.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0.2_9B830.bundle/iBEC.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0.2_9B830.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0.2_9B830.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0.2_9B830.bundle/racoon.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0.2_9B830.bundle/racoon.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0.2_9B830.bundle/rocky.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0.2_9B830.bundle/rocky.tgz -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0_9B179b.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0_9B179b.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0_9B179b.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0_9B179b.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0_9B179b.bundle/iBEC.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0_9B179b.bundle/iBEC.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0_9B179b.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0_9B179b.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0_9B179b.bundle/kernelcache.release.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0_9B179b.bundle/kernelcache.release.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0_9B206f.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0_9B206f.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0_9B206f.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0_9B206f.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0_9B206f.bundle/iBEC.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0_9B206f.bundle/iBEC.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0_9B206f.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0_9B206f.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0_9B206f.bundle/racoon.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0_9B206f.bundle/racoon.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.0_9B206f.bundle/rocky.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.0_9B206f.bundle/rocky.tgz -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.1.1_10A831.bundle/Services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.1.1_10A831.bundle/Services.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.1.1_10A831.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.1.1_10A831.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.1.1_10A831.bundle/evasi0n.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.1.1_10A831.bundle/evasi0n.tgz -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.1.1_10A831.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.1.1_10A831.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.1.1_10A831.bundle/iBEC.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.1.1_10A831.bundle/iBEC.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.1.1_10A831.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.1.1_10A831.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.1.1_10A831.bundle/restored_external.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.1.1_10A831.bundle/restored_external.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.1_10A406e.bundle/Services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.1_10A406e.bundle/Services.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.1_10A406e.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.1_10A406e.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.1_10A406e.bundle/evasi0n.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.1_10A406e.bundle/evasi0n.tgz -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.1_10A406e.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.1_10A406e.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.1_10A406e.bundle/iBEC.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.1_10A406e.bundle/iBEC.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.1_10A406e.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.1_10A406e.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.1_10A406e.bundle/restored_external.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.1_10A406e.bundle/restored_external.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.2.1_10B329a.bundle/AppleTV.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.2.1_10B329a.bundle/AppleTV.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.2.1_10B329a.bundle/Services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.2.1_10B329a.bundle/Services.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.2.1_10B329a.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.2.1_10B329a.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.2.1_10B329a.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.2.1_10B329a.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.2.1_10B329a.bundle/iBEC.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.2.1_10B329a.bundle/iBEC.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.2.1_10B329a.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.2.1_10B329a.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.2.1_10B329a.bundle/restored_external.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.2.1_10B329a.bundle/restored_external.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.2_10B144b.bundle/AppleTV.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.2_10B144b.bundle/AppleTV.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.2_10B144b.bundle/Services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.2_10B144b.bundle/Services.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.2_10B144b.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.2_10B144b.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.2_10B144b.bundle/evasi0n.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.2_10B144b.bundle/evasi0n.tgz -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.2_10B144b.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.2_10B144b.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.2_10B144b.bundle/iBEC.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.2_10B144b.bundle/iBEC.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.2_10B144b.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.2_10B144b.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.2_10B144b.bundle/restored_external.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.2_10B144b.bundle/restored_external.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.3_10B809.bundle/AppleTV.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.3_10B809.bundle/AppleTV.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.3_10B809.bundle/Services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.3_10B809.bundle/Services.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.3_10B809.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.3_10B809.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.3_10B809.bundle/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.3_10B809.bundle/fstab.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.3_10B809.bundle/iBEC.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.3_10B809.bundle/iBEC.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.3_10B809.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.3_10B809.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.3_10B809.bundle/p0sixspwn.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.3_10B809.bundle/p0sixspwn.tgz -------------------------------------------------------------------------------- /bundles/AppleTV2,1_5.3_10B809.bundle/restored_external.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_5.3_10B809.bundle/restored_external.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_6.2.1_11D258.bundle/AppleTV.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_6.2.1_11D258.bundle/AppleTV.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_6.2.1_11D258.bundle/Services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_6.2.1_11D258.bundle/Services.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_6.2.1_11D258.bundle/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_6.2.1_11D258.bundle/asr.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_6.2.1_11D258.bundle/dirhelper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_6.2.1_11D258.bundle/dirhelper -------------------------------------------------------------------------------- /bundles/AppleTV2,1_6.2.1_11D258.bundle/iBEC.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_6.2.1_11D258.bundle/iBEC.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_6.2.1_11D258.bundle/iBSS.k66ap.RELEASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_6.2.1_11D258.bundle/iBSS.k66ap.RELEASE.patch -------------------------------------------------------------------------------- /bundles/AppleTV2,1_6.2.1_11D258.bundle/restored_external.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/bundles/AppleTV2,1_6.2.1_11D258.bundle/restored_external.patch -------------------------------------------------------------------------------- /debs/asubstratesafe.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/debs/asubstratesafe.deb -------------------------------------------------------------------------------- /debs/awkwardtv.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/debs/awkwardtv.deb -------------------------------------------------------------------------------- /debs/bsubstrate.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/debs/bsubstrate.deb -------------------------------------------------------------------------------- /debs/com.firecore.seas0npass_0.1.3-12_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/debs/com.firecore.seas0npass_0.1.3-12_iphoneos-arm.deb -------------------------------------------------------------------------------- /debs/com.nito.tssagent_1.3-13_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/debs/com.nito.tssagent_1.3-13_iphoneos-arm.deb -------------------------------------------------------------------------------- /deprecatedDebs/Seas0nPass.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/deprecatedDebs/Seas0nPass.deb -------------------------------------------------------------------------------- /deprecatedDebs/beigelist_2.0.99-2_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/deprecatedDebs/beigelist_2.0.99-2_iphoneos-arm.deb -------------------------------------------------------------------------------- /deprecatedDebs/beigelist_2.1-2_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/deprecatedDebs/beigelist_2.1-2_iphoneos-arm.deb -------------------------------------------------------------------------------- /deprecatedDebs/com.nito.gs_0.1-4_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/deprecatedDebs/com.nito.gs_0.1-4_iphoneos-arm.deb -------------------------------------------------------------------------------- /deprecatedDebs/com.whatanutbar.exposed._0.6_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/deprecatedDebs/com.whatanutbar.exposed._0.6_iphoneos-arm.deb -------------------------------------------------------------------------------- /deprecatedDebs/sysmbootstrap.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/deprecatedDebs/sysmbootstrap.deb -------------------------------------------------------------------------------- /iFaith-Certs/s5l8930x_DataCenter.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/iFaith-Certs/s5l8930x_DataCenter.bin -------------------------------------------------------------------------------- /iFaith-Certs/s5l8930x_Factory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/iFaith-Certs/s5l8930x_Factory.bin -------------------------------------------------------------------------------- /include/Win32/libgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/include/Win32/libgen.h -------------------------------------------------------------------------------- /include/Win32/unistd.h: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /ipsw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/ipsw.png -------------------------------------------------------------------------------- /libsyringe.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/libsyringe.a -------------------------------------------------------------------------------- /libusb-1.0.0.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/libusb-1.0.0.dylib -------------------------------------------------------------------------------- /libusb-1.0.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/libusb-1.0.a -------------------------------------------------------------------------------- /patches/asr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/patches/asr.patch -------------------------------------------------------------------------------- /patches/fstab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/patches/fstab.patch -------------------------------------------------------------------------------- /patches/iBSS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/patches/iBSS.patch -------------------------------------------------------------------------------- /patches/status.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/patches/status.patch -------------------------------------------------------------------------------- /payload.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/payload.bin -------------------------------------------------------------------------------- /pony/Makefile: -------------------------------------------------------------------------------- 1 | export GO_EASY_ON_ME=1 2 | export SDKVERSION=4.3 3 | export FW_DEVICE_IP=apple-tv.local 4 | export THEOS_DEVICE_IP=apple-tv.local 5 | 6 | include theos/makefiles/common.mk 7 | 8 | TWEAK_NAME = apocalypsePony 9 | apocalypsePony_FILES = apocalypsePony.xm 10 | apocalypsePony_LDFLAGS = -undefined dynamic_lookup 11 | include $(FW_MAKEDIR)/tweak.mk 12 | 13 | after-apocalypsePony-stage:: 14 | $(FAKEROOT) chown -R root:wheel $(FW_STAGING_DIR) 15 | -------------------------------------------------------------------------------- /pony/apocalypsePony.plist: -------------------------------------------------------------------------------- 1 | { Filter = { Bundles = ( "com.apple.lowtide" ); }; } 2 | -------------------------------------------------------------------------------- /pony/layout/DEBIAN/control: -------------------------------------------------------------------------------- 1 | Architecture: iphoneos-arm 2 | Name: Seas0nPass 3 | Package: com.firecore.seas0npass 4 | Version: 0.1.3 5 | Website: http://firecore.com 6 | Maintainer: FireCore, LLC 7 | Author: FireCore, LLC 8 | Description: Seas0nPass 9 | Section: Utilities 10 | Depends: mobilesubstrate 11 | -------------------------------------------------------------------------------- /pony/layout/var/mobile/Media/Photos/seas0nTV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/pony/layout/var/mobile/Media/Photos/seas0nTV.png -------------------------------------------------------------------------------- /pony/layout/var/mobile/Media/Photos/spicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/pony/layout/var/mobile/Media/Photos/spicon.png -------------------------------------------------------------------------------- /restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/restore.png -------------------------------------------------------------------------------- /scripts/space.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | shopt -s extglob 3 | 4 | function stash() { 5 | src=$1 6 | dst=var/stash/${src##*/} 7 | mv "${src}" "${dst}" 8 | dst=${src//+([A-Za-z])/..}/${dst} 9 | ln -s "${dst#../}" "${src}" 10 | } 11 | 12 | mnt=$1 13 | cd "${mnt}" 14 | 15 | mkdir -p var/stash 16 | mkdir -p usr/include 17 | 18 | stash Applications 19 | stash Library/Ringtones 20 | stash Library/Wallpaper 21 | stash usr/bin 22 | stash usr/include 23 | stash usr/lib/pam 24 | stash usr/libexec 25 | stash usr/share 26 | -------------------------------------------------------------------------------- /scripts/space60.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | shopt -s extglob 3 | 4 | function stash() { 5 | src=$1 6 | dst=var/stash/${src##*/} 7 | mv "${src}" "${dst}" 8 | dst=${src//+([A-Za-z])/..}/${dst} 9 | ln -s "${dst#../}" "${src}" 10 | } 11 | 12 | mnt=$1 13 | cd "${mnt}" 14 | 15 | mkdir -p var/stash 16 | mkdir -p usr/include 17 | 18 | stash Applications 19 | #stash Library/Ringtones 20 | #stash Library/Wallpaper 21 | #stash usr/bin 22 | stash usr/include 23 | stash usr/lib/pam 24 | stash usr/libexec 25 | stash usr/share 26 | -------------------------------------------------------------------------------- /success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/success.png -------------------------------------------------------------------------------- /tether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/tether.png -------------------------------------------------------------------------------- /tetheredRemote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/tetheredRemote.png -------------------------------------------------------------------------------- /untethered.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/untethered.jpg -------------------------------------------------------------------------------- /untethered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firecore/Seas0nPass/6a047d5f708d4a9dca64f5ec468c2e565254bbb5/untethered.png --------------------------------------------------------------------------------