├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── Sora ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── darkmode.png │ │ ├── lightmode.png │ │ └── tinting.png │ ├── Contents.json │ ├── Discord Icon.imageset │ │ ├── Contents.json │ │ └── Discord Icon.png │ ├── Github Icon.imageset │ │ ├── Contents.json │ │ └── Github Icon.png │ └── SplashScreenIcon.imageset │ │ ├── Contents.json │ │ └── SplashScreenIcon.png ├── ContentView.swift ├── Info.plist ├── Localization │ ├── ar.lproj │ │ └── Localizable.strings │ ├── as.lproj │ │ └── Localizable.strings │ ├── bos.lproj │ │ └── Localizable.strings │ ├── cs.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── hi.lproj │ │ └── Localizable.strings │ ├── it.lproj │ │ └── Localizable.strings │ ├── kk.lproj │ │ └── Localizable.strings │ ├── mn-Cyrl.lproj │ │ └── Localizable.strings │ ├── mn.lproj │ │ └── Localizable.strings │ ├── nl.lproj │ │ └── Localizable.strings │ ├── nn.lproj │ │ └── Localizable.strings │ ├── ro.lproj │ │ └── Localizable.strings │ ├── ru.lproj │ │ └── Localizable.strings │ ├── sk.lproj │ │ └── Localizable.strings │ └── sv.lproj │ │ └── Localizable.strings ├── MediaUtils │ ├── ContinueWatching │ │ ├── ContinueReadingItem.swift │ │ ├── ContinueReadingManager.swift │ │ ├── ContinueWatchingItem.swift │ │ └── ContinueWatchingManager.swift │ ├── CustomPlayer │ │ ├── Components │ │ │ ├── Double+Extension.swift │ │ │ ├── MusicProgressSlider.swift │ │ │ └── VolumeSlider.swift │ │ ├── CustomPlayer.swift │ │ └── Helpers │ │ │ ├── SubtitleSettingsManager.swift │ │ │ └── VTTSubtitlesLoader.swift │ ├── NormalPlayer │ │ ├── NormalPlayer.swift │ │ └── VideoPlayer.swift │ └── SharePlay │ │ └── VideoWatchingActivity.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Sora.entitlements ├── SoraApp.swift ├── Tracking & Metadata │ ├── AniList │ │ ├── Auth │ │ │ ├── Anilist-Login.swift │ │ │ └── Anilist-Token.swift │ │ └── Mutations │ │ │ └── AniListPushUpdates.swift │ ├── TMDB │ │ └── TMDB-FetchID.swift │ └── Trakt │ │ ├── Auth │ │ ├── Trakt-Login.swift │ │ └── Trakt-Token.swift │ │ └── Mutations │ │ └── TraktPushUpdates.swift ├── Utlis & Misc │ ├── Analytics │ │ └── Analytics.swift │ ├── DownloadUtils │ │ ├── DownloadManager.swift │ │ ├── DownloadModels.swift │ │ ├── DownloadPersistence.swift │ │ └── M3U8StreamExtractor.swift │ ├── Drops │ │ └── DropManager.swift │ ├── Extensions │ │ ├── Bundle+Language.swift │ │ ├── JavaScriptCore+Extensions.swift │ │ ├── LocalizationManager.swift │ │ ├── Notification+Name.swift │ │ ├── String.swift │ │ ├── UIDevice+Model.swift │ │ ├── URL.swift │ │ ├── URLSession.swift │ │ ├── UserDefaults.swift │ │ ├── View.swift │ │ └── finTopView.swift │ ├── JSLoader │ │ ├── Downloads │ │ │ ├── JSController+Downloader.swift │ │ │ ├── JSController-Downloads.swift │ │ │ ├── JSController-HeaderManager.swift │ │ │ └── JSController-StreamTypeDownload.swift │ │ ├── JSController-Details.swift │ │ ├── JSController-NetworkFetch.swift │ │ ├── JSController-Novel.swift │ │ ├── JSController-Search.swift │ │ ├── JSController-Streams.swift │ │ └── JSController.swift │ ├── Logger │ │ └── Logger.swift │ ├── Models │ │ └── TabItem.swift │ ├── Modules │ │ ├── CommunityLib.swift │ │ ├── ModuleAdditionSettingsView.swift │ │ ├── ModuleManager.swift │ │ └── Modules.swift │ ├── ProgressiveBlurView │ │ └── ProgressiveBlurView.swift │ ├── SkeletonCells │ │ ├── Shimmer.swift │ │ └── SkeletonCell.swift │ ├── TabBar │ │ └── TabBar.swift │ ├── ViewModifiers │ │ └── DeviceScaleModifier.swift │ └── WebAuthentication │ │ └── WebAuthenticationManager.swift └── Views │ ├── DownloadView.swift │ ├── LibraryView │ ├── AllReading.swift │ ├── AllWatching.swift │ ├── BookmarkComponents │ │ ├── BookmarkCell.swift │ │ ├── BookmarkCollectionGridCell.swift │ │ ├── BookmarkGridItemView.swift │ │ ├── BookmarkGridView.swift │ │ ├── BookmarkLink.swift │ │ ├── BookmarksDetailView.swift │ │ ├── CollectionDetailView.swift │ │ └── CollectionPickerView.swift │ ├── ContinueReadingSection.swift │ ├── LibraryManager.swift │ └── LibraryView.swift │ ├── MediaInfoView │ ├── ChapterCell │ │ └── ChapterCell.swift │ ├── EpisodeCell │ │ ├── CircularProgressBar.swift │ │ └── EpisodeCell.swift │ ├── Header │ │ └── StretchyHeader.swift │ ├── Matching │ │ ├── AnilistMatchView.swift │ │ └── TMDBMatchView.swift │ └── MediaInfoView.swift │ ├── ReaderView │ └── ReaderView.swift │ ├── SearchView │ ├── SearchComponents.swift │ ├── SearchResultsGrid.swift │ ├── SearchStateView.swift │ ├── SearchView.swift │ └── SearchViewComponents.swift │ ├── SettingsView │ ├── SettingsSubViews │ │ ├── OrphanedDownloadsView.swift │ │ ├── SettingsViewAbout.swift │ │ ├── SettingsViewBackup.swift │ │ ├── SettingsViewData.swift │ │ ├── SettingsViewDownloads.swift │ │ ├── SettingsViewGeneral.swift │ │ ├── SettingsViewLibrary.swift │ │ ├── SettingsViewLogger.swift │ │ ├── SettingsViewLoggerFilter.swift │ │ ├── SettingsViewModule.swift │ │ ├── SettingsViewPlayer.swift │ │ └── SettingsViewTrackers.swift │ └── SettingsView.swift │ └── SplashScreenView.swift ├── Sulfur.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── assets ├── Sulfur.png ├── banner1.png ├── banner2.png └── screenshots │ ├── ios-1.png │ ├── ios-2.png │ ├── ios-3.png │ ├── ios-4.png │ ├── ipad-1.png │ ├── ipad-2.png │ ├── ipad-3.png │ ├── ipad-4.png │ └── ipad-5.png ├── ipabuild.sh └── macbuild.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/README.md -------------------------------------------------------------------------------- /Sora/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Sora/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Sora/Assets.xcassets/AppIcon.appiconset/darkmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Assets.xcassets/AppIcon.appiconset/darkmode.png -------------------------------------------------------------------------------- /Sora/Assets.xcassets/AppIcon.appiconset/lightmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Assets.xcassets/AppIcon.appiconset/lightmode.png -------------------------------------------------------------------------------- /Sora/Assets.xcassets/AppIcon.appiconset/tinting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Assets.xcassets/AppIcon.appiconset/tinting.png -------------------------------------------------------------------------------- /Sora/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Sora/Assets.xcassets/Discord Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Assets.xcassets/Discord Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Sora/Assets.xcassets/Discord Icon.imageset/Discord Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Assets.xcassets/Discord Icon.imageset/Discord Icon.png -------------------------------------------------------------------------------- /Sora/Assets.xcassets/Github Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Assets.xcassets/Github Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Sora/Assets.xcassets/Github Icon.imageset/Github Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Assets.xcassets/Github Icon.imageset/Github Icon.png -------------------------------------------------------------------------------- /Sora/Assets.xcassets/SplashScreenIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Assets.xcassets/SplashScreenIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Sora/Assets.xcassets/SplashScreenIcon.imageset/SplashScreenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Assets.xcassets/SplashScreenIcon.imageset/SplashScreenIcon.png -------------------------------------------------------------------------------- /Sora/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/ContentView.swift -------------------------------------------------------------------------------- /Sora/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Info.plist -------------------------------------------------------------------------------- /Sora/Localization/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/as.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/as.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/bos.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/bos.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/kk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/kk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/mn-Cyrl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/mn-Cyrl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/mn.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/mn.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/nn.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/nn.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/Localization/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Localization/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Sora/MediaUtils/ContinueWatching/ContinueReadingItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/MediaUtils/ContinueWatching/ContinueReadingItem.swift -------------------------------------------------------------------------------- /Sora/MediaUtils/ContinueWatching/ContinueReadingManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/MediaUtils/ContinueWatching/ContinueReadingManager.swift -------------------------------------------------------------------------------- /Sora/MediaUtils/ContinueWatching/ContinueWatchingItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/MediaUtils/ContinueWatching/ContinueWatchingItem.swift -------------------------------------------------------------------------------- /Sora/MediaUtils/ContinueWatching/ContinueWatchingManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/MediaUtils/ContinueWatching/ContinueWatchingManager.swift -------------------------------------------------------------------------------- /Sora/MediaUtils/CustomPlayer/Components/Double+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/MediaUtils/CustomPlayer/Components/Double+Extension.swift -------------------------------------------------------------------------------- /Sora/MediaUtils/CustomPlayer/Components/MusicProgressSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/MediaUtils/CustomPlayer/Components/MusicProgressSlider.swift -------------------------------------------------------------------------------- /Sora/MediaUtils/CustomPlayer/Components/VolumeSlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/MediaUtils/CustomPlayer/Components/VolumeSlider.swift -------------------------------------------------------------------------------- /Sora/MediaUtils/CustomPlayer/CustomPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/MediaUtils/CustomPlayer/CustomPlayer.swift -------------------------------------------------------------------------------- /Sora/MediaUtils/CustomPlayer/Helpers/SubtitleSettingsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/MediaUtils/CustomPlayer/Helpers/SubtitleSettingsManager.swift -------------------------------------------------------------------------------- /Sora/MediaUtils/CustomPlayer/Helpers/VTTSubtitlesLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/MediaUtils/CustomPlayer/Helpers/VTTSubtitlesLoader.swift -------------------------------------------------------------------------------- /Sora/MediaUtils/NormalPlayer/NormalPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/MediaUtils/NormalPlayer/NormalPlayer.swift -------------------------------------------------------------------------------- /Sora/MediaUtils/NormalPlayer/VideoPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/MediaUtils/NormalPlayer/VideoPlayer.swift -------------------------------------------------------------------------------- /Sora/MediaUtils/SharePlay/VideoWatchingActivity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/MediaUtils/SharePlay/VideoWatchingActivity.swift -------------------------------------------------------------------------------- /Sora/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Sora/Sora.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Sora.entitlements -------------------------------------------------------------------------------- /Sora/SoraApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/SoraApp.swift -------------------------------------------------------------------------------- /Sora/Tracking & Metadata/AniList/Auth/Anilist-Login.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Tracking & Metadata/AniList/Auth/Anilist-Login.swift -------------------------------------------------------------------------------- /Sora/Tracking & Metadata/AniList/Auth/Anilist-Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Tracking & Metadata/AniList/Auth/Anilist-Token.swift -------------------------------------------------------------------------------- /Sora/Tracking & Metadata/AniList/Mutations/AniListPushUpdates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Tracking & Metadata/AniList/Mutations/AniListPushUpdates.swift -------------------------------------------------------------------------------- /Sora/Tracking & Metadata/TMDB/TMDB-FetchID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Tracking & Metadata/TMDB/TMDB-FetchID.swift -------------------------------------------------------------------------------- /Sora/Tracking & Metadata/Trakt/Auth/Trakt-Login.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Tracking & Metadata/Trakt/Auth/Trakt-Login.swift -------------------------------------------------------------------------------- /Sora/Tracking & Metadata/Trakt/Auth/Trakt-Token.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Tracking & Metadata/Trakt/Auth/Trakt-Token.swift -------------------------------------------------------------------------------- /Sora/Tracking & Metadata/Trakt/Mutations/TraktPushUpdates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Tracking & Metadata/Trakt/Mutations/TraktPushUpdates.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Analytics/Analytics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Analytics/Analytics.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/DownloadUtils/DownloadManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/DownloadUtils/DownloadManager.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/DownloadUtils/DownloadModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/DownloadUtils/DownloadModels.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/DownloadUtils/DownloadPersistence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/DownloadUtils/DownloadPersistence.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/DownloadUtils/M3U8StreamExtractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/DownloadUtils/M3U8StreamExtractor.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Drops/DropManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Drops/DropManager.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Extensions/Bundle+Language.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Extensions/Bundle+Language.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Extensions/JavaScriptCore+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Extensions/JavaScriptCore+Extensions.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Extensions/LocalizationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Extensions/LocalizationManager.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Extensions/Notification+Name.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Extensions/Notification+Name.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Extensions/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Extensions/String.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Extensions/UIDevice+Model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Extensions/UIDevice+Model.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Extensions/URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Extensions/URL.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Extensions/URLSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Extensions/URLSession.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Extensions/UserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Extensions/UserDefaults.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Extensions/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Extensions/View.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Extensions/finTopView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Extensions/finTopView.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/JSLoader/Downloads/JSController+Downloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/JSLoader/Downloads/JSController+Downloader.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/JSLoader/Downloads/JSController-Downloads.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/JSLoader/Downloads/JSController-Downloads.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/JSLoader/Downloads/JSController-HeaderManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/JSLoader/Downloads/JSController-HeaderManager.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/JSLoader/Downloads/JSController-StreamTypeDownload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/JSLoader/Downloads/JSController-StreamTypeDownload.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/JSLoader/JSController-Details.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/JSLoader/JSController-Details.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/JSLoader/JSController-NetworkFetch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/JSLoader/JSController-NetworkFetch.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/JSLoader/JSController-Novel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/JSLoader/JSController-Novel.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/JSLoader/JSController-Search.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/JSLoader/JSController-Search.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/JSLoader/JSController-Streams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/JSLoader/JSController-Streams.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/JSLoader/JSController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/JSLoader/JSController.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Logger/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Logger/Logger.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Models/TabItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Models/TabItem.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Modules/CommunityLib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Modules/CommunityLib.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Modules/ModuleAdditionSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Modules/ModuleAdditionSettingsView.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Modules/ModuleManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Modules/ModuleManager.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/Modules/Modules.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/Modules/Modules.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/ProgressiveBlurView/ProgressiveBlurView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/ProgressiveBlurView/ProgressiveBlurView.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/SkeletonCells/Shimmer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/SkeletonCells/Shimmer.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/SkeletonCells/SkeletonCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/SkeletonCells/SkeletonCell.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/TabBar/TabBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/TabBar/TabBar.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/ViewModifiers/DeviceScaleModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/ViewModifiers/DeviceScaleModifier.swift -------------------------------------------------------------------------------- /Sora/Utlis & Misc/WebAuthentication/WebAuthenticationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Utlis & Misc/WebAuthentication/WebAuthenticationManager.swift -------------------------------------------------------------------------------- /Sora/Views/DownloadView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/DownloadView.swift -------------------------------------------------------------------------------- /Sora/Views/LibraryView/AllReading.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/LibraryView/AllReading.swift -------------------------------------------------------------------------------- /Sora/Views/LibraryView/AllWatching.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/LibraryView/AllWatching.swift -------------------------------------------------------------------------------- /Sora/Views/LibraryView/BookmarkComponents/BookmarkCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/LibraryView/BookmarkComponents/BookmarkCell.swift -------------------------------------------------------------------------------- /Sora/Views/LibraryView/BookmarkComponents/BookmarkCollectionGridCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/LibraryView/BookmarkComponents/BookmarkCollectionGridCell.swift -------------------------------------------------------------------------------- /Sora/Views/LibraryView/BookmarkComponents/BookmarkGridItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/LibraryView/BookmarkComponents/BookmarkGridItemView.swift -------------------------------------------------------------------------------- /Sora/Views/LibraryView/BookmarkComponents/BookmarkGridView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/LibraryView/BookmarkComponents/BookmarkGridView.swift -------------------------------------------------------------------------------- /Sora/Views/LibraryView/BookmarkComponents/BookmarkLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/LibraryView/BookmarkComponents/BookmarkLink.swift -------------------------------------------------------------------------------- /Sora/Views/LibraryView/BookmarkComponents/BookmarksDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/LibraryView/BookmarkComponents/BookmarksDetailView.swift -------------------------------------------------------------------------------- /Sora/Views/LibraryView/BookmarkComponents/CollectionDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/LibraryView/BookmarkComponents/CollectionDetailView.swift -------------------------------------------------------------------------------- /Sora/Views/LibraryView/BookmarkComponents/CollectionPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/LibraryView/BookmarkComponents/CollectionPickerView.swift -------------------------------------------------------------------------------- /Sora/Views/LibraryView/ContinueReadingSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/LibraryView/ContinueReadingSection.swift -------------------------------------------------------------------------------- /Sora/Views/LibraryView/LibraryManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/LibraryView/LibraryManager.swift -------------------------------------------------------------------------------- /Sora/Views/LibraryView/LibraryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/LibraryView/LibraryView.swift -------------------------------------------------------------------------------- /Sora/Views/MediaInfoView/ChapterCell/ChapterCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/MediaInfoView/ChapterCell/ChapterCell.swift -------------------------------------------------------------------------------- /Sora/Views/MediaInfoView/EpisodeCell/CircularProgressBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/MediaInfoView/EpisodeCell/CircularProgressBar.swift -------------------------------------------------------------------------------- /Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/MediaInfoView/EpisodeCell/EpisodeCell.swift -------------------------------------------------------------------------------- /Sora/Views/MediaInfoView/Header/StretchyHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/MediaInfoView/Header/StretchyHeader.swift -------------------------------------------------------------------------------- /Sora/Views/MediaInfoView/Matching/AnilistMatchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/MediaInfoView/Matching/AnilistMatchView.swift -------------------------------------------------------------------------------- /Sora/Views/MediaInfoView/Matching/TMDBMatchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/MediaInfoView/Matching/TMDBMatchView.swift -------------------------------------------------------------------------------- /Sora/Views/MediaInfoView/MediaInfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/MediaInfoView/MediaInfoView.swift -------------------------------------------------------------------------------- /Sora/Views/ReaderView/ReaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/ReaderView/ReaderView.swift -------------------------------------------------------------------------------- /Sora/Views/SearchView/SearchComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SearchView/SearchComponents.swift -------------------------------------------------------------------------------- /Sora/Views/SearchView/SearchResultsGrid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SearchView/SearchResultsGrid.swift -------------------------------------------------------------------------------- /Sora/Views/SearchView/SearchStateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SearchView/SearchStateView.swift -------------------------------------------------------------------------------- /Sora/Views/SearchView/SearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SearchView/SearchView.swift -------------------------------------------------------------------------------- /Sora/Views/SearchView/SearchViewComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SearchView/SearchViewComponents.swift -------------------------------------------------------------------------------- /Sora/Views/SettingsView/SettingsSubViews/OrphanedDownloadsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SettingsView/SettingsSubViews/OrphanedDownloadsView.swift -------------------------------------------------------------------------------- /Sora/Views/SettingsView/SettingsSubViews/SettingsViewAbout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SettingsView/SettingsSubViews/SettingsViewAbout.swift -------------------------------------------------------------------------------- /Sora/Views/SettingsView/SettingsSubViews/SettingsViewBackup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SettingsView/SettingsSubViews/SettingsViewBackup.swift -------------------------------------------------------------------------------- /Sora/Views/SettingsView/SettingsSubViews/SettingsViewData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SettingsView/SettingsSubViews/SettingsViewData.swift -------------------------------------------------------------------------------- /Sora/Views/SettingsView/SettingsSubViews/SettingsViewDownloads.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SettingsView/SettingsSubViews/SettingsViewDownloads.swift -------------------------------------------------------------------------------- /Sora/Views/SettingsView/SettingsSubViews/SettingsViewGeneral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SettingsView/SettingsSubViews/SettingsViewGeneral.swift -------------------------------------------------------------------------------- /Sora/Views/SettingsView/SettingsSubViews/SettingsViewLibrary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SettingsView/SettingsSubViews/SettingsViewLibrary.swift -------------------------------------------------------------------------------- /Sora/Views/SettingsView/SettingsSubViews/SettingsViewLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SettingsView/SettingsSubViews/SettingsViewLogger.swift -------------------------------------------------------------------------------- /Sora/Views/SettingsView/SettingsSubViews/SettingsViewLoggerFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SettingsView/SettingsSubViews/SettingsViewLoggerFilter.swift -------------------------------------------------------------------------------- /Sora/Views/SettingsView/SettingsSubViews/SettingsViewModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SettingsView/SettingsSubViews/SettingsViewModule.swift -------------------------------------------------------------------------------- /Sora/Views/SettingsView/SettingsSubViews/SettingsViewPlayer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SettingsView/SettingsSubViews/SettingsViewPlayer.swift -------------------------------------------------------------------------------- /Sora/Views/SettingsView/SettingsSubViews/SettingsViewTrackers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SettingsView/SettingsSubViews/SettingsViewTrackers.swift -------------------------------------------------------------------------------- /Sora/Views/SettingsView/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SettingsView/SettingsView.swift -------------------------------------------------------------------------------- /Sora/Views/SplashScreenView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sora/Views/SplashScreenView.swift -------------------------------------------------------------------------------- /Sulfur.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sulfur.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sulfur.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sulfur.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Sulfur.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sulfur.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Sulfur.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/Sulfur.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /assets/Sulfur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/assets/Sulfur.png -------------------------------------------------------------------------------- /assets/banner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/assets/banner1.png -------------------------------------------------------------------------------- /assets/banner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/assets/banner2.png -------------------------------------------------------------------------------- /assets/screenshots/ios-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/assets/screenshots/ios-1.png -------------------------------------------------------------------------------- /assets/screenshots/ios-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/assets/screenshots/ios-2.png -------------------------------------------------------------------------------- /assets/screenshots/ios-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/assets/screenshots/ios-3.png -------------------------------------------------------------------------------- /assets/screenshots/ios-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/assets/screenshots/ios-4.png -------------------------------------------------------------------------------- /assets/screenshots/ipad-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/assets/screenshots/ipad-1.png -------------------------------------------------------------------------------- /assets/screenshots/ipad-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/assets/screenshots/ipad-2.png -------------------------------------------------------------------------------- /assets/screenshots/ipad-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/assets/screenshots/ipad-3.png -------------------------------------------------------------------------------- /assets/screenshots/ipad-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/assets/screenshots/ipad-4.png -------------------------------------------------------------------------------- /assets/screenshots/ipad-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/assets/screenshots/ipad-5.png -------------------------------------------------------------------------------- /ipabuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/ipabuild.sh -------------------------------------------------------------------------------- /macbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cranci1/Sora/HEAD/macbuild.sh --------------------------------------------------------------------------------