├── .gitignore ├── README.md └── Superstar ├── Shared ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ └── icon_512x512@2x.png │ ├── Contents.json │ └── menubar.imageset │ │ ├── Contents.json │ │ ├── menubar.png │ │ └── menubar@2x.png ├── ContentView.swift ├── EmptyStateView.swift ├── Extensions │ ├── CachedAsyncImage.swift │ └── View+Ext.swift ├── ImageAsset+Extensions.swift ├── Managers │ ├── AppsManager.swift │ ├── CredentialsManager.swift │ ├── IAPManager.swift │ └── ReviewManager.swift ├── Model │ ├── ReviewSortOrder.swift │ ├── SettingsPage.swift │ ├── Suggestion.swift │ └── TerritoryCode+Extensions.swift ├── SmallButton.swift ├── SuperstarApp.swift └── macOS │ ├── Extensions │ └── NSTextView+Extensions.swift │ ├── Menubar │ ├── MenuBarView │ │ ├── MenuAppsSelector.swift │ │ ├── MenuBarHeader.swift │ │ ├── MenuBarReview.swift │ │ └── MenuBarView.swift │ └── Menubar.swift │ ├── Support │ ├── FAQItem.swift │ ├── SupportFetcher.swift │ ├── SupportItemable.swift │ ├── SupportItems.swift │ ├── SupportLanding.swift │ ├── SupportScreen.swift │ └── SupportSectionDetailView.swift │ └── main │ ├── Detail │ ├── AppDetailView.swift │ ├── AppReviewsList.swift │ └── Review │ │ ├── Classes │ │ └── DeepL.swift │ │ ├── DetailReviewView.swift │ │ ├── FullReviewSide.swift │ │ ├── ShareReviewModal.swift │ │ ├── SuggestionView.swift │ │ └── Views │ │ ├── ReplyErrorView.swift │ │ ├── ReviewMetadata.swift │ │ ├── ReviewRatingView.swift │ │ ├── ReviewReplyArea.swift │ │ ├── ReviewSuggestionsPicker.swift │ │ ├── ReviewTitle.swift │ │ └── WebViews.swift │ ├── FullAppView.swift │ ├── Sheets │ ├── AddCredentialsView.swift │ ├── PreferencesView.swift │ ├── SettingsSheet.swift │ ├── SuggestionsConfigView.swift │ ├── Supernova.swift │ └── TranslationPreferencesScreen.swift │ └── Sidebar.swift ├── Superstar.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ └── Superstar (macOS).xcscheme ├── Superstar ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── ContentView.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── SuperstarApp.swift ├── iOS ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── ContentView.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── SuperstarApp.swift ├── macOS └── macOS.entitlements └── test.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/README.md -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/menubar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/menubar.imageset/Contents.json -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/menubar.imageset/menubar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/menubar.imageset/menubar.png -------------------------------------------------------------------------------- /Superstar/Shared/Assets.xcassets/menubar.imageset/menubar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Assets.xcassets/menubar.imageset/menubar@2x.png -------------------------------------------------------------------------------- /Superstar/Shared/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/ContentView.swift -------------------------------------------------------------------------------- /Superstar/Shared/EmptyStateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/EmptyStateView.swift -------------------------------------------------------------------------------- /Superstar/Shared/Extensions/CachedAsyncImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Extensions/CachedAsyncImage.swift -------------------------------------------------------------------------------- /Superstar/Shared/Extensions/View+Ext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Extensions/View+Ext.swift -------------------------------------------------------------------------------- /Superstar/Shared/ImageAsset+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/ImageAsset+Extensions.swift -------------------------------------------------------------------------------- /Superstar/Shared/Managers/AppsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Managers/AppsManager.swift -------------------------------------------------------------------------------- /Superstar/Shared/Managers/CredentialsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Managers/CredentialsManager.swift -------------------------------------------------------------------------------- /Superstar/Shared/Managers/IAPManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Managers/IAPManager.swift -------------------------------------------------------------------------------- /Superstar/Shared/Managers/ReviewManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Managers/ReviewManager.swift -------------------------------------------------------------------------------- /Superstar/Shared/Model/ReviewSortOrder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Model/ReviewSortOrder.swift -------------------------------------------------------------------------------- /Superstar/Shared/Model/SettingsPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Model/SettingsPage.swift -------------------------------------------------------------------------------- /Superstar/Shared/Model/Suggestion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Model/Suggestion.swift -------------------------------------------------------------------------------- /Superstar/Shared/Model/TerritoryCode+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/Model/TerritoryCode+Extensions.swift -------------------------------------------------------------------------------- /Superstar/Shared/SmallButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/SmallButton.swift -------------------------------------------------------------------------------- /Superstar/Shared/SuperstarApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/SuperstarApp.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/Extensions/NSTextView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/Extensions/NSTextView+Extensions.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/Menubar/MenuBarView/MenuAppsSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/Menubar/MenuBarView/MenuAppsSelector.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/Menubar/MenuBarView/MenuBarHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/Menubar/MenuBarView/MenuBarHeader.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/Menubar/MenuBarView/MenuBarReview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/Menubar/MenuBarView/MenuBarReview.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/Menubar/MenuBarView/MenuBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/Menubar/MenuBarView/MenuBarView.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/Menubar/Menubar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/Menubar/Menubar.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/Support/FAQItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/Support/FAQItem.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/Support/SupportFetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/Support/SupportFetcher.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/Support/SupportItemable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/Support/SupportItemable.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/Support/SupportItems.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/Support/SupportItems.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/Support/SupportLanding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/Support/SupportLanding.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/Support/SupportScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/Support/SupportScreen.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/Support/SupportSectionDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/Support/SupportSectionDetailView.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Detail/AppDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Detail/AppDetailView.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Detail/AppReviewsList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Detail/AppReviewsList.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Detail/Review/Classes/DeepL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Detail/Review/Classes/DeepL.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Detail/Review/DetailReviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Detail/Review/DetailReviewView.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Detail/Review/FullReviewSide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Detail/Review/FullReviewSide.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Detail/Review/ShareReviewModal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Detail/Review/ShareReviewModal.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Detail/Review/SuggestionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Detail/Review/SuggestionView.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Detail/Review/Views/ReplyErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Detail/Review/Views/ReplyErrorView.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Detail/Review/Views/ReviewMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Detail/Review/Views/ReviewMetadata.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Detail/Review/Views/ReviewRatingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Detail/Review/Views/ReviewRatingView.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Detail/Review/Views/ReviewReplyArea.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Detail/Review/Views/ReviewReplyArea.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Detail/Review/Views/ReviewSuggestionsPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Detail/Review/Views/ReviewSuggestionsPicker.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Detail/Review/Views/ReviewTitle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Detail/Review/Views/ReviewTitle.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Detail/Review/Views/WebViews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Detail/Review/Views/WebViews.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/FullAppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/FullAppView.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Sheets/AddCredentialsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Sheets/AddCredentialsView.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Sheets/PreferencesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Sheets/PreferencesView.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Sheets/SettingsSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Sheets/SettingsSheet.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Sheets/SuggestionsConfigView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Sheets/SuggestionsConfigView.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Sheets/Supernova.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Sheets/Supernova.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Sheets/TranslationPreferencesScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Sheets/TranslationPreferencesScreen.swift -------------------------------------------------------------------------------- /Superstar/Shared/macOS/main/Sidebar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Shared/macOS/main/Sidebar.swift -------------------------------------------------------------------------------- /Superstar/Superstar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Superstar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Superstar/Superstar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Superstar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Superstar/Superstar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Superstar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Superstar/Superstar.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Superstar.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Superstar/Superstar.xcodeproj/xcshareddata/xcschemes/Superstar (macOS).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Superstar.xcodeproj/xcshareddata/xcschemes/Superstar (macOS).xcscheme -------------------------------------------------------------------------------- /Superstar/Superstar/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Superstar/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Superstar/Superstar/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Superstar/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Superstar/Superstar/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Superstar/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Superstar/Superstar/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Superstar/ContentView.swift -------------------------------------------------------------------------------- /Superstar/Superstar/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Superstar/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Superstar/Superstar/SuperstarApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/Superstar/SuperstarApp.swift -------------------------------------------------------------------------------- /Superstar/iOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/iOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Superstar/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Superstar/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Superstar/iOS/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/iOS/ContentView.swift -------------------------------------------------------------------------------- /Superstar/iOS/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/iOS/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Superstar/iOS/SuperstarApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/iOS/SuperstarApp.swift -------------------------------------------------------------------------------- /Superstar/macOS/macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/macOS/macOS.entitlements -------------------------------------------------------------------------------- /Superstar/test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jordibruin/superstar/HEAD/Superstar/test.swift --------------------------------------------------------------------------------