├── .github └── FUNDING.yml ├── .gitignore ├── .vscode └── settings.json ├── Images ├── Featured.png ├── ItemView.png ├── LibraryView.png ├── LoginView.png └── TimelinesView.png ├── LICENSE.md ├── NeoDB ├── NeoDB.xcconfig-template ├── NeoDB.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ └── NeoDB.xcscheme ├── NeoDB │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── 1024x1024 copy 2@1x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── appInstance.casdb.imageset │ │ │ ├── Contents.json │ │ │ └── yHnuKVuGcDVyEa4bv0j0Fk0IPLA.png │ │ ├── appInstance.eggplant.imageset │ │ │ ├── Contents.json │ │ │ └── Eggplant.png │ │ ├── appInstance.minreol.imageset │ │ │ ├── Contents.json │ │ │ └── Minreol.png │ │ ├── appInstance.neodb.imageset │ │ │ ├── Contents.json │ │ │ └── NeoDB.png │ │ ├── custom.arrow.2.squarepath.slash.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.arrow.2.squarepath.slash.svg │ │ ├── custom.circle.circle.badge.checkmark.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.circle.circle.badge.checkmark.svg │ │ ├── custom.circle.circle.badge.minus.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.circle.circle.badge.minus.svg │ │ ├── custom.circle.circle.badge.plus.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.circle.circle.badge.plus.svg │ │ ├── custom.circle.circle.badge.xmark.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.circle.circle.badge.xmark.svg │ │ ├── custom.circle.circle.fill.badge.checkmark.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.circle.circle.fill.badge.checkmark.svg │ │ ├── custom.circle.circle.fill.badge.minus.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.circle.circle.fill.badge.minus.svg │ │ ├── custom.circle.circle.fill.badge.plus.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.circle.circle.fill.badge.plus.svg │ │ ├── custom.circle.circle.fill.badge.xmark.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.circle.circle.fill.badge.xmark.svg │ │ ├── custom.fediverse.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.fediverse.svg │ │ ├── custom.heart.badge.checkmark.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.heart.badge.checkmark.svg │ │ ├── custom.heart.badge.minus.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.heart.badge.minus.svg │ │ ├── custom.heart.badge.plus.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.heart.badge.plus.svg │ │ ├── custom.heart.badge.xmark.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.heart.badge.xmark.svg │ │ ├── custom.heart.fill.badge.checkmark.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.heart.fill.badge.checkmark.svg │ │ ├── custom.heart.fill.badge.minus.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.heart.fill.badge.minus.svg │ │ ├── custom.heart.fill.badge.plus.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.heart.fill.badge.plus.svg │ │ ├── custom.heart.fill.badge.xmark.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.heart.fill.badge.xmark.svg │ │ ├── custom.mastodon.fill.symbolset │ │ │ ├── Contents.json │ │ │ └── mastodon.fill.svg │ │ ├── custom.mastodon.symbolset │ │ │ ├── Contents.json │ │ │ └── mastodon.svg │ │ ├── custom.podcast.symbolset │ │ │ ├── Contents.json │ │ │ └── podcast-symbol.svg │ │ ├── custom.service.provider.archiveofourown.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.service.provider.archiveofourown.svg │ │ ├── custom.service.provider.bandcamp.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.service.provider.bandcamp.svg │ │ ├── custom.service.provider.bilibili.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.service.provider.bilibili.svg │ │ ├── custom.service.provider.discogs.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.service.provider.discogs.svg │ │ ├── custom.service.provider.douban.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.service.provider.douban.svg │ │ ├── custom.service.provider.goodreads.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.service.provider.goodreads.svg │ │ ├── custom.service.provider.google.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.service.provider.google.svg │ │ ├── custom.service.provider.googlereads.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.service.provider.googlereads.svg │ │ ├── custom.service.provider.imdb.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.service.provider.imdb.svg │ │ ├── custom.service.provider.spotify.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.service.provider.spotify.svg │ │ ├── custom.service.provider.steam.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.service.provider.steam.svg │ │ ├── custom.star.badge.checkmark.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.star.badge.checkmark.svg │ │ ├── custom.star.badge.minus.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.star.badge.minus.svg │ │ ├── custom.star.badge.plus.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.star.badge.plus.svg │ │ ├── custom.star.badge.xmark.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.star.badge.xmark.svg │ │ ├── custom.star.fill.badge.checkmark.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.star.fill.badge.checkmark.svg │ │ ├── custom.star.fill.badge.minus.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.star.fill.badge.minus.svg │ │ ├── custom.star.fill.badge.plus.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.star.fill.badge.plus.svg │ │ ├── custom.star.fill.badge.xmark.symbolset │ │ │ ├── Contents.json │ │ │ └── custom.star.fill.badge.xmark.svg │ │ ├── discover.searchURL.books.imageset │ │ │ ├── Books Dark.png │ │ │ ├── Books.png │ │ │ └── Contents.json │ │ ├── discover.searchURL.douban.imageset │ │ │ ├── Contents.json │ │ │ └── Douban.png │ │ ├── discover.searchURL.games.imageset │ │ │ ├── Contents.json │ │ │ ├── Game Dark.png │ │ │ └── Game.png │ │ ├── discover.searchURL.movies.imageset │ │ │ ├── Contents.json │ │ │ ├── Movie Dark.png │ │ │ └── Movie.png │ │ ├── discover.searchURL.music.imageset │ │ │ ├── Contents.json │ │ │ ├── Music Dark.png │ │ │ └── Music.png │ │ ├── grayBackground.colorset │ │ │ └── Contents.json │ │ ├── mastodon-logo.imageset │ │ │ ├── Contents.json │ │ │ ├── wordmark-black-text.svg │ │ │ └── wordmark-white-text.svg │ │ ├── mastodon.colorset │ │ │ └── Contents.json │ │ ├── mastodon.instruction.imageset │ │ │ ├── Contents.json │ │ │ ├── Instruction Grayscale Dark without header.svg │ │ │ └── Instruction Grayscale without header.svg │ │ ├── mastodonBackground.colorset │ │ │ └── Contents.json │ │ ├── mastodonPrimary.colorset │ │ │ └── Contents.json │ │ ├── neodb-logo.imageset │ │ │ ├── Contents.json │ │ │ ├── logo 1.svg │ │ │ └── logo.svg │ │ ├── piecelet-symbol.imageset │ │ │ ├── Contents.json │ │ │ ├── Symbol Dark@1x.png │ │ │ └── Symbol Light@1x.png │ │ ├── ratingPrimary.colorset │ │ │ └── Contents.json │ │ ├── settings.customize.defaultHome.discover.imageset │ │ │ ├── Contents.json │ │ │ ├── Simulator Screenshot - iPhone 16 Pro - 2025-02-12 at 16.43.34 1.png │ │ │ └── Simulator Screenshot - iPhone 16 Pro - 2025-02-12 at 16.43.38.png │ │ └── settings.customize.defaultHome.timelines.imageset │ │ │ ├── Contents.json │ │ │ ├── Simulator Screenshot - iPhone 16 Pro - 2025-02-12 at 16.22.04.png │ │ │ └── Simulator Screenshot - iPhone 16 Pro - 2025-02-12 at 16.44.00.png │ ├── ContentView.swift │ ├── Info.plist │ ├── NeoDB.entitlements │ ├── NeoDBApp.swift │ ├── Packages │ │ └── ExpandableText │ │ │ ├── Package.swift │ │ │ ├── Sources │ │ │ ├── ExpandableText │ │ │ │ ├── ExpandableText+Modifiers.swift │ │ │ │ └── ExpandableText.swift │ │ │ └── Utilities │ │ │ │ ├── OverlayAdapter.swift │ │ │ │ ├── TruncationTextMask.swift │ │ │ │ └── ViewSizeReader.swift │ │ │ └── Tests │ │ │ └── ExpandableTextTests │ │ │ └── ExpandableTextTests.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── Resources │ │ └── Localization │ │ │ ├── Discover.xcstrings │ │ │ ├── Item.xcstrings │ │ │ ├── Library.xcstrings │ │ │ ├── Settings.xcstrings │ │ │ └── Timelines.xcstrings │ ├── Services │ │ ├── Config │ │ │ ├── AppConfig.swift │ │ │ ├── AppInfo.swift │ │ │ └── StoreConfig.swift │ │ ├── Controllers │ │ │ ├── ItemRepository.swift │ │ │ ├── MarkDataController.swift │ │ │ └── StatusDataController.swift │ │ ├── Managers │ │ │ ├── AppAccount.swift │ │ │ ├── AppAccountsManager.swift │ │ │ ├── AppClient.swift │ │ │ ├── HapticService.swift │ │ │ ├── StoreService.swift │ │ │ └── TelemetryService.swift │ │ ├── Models │ │ │ ├── App │ │ │ │ └── AppInstance.swift │ │ │ ├── Managers │ │ │ │ ├── App.swift │ │ │ │ ├── AppsResponse.swift │ │ │ │ ├── InstanceClient.swift │ │ │ │ └── OauthToken.swift │ │ │ ├── Network │ │ │ │ ├── GalleryResult.swift │ │ │ │ ├── HTMLPage.swift │ │ │ │ ├── HTMLString.swift │ │ │ │ ├── InstanceSocial.swift │ │ │ │ ├── Item │ │ │ │ │ ├── Item.swift │ │ │ │ │ ├── ItemCategory.swift │ │ │ │ │ ├── ItemExternalResourceSchema.swift │ │ │ │ │ ├── ItemPostType.swift │ │ │ │ │ ├── ItemSchema.swift │ │ │ │ │ ├── ItemType.swift │ │ │ │ │ └── Posts │ │ │ │ │ │ └── PaginatedPostList.swift │ │ │ │ ├── JoinMastodonServers.swift │ │ │ │ ├── Mark │ │ │ │ │ ├── MarkInSchema.swift │ │ │ │ │ ├── MarkSchema.swift │ │ │ │ │ ├── MarkVisibility.swift │ │ │ │ │ ├── PagedMarkSchema.swift │ │ │ │ │ └── ShelfType.swift │ │ │ │ ├── Mastodon │ │ │ │ │ ├── MastodonAccount.swift │ │ │ │ │ ├── MastodonAccountRelationship.swift │ │ │ │ │ ├── MastodonCard.swift │ │ │ │ │ ├── MastodonEmoji.swift │ │ │ │ │ ├── MastodonFiltered.swift │ │ │ │ │ ├── MastodonHistory.swift │ │ │ │ │ ├── MastodonInstance.swift │ │ │ │ │ ├── MastodonMarker.swift │ │ │ │ │ ├── MastodonMediaAttachment.swift │ │ │ │ │ ├── MastodonMediaStatus.swift │ │ │ │ │ ├── MastodonMention.swift │ │ │ │ │ ├── MastodonPoll.swift │ │ │ │ │ ├── MastodonStatus.swift │ │ │ │ │ └── MastodonTag.swift │ │ │ │ ├── NeoDB │ │ │ │ │ ├── NeoDBAccount.swift │ │ │ │ │ ├── NeoDBAccountField.swift │ │ │ │ │ ├── NeoDBEmoji.swift │ │ │ │ │ ├── NeoDBMention.swift │ │ │ │ │ ├── NeoDBPost.swift │ │ │ │ │ └── NeoDBTag.swift │ │ │ │ ├── SearchResult.swift │ │ │ │ ├── ServerDate.swift │ │ │ │ ├── Shared │ │ │ │ │ ├── CrewMemberSchema.swift │ │ │ │ │ ├── LocalizedTitleSchema.swift │ │ │ │ │ └── MessageSchema.swift │ │ │ │ └── User.swift │ │ │ └── Shared │ │ │ │ └── Symbol.swift │ │ ├── Navigation │ │ │ ├── Router.swift │ │ │ ├── RouterDestination.swift │ │ │ ├── SafariRouter.swift │ │ │ ├── SheetDestination.swift │ │ │ └── TabDestination.swift │ │ ├── Network │ │ │ ├── Endpoints │ │ │ │ ├── AnnouncementEndpoint.swift │ │ │ │ ├── AppsEndpoint.swift │ │ │ │ ├── CatalogEndpoint.swift │ │ │ │ ├── InstanceEndpoint.swift │ │ │ │ ├── ItemEndpoint.swift │ │ │ │ ├── MarkEndpoint.swift │ │ │ │ ├── Mastodon │ │ │ │ │ ├── AccountsEndpoint.swift │ │ │ │ │ ├── FollowRequestsEndpoint.swift │ │ │ │ │ ├── MarkersEndpoint.swift │ │ │ │ │ ├── StatusesEndpoint.swift │ │ │ │ │ ├── TimelinesEndpoint.swift │ │ │ │ │ └── TrendsEndpoint.swift │ │ │ │ ├── NeoDB │ │ │ │ │ └── NeoDBAccountLoginEndpoint.swift │ │ │ │ ├── NetworkEndpoint.swift │ │ │ │ ├── OauthEndpoint.swift │ │ │ │ ├── ShelfEndpoint.swift │ │ │ │ ├── StreamingEndpoint.swift │ │ │ │ ├── TrendingEndpoint.swift │ │ │ │ └── UserEndpoint.swift │ │ │ ├── InstanceSocialClient.swift │ │ │ ├── JoinMastodonClient.swift │ │ │ └── NetworkClient.swift │ │ ├── Shared │ │ │ ├── Cache │ │ │ │ ├── Cache.swift │ │ │ │ └── CacheService.swift │ │ │ ├── Defaults │ │ │ │ ├── AppStorage.swift │ │ │ │ ├── DefaultsKeys.swift │ │ │ │ └── UserDefaults.swift │ │ │ ├── Extensions │ │ │ │ └── RelativeTime.swift │ │ │ ├── Keychain │ │ │ │ └── KeychainKeys.swift │ │ │ ├── Logging │ │ │ │ └── Logger.swift │ │ │ └── URL │ │ │ │ ├── ItemURL.swift │ │ │ │ ├── NeoDBURL.swift │ │ │ │ ├── OpenURL.swift │ │ │ │ └── URLUtilities.swift │ │ └── Utilities │ │ │ └── HapticFeedback.swift │ └── Views │ │ ├── Auth │ │ ├── InstanceInputView.swift │ │ ├── InstanceView.swift │ │ ├── InstanceViewModel.swift │ │ ├── LoginView.swift │ │ ├── LoginViewModel.swift │ │ ├── MastodonLoginView.swift │ │ ├── MastodonLoginViewModel.swift │ │ ├── TroubleshootingView.swift │ │ └── WelcomeView.swift │ │ ├── Discover │ │ ├── GalleryCategoryView.swift │ │ ├── GalleryView.swift │ │ ├── GalleryViewModel.swift │ │ ├── SearchItemView.swift │ │ ├── SearchURLView.swift │ │ ├── SearchView.swift │ │ └── SearchViewModel.swift │ │ ├── Item │ │ ├── Components │ │ │ ├── ItemViewActions.swift │ │ │ ├── ItemViewDescription.swift │ │ │ └── ItemViewPosts.swift │ │ ├── ItemDetailsSheet.swift │ │ ├── ItemView.swift │ │ ├── ItemViewModel.swift │ │ └── Shared │ │ │ ├── ItemCoverView.swift │ │ │ ├── ItemDescriptionView.swift │ │ │ ├── ItemMarkView.swift │ │ │ ├── ItemOpenInView.swift │ │ │ ├── ItemRatingView.swift │ │ │ └── ItemTitleView.swift │ │ ├── Library │ │ ├── Components │ │ │ └── ItemCategoryBarView.swift │ │ ├── LibraryView.swift │ │ └── LibraryViewModel.swift │ │ ├── Mark │ │ ├── MarkView.swift │ │ ├── MarkViewModel.swift │ │ └── StarRatingView.swift │ │ ├── MastodonProfile │ │ ├── ProfileView.swift │ │ └── ProfileViewModel.swift │ │ ├── MastodonStatus │ │ ├── Components │ │ │ ├── StatusItemView.swift │ │ │ ├── StatusItemViewModel.swift │ │ │ ├── StatusReplyView.swift │ │ │ └── StatusView.swift │ │ ├── MastodonStatusView.swift │ │ ├── MastodonStatusViewModel.swift │ │ └── Shared │ │ │ ├── AccountAvatarView.swift │ │ │ ├── AccountNameView.swift │ │ │ └── StatusActionsView.swift │ │ ├── MastodonTimelines │ │ ├── MastodonTimelinesFilter.swift │ │ ├── MastodonTimelinesState.swift │ │ ├── MastodonTimelinesView.swift │ │ ├── MastodonTimelinesViewModel.swift │ │ ├── TimelineActor.swift │ │ ├── TimelineState.swift │ │ └── TimelinesView.swift │ │ ├── Purchase │ │ ├── BottomPurchaseView.swift │ │ ├── PackageListView.swift │ │ ├── PackageText.swift │ │ ├── PurchaseView.swift │ │ └── PurchaseViewModel.swift │ │ ├── Settings │ │ ├── AboutView.swift │ │ ├── DeveloperView.swift │ │ ├── SettingsView.swift │ │ ├── SettingsViewCustomize.swift │ │ └── WishKitView.swift │ │ └── Shared │ │ ├── EmptyStateView.swift │ │ ├── Extension │ │ ├── Binding.swift │ │ ├── ContentMargins.swift │ │ ├── EdgeInsets.swift │ │ ├── HeightPreservingTabView.swift │ │ ├── Image.swift │ │ ├── LabelStyle.swift │ │ ├── ListSectionSpacing.swift │ │ ├── OnChange.swift │ │ └── Searchable.swift │ │ ├── TopTabBarView.swift │ │ └── WhatsNewView.swift ├── NeoDBTests │ └── NeoDBTests.swift └── NeoDBUITests │ ├── NeoDBUITests.swift │ └── NeoDBUITestsLaunchTests.swift └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Images/Featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/Images/Featured.png -------------------------------------------------------------------------------- /Images/ItemView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/Images/ItemView.png -------------------------------------------------------------------------------- /Images/LibraryView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/Images/LibraryView.png -------------------------------------------------------------------------------- /Images/LoginView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/Images/LoginView.png -------------------------------------------------------------------------------- /Images/TimelinesView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/Images/TimelinesView.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NeoDB/NeoDB.xcconfig-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB.xcconfig-template -------------------------------------------------------------------------------- /NeoDB/NeoDB.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NeoDB/NeoDB.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NeoDB/NeoDB.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /NeoDB/NeoDB.xcodeproj/xcshareddata/xcschemes/NeoDB.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB.xcodeproj/xcshareddata/xcschemes/NeoDB.xcscheme -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/AppIcon.appiconset/1024x1024 copy 2@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/AppIcon.appiconset/1024x1024 copy 2@1x.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/appInstance.casdb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/appInstance.casdb.imageset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/appInstance.casdb.imageset/yHnuKVuGcDVyEa4bv0j0Fk0IPLA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/appInstance.casdb.imageset/yHnuKVuGcDVyEa4bv0j0Fk0IPLA.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/appInstance.eggplant.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/appInstance.eggplant.imageset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/appInstance.eggplant.imageset/Eggplant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/appInstance.eggplant.imageset/Eggplant.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/appInstance.minreol.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/appInstance.minreol.imageset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/appInstance.minreol.imageset/Minreol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/appInstance.minreol.imageset/Minreol.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/appInstance.neodb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/appInstance.neodb.imageset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/appInstance.neodb.imageset/NeoDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/appInstance.neodb.imageset/NeoDB.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.arrow.2.squarepath.slash.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.arrow.2.squarepath.slash.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.arrow.2.squarepath.slash.symbolset/custom.arrow.2.squarepath.slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.arrow.2.squarepath.slash.symbolset/custom.arrow.2.squarepath.slash.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.checkmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.checkmark.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.checkmark.symbolset/custom.circle.circle.badge.checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.checkmark.symbolset/custom.circle.circle.badge.checkmark.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.minus.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.minus.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.minus.symbolset/custom.circle.circle.badge.minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.minus.symbolset/custom.circle.circle.badge.minus.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.plus.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.plus.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.plus.symbolset/custom.circle.circle.badge.plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.plus.symbolset/custom.circle.circle.badge.plus.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.xmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.xmark.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.xmark.symbolset/custom.circle.circle.badge.xmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.badge.xmark.symbolset/custom.circle.circle.badge.xmark.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.checkmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.checkmark.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.checkmark.symbolset/custom.circle.circle.fill.badge.checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.checkmark.symbolset/custom.circle.circle.fill.badge.checkmark.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.minus.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.minus.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.minus.symbolset/custom.circle.circle.fill.badge.minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.minus.symbolset/custom.circle.circle.fill.badge.minus.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.plus.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.plus.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.plus.symbolset/custom.circle.circle.fill.badge.plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.plus.symbolset/custom.circle.circle.fill.badge.plus.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.xmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.xmark.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.xmark.symbolset/custom.circle.circle.fill.badge.xmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.circle.circle.fill.badge.xmark.symbolset/custom.circle.circle.fill.badge.xmark.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.fediverse.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.fediverse.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.fediverse.symbolset/custom.fediverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.fediverse.symbolset/custom.fediverse.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.checkmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.checkmark.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.checkmark.symbolset/custom.heart.badge.checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.checkmark.symbolset/custom.heart.badge.checkmark.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.minus.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.minus.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.minus.symbolset/custom.heart.badge.minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.minus.symbolset/custom.heart.badge.minus.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.plus.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.plus.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.plus.symbolset/custom.heart.badge.plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.plus.symbolset/custom.heart.badge.plus.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.xmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.xmark.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.xmark.symbolset/custom.heart.badge.xmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.badge.xmark.symbolset/custom.heart.badge.xmark.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.checkmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.checkmark.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.checkmark.symbolset/custom.heart.fill.badge.checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.checkmark.symbolset/custom.heart.fill.badge.checkmark.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.minus.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.minus.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.minus.symbolset/custom.heart.fill.badge.minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.minus.symbolset/custom.heart.fill.badge.minus.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.plus.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.plus.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.plus.symbolset/custom.heart.fill.badge.plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.plus.symbolset/custom.heart.fill.badge.plus.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.xmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.xmark.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.xmark.symbolset/custom.heart.fill.badge.xmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.heart.fill.badge.xmark.symbolset/custom.heart.fill.badge.xmark.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.mastodon.fill.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.mastodon.fill.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.mastodon.fill.symbolset/mastodon.fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.mastodon.fill.symbolset/mastodon.fill.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.mastodon.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.mastodon.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.mastodon.symbolset/mastodon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.mastodon.symbolset/mastodon.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.podcast.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.podcast.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.podcast.symbolset/podcast-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.podcast.symbolset/podcast-symbol.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.archiveofourown.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.archiveofourown.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.archiveofourown.symbolset/custom.service.provider.archiveofourown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.archiveofourown.symbolset/custom.service.provider.archiveofourown.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.bandcamp.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.bandcamp.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.bandcamp.symbolset/custom.service.provider.bandcamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.bandcamp.symbolset/custom.service.provider.bandcamp.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.bilibili.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.bilibili.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.bilibili.symbolset/custom.service.provider.bilibili.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.bilibili.symbolset/custom.service.provider.bilibili.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.discogs.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.discogs.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.discogs.symbolset/custom.service.provider.discogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.discogs.symbolset/custom.service.provider.discogs.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.douban.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.douban.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.douban.symbolset/custom.service.provider.douban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.douban.symbolset/custom.service.provider.douban.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.goodreads.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.goodreads.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.goodreads.symbolset/custom.service.provider.goodreads.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.goodreads.symbolset/custom.service.provider.goodreads.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.google.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.google.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.google.symbolset/custom.service.provider.google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.google.symbolset/custom.service.provider.google.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.googlereads.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.googlereads.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.googlereads.symbolset/custom.service.provider.googlereads.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.googlereads.symbolset/custom.service.provider.googlereads.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.imdb.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.imdb.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.imdb.symbolset/custom.service.provider.imdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.imdb.symbolset/custom.service.provider.imdb.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.spotify.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.spotify.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.spotify.symbolset/custom.service.provider.spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.spotify.symbolset/custom.service.provider.spotify.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.steam.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.steam.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.service.provider.steam.symbolset/custom.service.provider.steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.service.provider.steam.symbolset/custom.service.provider.steam.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.badge.checkmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.badge.checkmark.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.badge.checkmark.symbolset/custom.star.badge.checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.badge.checkmark.symbolset/custom.star.badge.checkmark.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.badge.minus.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.badge.minus.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.badge.minus.symbolset/custom.star.badge.minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.badge.minus.symbolset/custom.star.badge.minus.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.badge.plus.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.badge.plus.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.badge.plus.symbolset/custom.star.badge.plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.badge.plus.symbolset/custom.star.badge.plus.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.badge.xmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.badge.xmark.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.badge.xmark.symbolset/custom.star.badge.xmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.badge.xmark.symbolset/custom.star.badge.xmark.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.checkmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.checkmark.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.checkmark.symbolset/custom.star.fill.badge.checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.checkmark.symbolset/custom.star.fill.badge.checkmark.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.minus.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.minus.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.minus.symbolset/custom.star.fill.badge.minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.minus.symbolset/custom.star.fill.badge.minus.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.plus.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.plus.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.plus.symbolset/custom.star.fill.badge.plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.plus.symbolset/custom.star.fill.badge.plus.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.xmark.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.xmark.symbolset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.xmark.symbolset/custom.star.fill.badge.xmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/custom.star.fill.badge.xmark.symbolset/custom.star.fill.badge.xmark.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/discover.searchURL.books.imageset/Books Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/discover.searchURL.books.imageset/Books Dark.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/discover.searchURL.books.imageset/Books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/discover.searchURL.books.imageset/Books.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/discover.searchURL.books.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/discover.searchURL.books.imageset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/discover.searchURL.douban.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/discover.searchURL.douban.imageset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/discover.searchURL.douban.imageset/Douban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/discover.searchURL.douban.imageset/Douban.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/discover.searchURL.games.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/discover.searchURL.games.imageset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/discover.searchURL.games.imageset/Game Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/discover.searchURL.games.imageset/Game Dark.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/discover.searchURL.games.imageset/Game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/discover.searchURL.games.imageset/Game.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/discover.searchURL.movies.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/discover.searchURL.movies.imageset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/discover.searchURL.movies.imageset/Movie Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/discover.searchURL.movies.imageset/Movie Dark.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/discover.searchURL.movies.imageset/Movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/discover.searchURL.movies.imageset/Movie.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/discover.searchURL.music.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/discover.searchURL.music.imageset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/discover.searchURL.music.imageset/Music Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/discover.searchURL.music.imageset/Music Dark.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/discover.searchURL.music.imageset/Music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/discover.searchURL.music.imageset/Music.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/grayBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/grayBackground.colorset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/mastodon-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/mastodon-logo.imageset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/mastodon-logo.imageset/wordmark-black-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/mastodon-logo.imageset/wordmark-black-text.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/mastodon-logo.imageset/wordmark-white-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/mastodon-logo.imageset/wordmark-white-text.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/mastodon.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/mastodon.colorset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/mastodon.instruction.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/mastodon.instruction.imageset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/mastodon.instruction.imageset/Instruction Grayscale Dark without header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/mastodon.instruction.imageset/Instruction Grayscale Dark without header.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/mastodon.instruction.imageset/Instruction Grayscale without header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/mastodon.instruction.imageset/Instruction Grayscale without header.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/mastodonBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/mastodonBackground.colorset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/mastodonPrimary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/mastodonPrimary.colorset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/neodb-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/neodb-logo.imageset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/neodb-logo.imageset/logo 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/neodb-logo.imageset/logo 1.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/neodb-logo.imageset/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/neodb-logo.imageset/logo.svg -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/piecelet-symbol.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/piecelet-symbol.imageset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/piecelet-symbol.imageset/Symbol Dark@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/piecelet-symbol.imageset/Symbol Dark@1x.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/piecelet-symbol.imageset/Symbol Light@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/piecelet-symbol.imageset/Symbol Light@1x.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/ratingPrimary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/ratingPrimary.colorset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/settings.customize.defaultHome.discover.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/settings.customize.defaultHome.discover.imageset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/settings.customize.defaultHome.discover.imageset/Simulator Screenshot - iPhone 16 Pro - 2025-02-12 at 16.43.34 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/settings.customize.defaultHome.discover.imageset/Simulator Screenshot - iPhone 16 Pro - 2025-02-12 at 16.43.34 1.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/settings.customize.defaultHome.discover.imageset/Simulator Screenshot - iPhone 16 Pro - 2025-02-12 at 16.43.38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/settings.customize.defaultHome.discover.imageset/Simulator Screenshot - iPhone 16 Pro - 2025-02-12 at 16.43.38.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/settings.customize.defaultHome.timelines.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/settings.customize.defaultHome.timelines.imageset/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/settings.customize.defaultHome.timelines.imageset/Simulator Screenshot - iPhone 16 Pro - 2025-02-12 at 16.22.04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/settings.customize.defaultHome.timelines.imageset/Simulator Screenshot - iPhone 16 Pro - 2025-02-12 at 16.22.04.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/Assets.xcassets/settings.customize.defaultHome.timelines.imageset/Simulator Screenshot - iPhone 16 Pro - 2025-02-12 at 16.44.00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Assets.xcassets/settings.customize.defaultHome.timelines.imageset/Simulator Screenshot - iPhone 16 Pro - 2025-02-12 at 16.44.00.png -------------------------------------------------------------------------------- /NeoDB/NeoDB/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/ContentView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Info.plist -------------------------------------------------------------------------------- /NeoDB/NeoDB/NeoDB.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/NeoDB.entitlements -------------------------------------------------------------------------------- /NeoDB/NeoDB/NeoDBApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/NeoDBApp.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Packages/ExpandableText/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Packages/ExpandableText/Package.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Packages/ExpandableText/Sources/ExpandableText/ExpandableText+Modifiers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Packages/ExpandableText/Sources/ExpandableText/ExpandableText+Modifiers.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Packages/ExpandableText/Sources/ExpandableText/ExpandableText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Packages/ExpandableText/Sources/ExpandableText/ExpandableText.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Packages/ExpandableText/Sources/Utilities/OverlayAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Packages/ExpandableText/Sources/Utilities/OverlayAdapter.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Packages/ExpandableText/Sources/Utilities/TruncationTextMask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Packages/ExpandableText/Sources/Utilities/TruncationTextMask.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Packages/ExpandableText/Sources/Utilities/ViewSizeReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Packages/ExpandableText/Sources/Utilities/ViewSizeReader.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Packages/ExpandableText/Tests/ExpandableTextTests/ExpandableTextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Packages/ExpandableText/Tests/ExpandableTextTests/ExpandableTextTests.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NeoDB/NeoDB/Resources/Localization/Discover.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Resources/Localization/Discover.xcstrings -------------------------------------------------------------------------------- /NeoDB/NeoDB/Resources/Localization/Item.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Resources/Localization/Item.xcstrings -------------------------------------------------------------------------------- /NeoDB/NeoDB/Resources/Localization/Library.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Resources/Localization/Library.xcstrings -------------------------------------------------------------------------------- /NeoDB/NeoDB/Resources/Localization/Settings.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Resources/Localization/Settings.xcstrings -------------------------------------------------------------------------------- /NeoDB/NeoDB/Resources/Localization/Timelines.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Resources/Localization/Timelines.xcstrings -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Config/AppConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Config/AppConfig.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Config/AppInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Config/AppInfo.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Config/StoreConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Config/StoreConfig.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Controllers/ItemRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Controllers/ItemRepository.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Controllers/MarkDataController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Controllers/MarkDataController.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Controllers/StatusDataController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Controllers/StatusDataController.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Managers/AppAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Managers/AppAccount.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Managers/AppAccountsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Managers/AppAccountsManager.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Managers/AppClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Managers/AppClient.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Managers/HapticService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Managers/HapticService.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Managers/StoreService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Managers/StoreService.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Managers/TelemetryService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Managers/TelemetryService.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/App/AppInstance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/App/AppInstance.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Managers/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Managers/App.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Managers/AppsResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Managers/AppsResponse.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Managers/InstanceClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Managers/InstanceClient.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Managers/OauthToken.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Managers/OauthToken.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/GalleryResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/GalleryResult.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/HTMLPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/HTMLPage.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/HTMLString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/HTMLString.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/InstanceSocial.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/InstanceSocial.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Item/Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Item/Item.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Item/ItemCategory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Item/ItemCategory.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Item/ItemExternalResourceSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Item/ItemExternalResourceSchema.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Item/ItemPostType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Item/ItemPostType.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Item/ItemSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Item/ItemSchema.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Item/ItemType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Item/ItemType.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Item/Posts/PaginatedPostList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Item/Posts/PaginatedPostList.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/JoinMastodonServers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/JoinMastodonServers.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mark/MarkInSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mark/MarkInSchema.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mark/MarkSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mark/MarkSchema.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mark/MarkVisibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mark/MarkVisibility.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mark/PagedMarkSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mark/PagedMarkSchema.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mark/ShelfType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mark/ShelfType.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonAccount.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonAccountRelationship.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonAccountRelationship.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonCard.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonEmoji.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonEmoji.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonFiltered.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonFiltered.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonHistory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonHistory.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonInstance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonInstance.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonMarker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonMarker.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonMediaAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonMediaAttachment.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonMediaStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonMediaStatus.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonMention.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonMention.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonPoll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonPoll.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonStatus.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Mastodon/MastodonTag.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/NeoDB/NeoDBAccount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/NeoDB/NeoDBAccount.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/NeoDB/NeoDBAccountField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/NeoDB/NeoDBAccountField.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/NeoDB/NeoDBEmoji.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/NeoDB/NeoDBEmoji.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/NeoDB/NeoDBMention.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/NeoDB/NeoDBMention.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/NeoDB/NeoDBPost.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/NeoDB/NeoDBPost.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/NeoDB/NeoDBTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/NeoDB/NeoDBTag.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/SearchResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/SearchResult.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/ServerDate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/ServerDate.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Shared/CrewMemberSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Shared/CrewMemberSchema.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Shared/LocalizedTitleSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Shared/LocalizedTitleSchema.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/Shared/MessageSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/Shared/MessageSchema.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Network/User.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Network/User.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Models/Shared/Symbol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Models/Shared/Symbol.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Navigation/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Navigation/Router.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Navigation/RouterDestination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Navigation/RouterDestination.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Navigation/SafariRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Navigation/SafariRouter.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Navigation/SheetDestination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Navigation/SheetDestination.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Navigation/TabDestination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Navigation/TabDestination.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/AnnouncementEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/AnnouncementEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/AppsEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/AppsEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/CatalogEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/CatalogEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/InstanceEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/InstanceEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/ItemEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/ItemEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/MarkEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/MarkEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/Mastodon/AccountsEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/Mastodon/AccountsEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/Mastodon/FollowRequestsEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/Mastodon/FollowRequestsEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/Mastodon/MarkersEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/Mastodon/MarkersEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/Mastodon/StatusesEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/Mastodon/StatusesEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/Mastodon/TimelinesEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/Mastodon/TimelinesEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/Mastodon/TrendsEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/Mastodon/TrendsEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/NeoDB/NeoDBAccountLoginEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/NeoDB/NeoDBAccountLoginEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/NetworkEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/NetworkEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/OauthEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/OauthEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/ShelfEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/ShelfEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/StreamingEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/StreamingEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/TrendingEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/TrendingEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/Endpoints/UserEndpoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/Endpoints/UserEndpoint.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/InstanceSocialClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/InstanceSocialClient.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/JoinMastodonClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/JoinMastodonClient.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Network/NetworkClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Network/NetworkClient.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Shared/Cache/Cache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Shared/Cache/Cache.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Shared/Cache/CacheService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Shared/Cache/CacheService.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Shared/Defaults/AppStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Shared/Defaults/AppStorage.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Shared/Defaults/DefaultsKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Shared/Defaults/DefaultsKeys.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Shared/Defaults/UserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Shared/Defaults/UserDefaults.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Shared/Extensions/RelativeTime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Shared/Extensions/RelativeTime.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Shared/Keychain/KeychainKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Shared/Keychain/KeychainKeys.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Shared/Logging/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Shared/Logging/Logger.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Shared/URL/ItemURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Shared/URL/ItemURL.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Shared/URL/NeoDBURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Shared/URL/NeoDBURL.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Shared/URL/OpenURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Shared/URL/OpenURL.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Shared/URL/URLUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Shared/URL/URLUtilities.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Services/Utilities/HapticFeedback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Services/Utilities/HapticFeedback.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Auth/InstanceInputView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Auth/InstanceInputView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Auth/InstanceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Auth/InstanceView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Auth/InstanceViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Auth/InstanceViewModel.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Auth/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Auth/LoginView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Auth/LoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Auth/LoginViewModel.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Auth/MastodonLoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Auth/MastodonLoginView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Auth/MastodonLoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Auth/MastodonLoginViewModel.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Auth/TroubleshootingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Auth/TroubleshootingView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Auth/WelcomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Auth/WelcomeView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Discover/GalleryCategoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Discover/GalleryCategoryView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Discover/GalleryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Discover/GalleryView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Discover/GalleryViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Discover/GalleryViewModel.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Discover/SearchItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Discover/SearchItemView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Discover/SearchURLView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Discover/SearchURLView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Discover/SearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Discover/SearchView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Discover/SearchViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Discover/SearchViewModel.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Item/Components/ItemViewActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Item/Components/ItemViewActions.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Item/Components/ItemViewDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Item/Components/ItemViewDescription.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Item/Components/ItemViewPosts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Item/Components/ItemViewPosts.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Item/ItemDetailsSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Item/ItemDetailsSheet.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Item/ItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Item/ItemView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Item/ItemViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Item/ItemViewModel.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Item/Shared/ItemCoverView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Item/Shared/ItemCoverView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Item/Shared/ItemDescriptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Item/Shared/ItemDescriptionView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Item/Shared/ItemMarkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Item/Shared/ItemMarkView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Item/Shared/ItemOpenInView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Item/Shared/ItemOpenInView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Item/Shared/ItemRatingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Item/Shared/ItemRatingView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Item/Shared/ItemTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Item/Shared/ItemTitleView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Library/Components/ItemCategoryBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Library/Components/ItemCategoryBarView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Library/LibraryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Library/LibraryView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Library/LibraryViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Library/LibraryViewModel.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Mark/MarkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Mark/MarkView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Mark/MarkViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Mark/MarkViewModel.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Mark/StarRatingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Mark/StarRatingView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonProfile/ProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonProfile/ProfileView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonProfile/ProfileViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonProfile/ProfileViewModel.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonStatus/Components/StatusItemView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonStatus/Components/StatusItemView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonStatus/Components/StatusItemViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonStatus/Components/StatusItemViewModel.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonStatus/Components/StatusReplyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonStatus/Components/StatusReplyView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonStatus/Components/StatusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonStatus/Components/StatusView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonStatus/MastodonStatusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonStatus/MastodonStatusView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonStatus/MastodonStatusViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonStatus/MastodonStatusViewModel.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonStatus/Shared/AccountAvatarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonStatus/Shared/AccountAvatarView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonStatus/Shared/AccountNameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonStatus/Shared/AccountNameView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonStatus/Shared/StatusActionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonStatus/Shared/StatusActionsView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonTimelines/MastodonTimelinesFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonTimelines/MastodonTimelinesFilter.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonTimelines/MastodonTimelinesState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonTimelines/MastodonTimelinesState.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonTimelines/MastodonTimelinesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonTimelines/MastodonTimelinesView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonTimelines/MastodonTimelinesViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonTimelines/MastodonTimelinesViewModel.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonTimelines/TimelineActor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonTimelines/TimelineActor.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonTimelines/TimelineState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonTimelines/TimelineState.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/MastodonTimelines/TimelinesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/MastodonTimelines/TimelinesView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Purchase/BottomPurchaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Purchase/BottomPurchaseView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Purchase/PackageListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Purchase/PackageListView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Purchase/PackageText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Purchase/PackageText.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Purchase/PurchaseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Purchase/PurchaseView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Purchase/PurchaseViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Purchase/PurchaseViewModel.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Settings/AboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Settings/AboutView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Settings/DeveloperView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Settings/DeveloperView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Settings/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Settings/SettingsView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Settings/SettingsViewCustomize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Settings/SettingsViewCustomize.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Settings/WishKitView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Settings/WishKitView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Shared/EmptyStateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Shared/EmptyStateView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Shared/Extension/Binding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Shared/Extension/Binding.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Shared/Extension/ContentMargins.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Shared/Extension/ContentMargins.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Shared/Extension/EdgeInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Shared/Extension/EdgeInsets.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Shared/Extension/HeightPreservingTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Shared/Extension/HeightPreservingTabView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Shared/Extension/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Shared/Extension/Image.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Shared/Extension/LabelStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Shared/Extension/LabelStyle.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Shared/Extension/ListSectionSpacing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Shared/Extension/ListSectionSpacing.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Shared/Extension/OnChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Shared/Extension/OnChange.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Shared/Extension/Searchable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Shared/Extension/Searchable.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Shared/TopTabBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Shared/TopTabBarView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDB/Views/Shared/WhatsNewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDB/Views/Shared/WhatsNewView.swift -------------------------------------------------------------------------------- /NeoDB/NeoDBTests/NeoDBTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDBTests/NeoDBTests.swift -------------------------------------------------------------------------------- /NeoDB/NeoDBUITests/NeoDBUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDBUITests/NeoDBUITests.swift -------------------------------------------------------------------------------- /NeoDB/NeoDBUITests/NeoDBUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/NeoDB/NeoDBUITests/NeoDBUITestsLaunchTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Piecelet/neodb-app/HEAD/README.md --------------------------------------------------------------------------------