├── .env.example ├── .gitattributes ├── .github └── workflows │ ├── run_test_suite_ios17.yaml │ └── swiftlint.yaml ├── .gitignore ├── .swiftlint.yml ├── LICENSE-APACHE ├── README.md ├── docs └── gateway-provisioning │ ├── first-run.png │ └── settings-view.png ├── scripts └── run_tests.sh └── xcode └── Subconscious ├── Shared ├── AppIcon.swift ├── AppTheme.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── light.png │ │ ├── light_iPadApp_76.png │ │ ├── light_iPadApp_76@2x.png │ │ ├── light_iPadProApp_83.5@2x.png │ │ ├── light_iPadSettings_29.png │ │ ├── light_iPadSettings_29@2x.png │ │ ├── light_iPadSpotlight_40.png │ │ ├── light_iPadSpotlight_40@2x.png │ │ ├── light_iPhoneApp_60@2x.png │ │ ├── light_iPhoneApp_60@3x.png │ │ ├── light_iPhoneSettings_29@2x.png │ │ ├── light_iPhoneSettings_29@3x.png │ │ ├── light_iPhoneSpotlight_40@2x.png │ │ └── light_iPhoneSpotlight_40@3x.png │ ├── CardThemeColorA.colorset │ │ └── Contents.json │ ├── CardThemeColorB.colorset │ │ └── Contents.json │ ├── CardThemeColorC.colorset │ │ └── Contents.json │ ├── CardThemeColorD.colorset │ │ └── Contents.json │ ├── CardThemeColorE.colorset │ │ └── Contents.json │ ├── CardThemeHighlightColorA.colorset │ │ └── Contents.json │ ├── CardThemeHighlightColorB.colorset │ │ └── Contents.json │ ├── CardThemeHighlightColorC.colorset │ │ └── Contents.json │ ├── CardThemeHighlightColorD.colorset │ │ └── Contents.json │ ├── CardThemeHighlightColorE.colorset │ │ └── Contents.json │ ├── Contents.json │ ├── ns_logo.imageset │ │ ├── Contents.json │ │ ├── noo_logo_dark.png │ │ └── noo_logo_light.png │ ├── pfp-dog.imageset │ │ ├── Contents.json │ │ └── pfp-dog.png │ └── sub_logo.imageset │ │ ├── Contents.json │ │ ├── sub_logo_dark.png │ │ └── sub_logo_light.png ├── Components │ ├── AICommentsView.swift │ ├── AppTabView.swift │ ├── AppUpgradeView.swift │ ├── AppView.swift │ ├── BacklinksView.swift │ ├── Common │ │ ├── AppThemeBackgroundViewModifier.swift │ │ ├── AppThemeToolbarViewModifier.swift │ │ ├── AppendLinkSuggestionLabelView.swift │ │ ├── Audience │ │ │ ├── AudienceIconView.swift │ │ │ ├── AudienceMenuButtonView.swift │ │ │ └── MenuButtonView.swift │ │ ├── BackLabelStyle.swift │ │ ├── BacklinkReacts.swift │ │ ├── Buttons │ │ │ ├── BarButtonStyle.swift │ │ │ ├── CloseButtonView.swift │ │ │ ├── GhostPillButtonStyle.swift │ │ │ ├── PillButtonStyle.swift │ │ │ └── PrimaryButtonStyle.swift │ │ ├── Byline │ │ │ ├── BylineSmView.swift │ │ │ ├── BylineView.swift │ │ │ └── PetnameView.swift │ │ ├── CountChip.swift │ │ ├── DidView.swift │ │ ├── DragHandleView.swift │ │ ├── EllipsisLabelView.swift │ │ ├── EmptyStateView.swift │ │ ├── EntryList │ │ │ ├── EntryListEmptyView.swift │ │ │ ├── EntryListRowButtonStyle.swift │ │ │ ├── EntryListView.swift │ │ │ └── StoryListPlaceholderView.swift │ │ ├── EntryRow.swift │ │ ├── ErrorDetailView.swift │ │ ├── ExpandAlignedLeadingViewModifier.swift │ │ ├── FAB.swift │ │ ├── FabSpacerView.swift │ │ ├── Forms │ │ │ ├── PlaceholderTextView.swift │ │ │ ├── Search.swift │ │ │ ├── SearchTextField.swift │ │ │ ├── TextFieldLabel.swift │ │ │ ├── TextViewRepresentable.swift │ │ │ └── ValidatedTextField.swift │ │ ├── InlineFormattingBarView.swift │ │ ├── Layout │ │ │ └── TabbedColumnView.swift │ │ ├── LinkSuggestionLabelView.swift │ │ ├── MetaTableView.swift │ │ ├── NavigationToolbar.swift │ │ ├── NotFoundView.swift │ │ ├── PinTrailingBottom.swift │ │ ├── Profile │ │ │ ├── DidQrCodeView.swift │ │ │ ├── GenerativeProfilePic.swift │ │ │ ├── ProfileHeaderButtonStyle.swift │ │ │ ├── ProfilePic.swift │ │ │ ├── ProfilePicFrameViewModifier.swift │ │ │ ├── Sheets │ │ │ │ ├── EditProfileSheet.swift │ │ │ │ ├── EditProfileSheetModifier.swift │ │ │ │ ├── FollowNewUserFormSheet.swift │ │ │ │ ├── FollowNewUserSheetModifier.swift │ │ │ │ ├── FollowUserFormView.swift │ │ │ │ ├── FollowUserSheet.swift │ │ │ │ ├── FollowUserSheetModifier.swift │ │ │ │ ├── FollowUserViaQRCodeView.swift │ │ │ │ ├── RenameUserSheet.swift │ │ │ │ ├── UnfollowUserSheet.swift │ │ │ │ ├── UserProfileDetailMetaSheet.swift │ │ │ │ └── UserProfileDetialMetaSheetModifier.swift │ │ │ ├── UserProfileHeaderView.swift │ │ │ └── UserProfileView.swift │ │ ├── ProgressScrimView.swift │ │ ├── ProgressTorusView.swift │ │ ├── Recovery │ │ │ ├── RecoveryModeExplainPanelView.swift │ │ │ ├── RecoveryModeFormPanelView.swift │ │ │ └── RecoveryView.swift │ │ ├── RenameSuggestionLabelView.swift │ │ ├── ResourceSyncBadge.swift │ │ ├── RoundedTextFieldViewModifier.swift │ │ ├── RowButtonStyle.swift │ │ ├── RowViewModifier.swift │ │ ├── ScrimView.swift │ │ ├── Shapes │ │ │ └── Line.swift │ │ ├── SlashlinkBarView.swift │ │ ├── SlashlinkDisplayView.swift │ │ ├── Story │ │ │ ├── RectangleCroppedTopRightCorner.swift │ │ │ ├── StoryAudienceView.swift │ │ │ ├── StoryEntryView.swift │ │ │ ├── StoryPlaceholderView.swift │ │ │ └── StoryUserView.swift │ │ ├── SubtextTextViewRepresentable.swift │ │ ├── SubtextView.swift │ │ ├── Suggestion │ │ │ ├── SuggestionLabelStyle.swift │ │ │ ├── SuggestionLabelView.swift │ │ │ └── SuggestionViewModifier.swift │ │ ├── Tabs │ │ │ ├── TabButtonView.swift │ │ │ └── TabHeaderView.swift │ │ ├── ThickDividerView.swift │ │ ├── TitleGroupView.swift │ │ ├── Toast │ │ │ ├── ToastStackView.swift │ │ │ └── ToastView.swift │ │ ├── ToolbarTitleGroupView.swift │ │ ├── Transclude │ │ │ ├── RelatedNoteButtonStyle.swift │ │ │ ├── TranscludeBlockLayoutFragment.swift │ │ │ ├── TranscludeButtonStyle.swift │ │ │ ├── TranscludeListView.swift │ │ │ └── TranscludeView.swift │ │ ├── TruncateWithGradientViewModifier.swift │ │ └── WikilinkBarView.swift │ ├── Deck │ │ ├── CardModel.swift │ │ ├── CardStackView.swift │ │ ├── Cards │ │ │ ├── CardContentView.swift │ │ │ ├── CardView.swift │ │ │ ├── EntryCardView.swift │ │ │ ├── PromptCardView.swift │ │ │ └── RewardCardView.swift │ │ ├── DeckNavigationView.swift │ │ ├── DeckTheme.swift │ │ ├── DeckView.swift │ │ ├── MiniCardStackView.swift │ │ └── ShuffleProgressView.swift │ ├── Detail │ │ ├── DetailStackView.swift │ │ ├── DetailToolbarContent.swift │ │ ├── MemoDetailDescription.swift │ │ ├── MemoViewerDetailMetaSheetView.swift │ │ ├── MemoViewerDetailView.swift │ │ └── UserProfileDetailView.swift │ ├── Discover │ │ ├── DiscoverActionButtonStyle.swift │ │ ├── DiscoverNavigationView.swift │ │ ├── DiscoverUserView.swift │ │ └── DiscoverView.swift │ ├── Editor │ │ ├── AppendLinkSearchView.swift │ │ ├── DetailKeyboardToolbarView.swift │ │ ├── EditorModalSheetDetailView.swift │ │ ├── EditorModalSheetView.swift │ │ ├── FullscreenSheetView.swift │ │ ├── MemoEditorDetail.swift │ │ ├── MemoEditorDetailMetaSheetView.swift │ │ └── RenameSearchView.swift │ ├── FirstRun │ │ ├── FirstRunDoneView.swift │ │ ├── FirstRunInviteView.swift │ │ ├── FirstRunOrbitEffectView.swift │ │ ├── FirstRunProfileView.swift │ │ ├── FirstRunRecoveryView.swift │ │ ├── FirstRunSphereView.swift │ │ ├── FirstRunView.swift │ │ └── RecoveryPhraseView.swift │ ├── HomeProfileView.swift │ ├── LinkSearchView.swift │ ├── MainToolbar.swift │ ├── Notebook │ │ ├── Notebook.swift │ │ └── NotebookNavigationView.swift │ ├── OmniboxView.swift │ ├── Settings │ │ ├── AdvancedSettingsView.swift │ │ ├── AuthorizationSettingsView.swift │ │ ├── DeveloperSettingsView.swift │ │ ├── GatewayProvisioningSettingsSection.swift │ │ ├── GatewayURLSettingsView.swift │ │ ├── InviteCodeSettingsSection.swift │ │ ├── ProfileSettingsView.swift │ │ ├── SettingsView.swift │ │ └── SphereSettingsView.swift │ └── StackedGlowingImage.swift ├── Config.swift ├── Data │ └── Geists │ │ ├── combo.json │ │ ├── project.json │ │ └── zettelkasten.json ├── Fonts │ ├── IBMPlexMono-Bold.ttf │ ├── IBMPlexMono-BoldItalic.ttf │ ├── IBMPlexMono-Italic.ttf │ ├── IBMPlexMono-Regular.ttf │ ├── IBMPlexSans-Bold.ttf │ ├── IBMPlexSans-BoldItalic.ttf │ ├── IBMPlexSans-Italic.ttf │ ├── IBMPlexSans-Light.ttf │ ├── IBMPlexSans-Medium.ttf │ ├── IBMPlexSans-Regular.ttf │ └── LICENSE.txt ├── Library │ ├── AngleUtilities.swift │ ├── AnimationUtilities.swift │ ├── ArrayFirstIndexWhereID.swift │ ├── ArrayUtilities.swift │ ├── BundleUtilities.swift │ ├── CollectionUtilities.swift │ ├── ColorUtilities.swift │ ├── CombineUtilities.swift │ ├── DateUtilities.swift │ ├── DummyDataUtilities.swift │ ├── Error.swift │ ├── FileManagerUtilities.swift │ ├── FileSync.swift │ ├── Func.swift │ ├── IntUtilities.swift │ ├── LogFmt.swift │ ├── Mapping.swift │ ├── MathUtilities.swift │ ├── Migration.swift │ ├── NSRangeUtilities.swift │ ├── NaturalLanguage │ │ ├── PromptRouter.swift │ │ └── Tracery.swift │ ├── NoosphereLogProxy.swift │ ├── OptionalUtilities.swift │ ├── OrderedCollectionUtilities.swift │ ├── Pathlike.swift │ ├── Prose.swift │ ├── Redacted.swift │ ├── SQLite3Database.swift │ ├── Sentry.swift │ ├── ShadowStyle.swift │ ├── StoreUtilities.swift │ ├── StringSplitAtRange.swift │ ├── StringUtilities.swift │ ├── URLComponentsUtilities.swift │ ├── URLUtilities.swift │ ├── UserDefaultsProperty.swift │ ├── ViewDebugUtilities.swift │ └── ViewUtilities.swift ├── Models │ ├── ActivityEvent.swift │ ├── AppendLinkSuggestion.swift │ ├── Audience.swift │ ├── ContentType.swift │ ├── Did+SubconsciousLocal.swift │ ├── Did.swift │ ├── Entry.swift │ ├── EntryLink.swift │ ├── EntryStub.swift │ ├── FileInfo.swift │ ├── FormField.swift │ ├── GatewayURL.swift │ ├── HeaderSubtext.swift │ ├── Identified.swift │ ├── InviteCode.swift │ ├── Link.swift │ ├── LinkSuggestion.swift │ ├── LoadingState.swift │ ├── Markup.swift │ ├── Memo.swift │ ├── MemoData.swift │ ├── MemoEditorDetailResponse.swift │ ├── MemoRecord.swift │ ├── NeighborRecord.swift │ ├── OurSphereRecord.swift │ ├── Peer.swift │ ├── PeerRecord.swift │ ├── Petname.swift │ ├── RecoveryPhrase.swift │ ├── RenameSuggestion.swift │ ├── ResolutionStatus.swift │ ├── ResourceStatus.swift │ ├── SaveState.swift │ ├── Slashlink.swift │ ├── Slug.swift │ ├── StoryEntry.swift │ ├── StoryUser.swift │ ├── Suggestion.swift │ └── UserProfileBio.swift ├── OnboardingTheme.swift ├── Parsers │ ├── Header.swift │ ├── Parser.swift │ ├── Subtext.swift │ ├── SubtextAttributedStringRenderer.swift │ ├── SubtextUtilities.swift │ └── Tape.swift ├── Services │ ├── AddressBookService.swift │ ├── AppDefaults.swift │ ├── DataService.swift │ ├── DatabaseService.swift │ ├── FileStore.swift │ ├── GatewayProvisioningService.swift │ ├── HeaderSubtextMemoStore.swift │ ├── KeychainService.swift │ ├── MemoryStore.swift │ ├── Noosphere │ │ ├── Noosphere.swift │ │ ├── NoospherePeer.swift │ │ ├── NoospherePeerChange.swift │ │ ├── NoosphereService.swift │ │ ├── Sphere.swift │ │ └── SphereFile.swift │ ├── OpenAiService.swift │ ├── PasteboardService.swift │ ├── PromptService.swift │ ├── StoreProtocol.swift │ ├── TranscludeService.swift │ ├── UserLikesService.swift │ └── UserProfileService.swift ├── SubconsciousApp.swift └── UIKit │ ├── BlockEditor │ ├── Appendix │ │ └── Related │ │ │ ├── BlockEditorRelatedModel.swift │ │ │ └── RelatedCell.swift │ ├── BlockEditor.swift │ ├── BlockEditorModel.swift │ ├── BlockEditorModelUpdate.swift │ ├── BlockEditorRepresentable.swift │ ├── BlockEditorSubtextEditorMarkup.swift │ ├── BlockEditorViewController.swift │ ├── Blocks │ │ ├── BlockEditorBlockSelectView.swift │ │ ├── BlockFormatMenu.swift │ │ ├── BlockModel.swift │ │ ├── BlockToolbar.swift │ │ ├── BlocksModel.swift │ │ ├── ErrorCell.swift │ │ ├── HeadingBlockCell.swift │ │ ├── ListBlockCell.swift │ │ ├── QuoteBlockCell.swift │ │ ├── TextBlockCell.swift │ │ └── TextBlockModel.swift │ └── Common │ │ ├── SubtextTextEditorView.swift │ │ ├── SubtextTextView.swift │ │ └── Transclude │ │ └── BlockEditorTranscludeListView.swift │ ├── UIBarButtonItemUtilities.swift │ ├── UIFontHelpers.swift │ ├── UIHostingView.swift │ ├── UIStackViewHelpers.swift │ ├── UITextViewHelpers.swift │ ├── UIViewDivider.swift │ ├── UIViewHelpers.swift │ ├── UIViewIconButton.swift │ ├── UIViewPreviewRepresentable.swift │ └── UIViewSpacer.swift ├── Subconscious.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ ├── xcbaselines │ └── B80057E727DC355E002C0129.xcbaseline │ │ └── 73DEAF14-78DE-4620-81A3-9232B506BA93.plist │ └── xcschemes │ └── Subconscious (iOS).xcscheme ├── SubconsciousTests ├── MockErrorLoggingService.swift ├── SubconsciousTests.swift ├── TestUtilities.swift ├── Test_Markup.swift ├── Tests_AddressBookService.swift ├── Tests_App.swift ├── Tests_AppMigrations.swift ├── Tests_ArrayUtilities.swift ├── Tests_Audience.swift ├── Tests_BlockEditorBlockModel.swift ├── Tests_CardModel.swift ├── Tests_CollectionUtilities.swift ├── Tests_CombineUtilities.swift ├── Tests_Config.swift ├── Tests_DataService.swift ├── Tests_DatabaseService.swift ├── Tests_DeckDetailStackCursor.swift ├── Tests_Deck_NotificationActions.swift ├── Tests_Detail.swift ├── Tests_DetailStack.swift ├── Tests_Did+SubconsciousLocal.swift ├── Tests_Did.swift ├── Tests_EntryLink.swift ├── Tests_FileFingerprint.swift ├── Tests_FirstRun.swift ├── Tests_FormField.swift ├── Tests_Func.swift ├── Tests_Header.swift ├── Tests_HeaderSubtext.swift ├── Tests_HomeProfileAction.swift ├── Tests_HomeProfileDetailStackCursor.swift ├── Tests_HomeProfile_NotificationActions.swift ├── Tests_Link.swift ├── Tests_LogFmt.swift ├── Tests_MarkupText.swift ├── Tests_MathUtilities.swift ├── Tests_Memo.swift ├── Tests_MemoEditorDetailNotification.swift ├── Tests_MemoRecord.swift ├── Tests_MemoViewerDetailMetaSheet.swift ├── Tests_Migrations.swift ├── Tests_Noosphere.swift ├── Tests_NoosphereService.swift ├── Tests_NotebookAction.swift ├── Tests_NotebookDetailStackCursor.swift ├── Tests_NotebookUpdate.swift ├── Tests_Notebook_NotificationActions.swift ├── Tests_OrderedCollectionUtilities.swift ├── Tests_Parser.swift ├── Tests_Peer.swift ├── Tests_Petname.swift ├── Tests_PromptRouter.swift ├── Tests_Prose.swift ├── Tests_RecoveryModeView.swift ├── Tests_RecoveryPhrase.swift ├── Tests_RecoveryPhraseView.swift ├── Tests_Redacted.swift ├── Tests_SQLite3Database.swift ├── Tests_Search.swift ├── Tests_Slashlink.swift ├── Tests_Slug.swift ├── Tests_Sphere.swift ├── Tests_SphereFile.swift ├── Tests_StoryUser.swift ├── Tests_StringSplitAtRange.swift ├── Tests_StringUtilities.swift ├── Tests_Subtext.swift ├── Tests_SubtextAttributedStringRenderer.swift ├── Tests_Tape.swift ├── Tests_Tracery.swift ├── Tests_TranscludeService.swift ├── Tests_UIStackViewHelpers.swift ├── Tests_URLComponentsUtilities.swift ├── Tests_URLUtilities.swift ├── Tests_UserDefaultProperty.swift ├── Tests_UserLikesService.swift ├── Tests_UserProfileBio.swift ├── Tests_UserProfileDetailModel.swift └── Tests_UserProfileService.swift ├── Tests iOS ├── Tests_iOS.swift └── Tests_iOSLaunchTests.swift ├── Tests macOS ├── Tests_macOS.swift └── Tests_macOSLaunchTests.swift ├── iOS ├── Development.xcconfig ├── Info.plist └── Release.xcconfig └── macOS ├── Info.plist └── macOS.entitlements /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/run_test_suite_ios17.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/.github/workflows/run_test_suite_ios17.yaml -------------------------------------------------------------------------------- /.github/workflows/swiftlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/.github/workflows/swiftlint.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/README.md -------------------------------------------------------------------------------- /docs/gateway-provisioning/first-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/docs/gateway-provisioning/first-run.png -------------------------------------------------------------------------------- /docs/gateway-provisioning/settings-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/docs/gateway-provisioning/settings-view.png -------------------------------------------------------------------------------- /scripts/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/scripts/run_tests.sh -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/AppIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/AppIcon.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/AppTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/AppTheme.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPadApp_76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPadApp_76.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPadApp_76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPadApp_76@2x.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPadProApp_83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPadProApp_83.5@2x.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPadSettings_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPadSettings_29.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPadSettings_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPadSettings_29@2x.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPadSpotlight_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPadSpotlight_40.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPadSpotlight_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPadSpotlight_40@2x.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPhoneApp_60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPhoneApp_60@2x.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPhoneApp_60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPhoneApp_60@3x.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPhoneSettings_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPhoneSettings_29@2x.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPhoneSettings_29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPhoneSettings_29@3x.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPhoneSpotlight_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPhoneSpotlight_40@2x.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPhoneSpotlight_40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/AppIcon.appiconset/light_iPhoneSpotlight_40@3x.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/CardThemeColorA.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/CardThemeColorA.colorset/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/CardThemeColorB.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/CardThemeColorB.colorset/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/CardThemeColorC.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/CardThemeColorC.colorset/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/CardThemeColorD.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/CardThemeColorD.colorset/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/CardThemeColorE.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/CardThemeColorE.colorset/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/CardThemeHighlightColorA.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/CardThemeHighlightColorA.colorset/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/CardThemeHighlightColorB.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/CardThemeHighlightColorB.colorset/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/CardThemeHighlightColorC.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/CardThemeHighlightColorC.colorset/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/CardThemeHighlightColorD.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/CardThemeHighlightColorD.colorset/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/CardThemeHighlightColorE.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/CardThemeHighlightColorE.colorset/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/ns_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/ns_logo.imageset/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/ns_logo.imageset/noo_logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/ns_logo.imageset/noo_logo_dark.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/ns_logo.imageset/noo_logo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/ns_logo.imageset/noo_logo_light.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/pfp-dog.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/pfp-dog.imageset/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/pfp-dog.imageset/pfp-dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/pfp-dog.imageset/pfp-dog.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/sub_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/sub_logo.imageset/Contents.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/sub_logo.imageset/sub_logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/sub_logo.imageset/sub_logo_dark.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Assets.xcassets/sub_logo.imageset/sub_logo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Assets.xcassets/sub_logo.imageset/sub_logo_light.png -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/AICommentsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/AICommentsView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/AppTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/AppTabView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/AppUpgradeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/AppUpgradeView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/AppView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/AppView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/BacklinksView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/BacklinksView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/AppThemeBackgroundViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/AppThemeBackgroundViewModifier.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/AppThemeToolbarViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/AppThemeToolbarViewModifier.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/AppendLinkSuggestionLabelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/AppendLinkSuggestionLabelView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Audience/AudienceIconView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Audience/AudienceIconView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Audience/AudienceMenuButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Audience/AudienceMenuButtonView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Audience/MenuButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Audience/MenuButtonView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/BackLabelStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/BackLabelStyle.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/BacklinkReacts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/BacklinkReacts.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Buttons/BarButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Buttons/BarButtonStyle.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Buttons/CloseButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Buttons/CloseButtonView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Buttons/GhostPillButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Buttons/GhostPillButtonStyle.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Buttons/PillButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Buttons/PillButtonStyle.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Buttons/PrimaryButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Buttons/PrimaryButtonStyle.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Byline/BylineSmView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Byline/BylineSmView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Byline/BylineView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Byline/BylineView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Byline/PetnameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Byline/PetnameView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/CountChip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/CountChip.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/DidView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/DidView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/DragHandleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/DragHandleView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/EllipsisLabelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/EllipsisLabelView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/EmptyStateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/EmptyStateView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/EntryList/EntryListEmptyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/EntryList/EntryListEmptyView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/EntryList/EntryListRowButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/EntryList/EntryListRowButtonStyle.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/EntryList/EntryListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/EntryList/EntryListView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/EntryList/StoryListPlaceholderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/EntryList/StoryListPlaceholderView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/EntryRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/EntryRow.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/ErrorDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/ErrorDetailView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/ExpandAlignedLeadingViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/ExpandAlignedLeadingViewModifier.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/FAB.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/FAB.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/FabSpacerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/FabSpacerView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Forms/PlaceholderTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Forms/PlaceholderTextView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Forms/Search.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Forms/Search.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Forms/SearchTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Forms/SearchTextField.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Forms/TextFieldLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Forms/TextFieldLabel.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Forms/TextViewRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Forms/TextViewRepresentable.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Forms/ValidatedTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Forms/ValidatedTextField.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/InlineFormattingBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/InlineFormattingBarView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Layout/TabbedColumnView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Layout/TabbedColumnView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/LinkSuggestionLabelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/LinkSuggestionLabelView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/MetaTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/MetaTableView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/NavigationToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/NavigationToolbar.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/NotFoundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/NotFoundView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/PinTrailingBottom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/PinTrailingBottom.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/DidQrCodeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/DidQrCodeView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/GenerativeProfilePic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/GenerativeProfilePic.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/ProfileHeaderButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/ProfileHeaderButtonStyle.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/ProfilePic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/ProfilePic.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/ProfilePicFrameViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/ProfilePicFrameViewModifier.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/Sheets/EditProfileSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/Sheets/EditProfileSheet.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/Sheets/EditProfileSheetModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/Sheets/EditProfileSheetModifier.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/Sheets/FollowNewUserFormSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/Sheets/FollowNewUserFormSheet.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/Sheets/FollowNewUserSheetModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/Sheets/FollowNewUserSheetModifier.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/Sheets/FollowUserFormView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/Sheets/FollowUserFormView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/Sheets/FollowUserSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/Sheets/FollowUserSheet.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/Sheets/FollowUserSheetModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/Sheets/FollowUserSheetModifier.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/Sheets/FollowUserViaQRCodeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/Sheets/FollowUserViaQRCodeView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/Sheets/RenameUserSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/Sheets/RenameUserSheet.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/Sheets/UnfollowUserSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/Sheets/UnfollowUserSheet.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/Sheets/UserProfileDetailMetaSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/Sheets/UserProfileDetailMetaSheet.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/Sheets/UserProfileDetialMetaSheetModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/Sheets/UserProfileDetialMetaSheetModifier.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/UserProfileHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/UserProfileHeaderView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Profile/UserProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Profile/UserProfileView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/ProgressScrimView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/ProgressScrimView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/ProgressTorusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/ProgressTorusView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Recovery/RecoveryModeExplainPanelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Recovery/RecoveryModeExplainPanelView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Recovery/RecoveryModeFormPanelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Recovery/RecoveryModeFormPanelView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Recovery/RecoveryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Recovery/RecoveryView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/RenameSuggestionLabelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/RenameSuggestionLabelView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/ResourceSyncBadge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/ResourceSyncBadge.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/RoundedTextFieldViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/RoundedTextFieldViewModifier.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/RowButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/RowButtonStyle.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/RowViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/RowViewModifier.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/ScrimView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/ScrimView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Shapes/Line.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Shapes/Line.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/SlashlinkBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/SlashlinkBarView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/SlashlinkDisplayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/SlashlinkDisplayView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Story/RectangleCroppedTopRightCorner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Story/RectangleCroppedTopRightCorner.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Story/StoryAudienceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Story/StoryAudienceView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Story/StoryEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Story/StoryEntryView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Story/StoryPlaceholderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Story/StoryPlaceholderView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Story/StoryUserView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Story/StoryUserView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/SubtextTextViewRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/SubtextTextViewRepresentable.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/SubtextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/SubtextView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Suggestion/SuggestionLabelStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Suggestion/SuggestionLabelStyle.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Suggestion/SuggestionLabelView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Suggestion/SuggestionLabelView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Suggestion/SuggestionViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Suggestion/SuggestionViewModifier.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Tabs/TabButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Tabs/TabButtonView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Tabs/TabHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Tabs/TabHeaderView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/ThickDividerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/ThickDividerView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/TitleGroupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/TitleGroupView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Toast/ToastStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Toast/ToastStackView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Toast/ToastView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Toast/ToastView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/ToolbarTitleGroupView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/ToolbarTitleGroupView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Transclude/RelatedNoteButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Transclude/RelatedNoteButtonStyle.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Transclude/TranscludeBlockLayoutFragment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Transclude/TranscludeBlockLayoutFragment.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Transclude/TranscludeButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Transclude/TranscludeButtonStyle.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Transclude/TranscludeListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Transclude/TranscludeListView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/Transclude/TranscludeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/Transclude/TranscludeView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/TruncateWithGradientViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/TruncateWithGradientViewModifier.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Common/WikilinkBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Common/WikilinkBarView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Deck/CardModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Deck/CardModel.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Deck/CardStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Deck/CardStackView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Deck/Cards/CardContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Deck/Cards/CardContentView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Deck/Cards/CardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Deck/Cards/CardView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Deck/Cards/EntryCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Deck/Cards/EntryCardView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Deck/Cards/PromptCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Deck/Cards/PromptCardView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Deck/Cards/RewardCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Deck/Cards/RewardCardView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Deck/DeckNavigationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Deck/DeckNavigationView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Deck/DeckTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Deck/DeckTheme.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Deck/DeckView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Deck/DeckView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Deck/MiniCardStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Deck/MiniCardStackView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Deck/ShuffleProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Deck/ShuffleProgressView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Detail/DetailStackView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Detail/DetailStackView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Detail/DetailToolbarContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Detail/DetailToolbarContent.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Detail/MemoDetailDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Detail/MemoDetailDescription.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Detail/MemoViewerDetailMetaSheetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Detail/MemoViewerDetailMetaSheetView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Detail/MemoViewerDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Detail/MemoViewerDetailView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Detail/UserProfileDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Detail/UserProfileDetailView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Discover/DiscoverActionButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Discover/DiscoverActionButtonStyle.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Discover/DiscoverNavigationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Discover/DiscoverNavigationView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Discover/DiscoverUserView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Discover/DiscoverUserView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Discover/DiscoverView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Discover/DiscoverView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Editor/AppendLinkSearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Editor/AppendLinkSearchView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Editor/DetailKeyboardToolbarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Editor/DetailKeyboardToolbarView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Editor/EditorModalSheetDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Editor/EditorModalSheetDetailView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Editor/EditorModalSheetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Editor/EditorModalSheetView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Editor/FullscreenSheetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Editor/FullscreenSheetView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Editor/MemoEditorDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Editor/MemoEditorDetail.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Editor/MemoEditorDetailMetaSheetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Editor/MemoEditorDetailMetaSheetView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Editor/RenameSearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Editor/RenameSearchView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/FirstRun/FirstRunDoneView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/FirstRun/FirstRunDoneView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/FirstRun/FirstRunInviteView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/FirstRun/FirstRunInviteView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/FirstRun/FirstRunOrbitEffectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/FirstRun/FirstRunOrbitEffectView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/FirstRun/FirstRunProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/FirstRun/FirstRunProfileView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/FirstRun/FirstRunRecoveryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/FirstRun/FirstRunRecoveryView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/FirstRun/FirstRunSphereView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/FirstRun/FirstRunSphereView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/FirstRun/FirstRunView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/FirstRun/FirstRunView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/FirstRun/RecoveryPhraseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/FirstRun/RecoveryPhraseView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/HomeProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/HomeProfileView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/LinkSearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/LinkSearchView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/MainToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/MainToolbar.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Notebook/Notebook.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Notebook/Notebook.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Notebook/NotebookNavigationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Notebook/NotebookNavigationView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/OmniboxView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/OmniboxView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Settings/AdvancedSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Settings/AdvancedSettingsView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Settings/AuthorizationSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Settings/AuthorizationSettingsView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Settings/DeveloperSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Settings/DeveloperSettingsView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Settings/GatewayProvisioningSettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Settings/GatewayProvisioningSettingsSection.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Settings/GatewayURLSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Settings/GatewayURLSettingsView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Settings/InviteCodeSettingsSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Settings/InviteCodeSettingsSection.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Settings/ProfileSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Settings/ProfileSettingsView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Settings/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Settings/SettingsView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/Settings/SphereSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/Settings/SphereSettingsView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Components/StackedGlowingImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Components/StackedGlowingImage.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Config.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Data/Geists/combo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Data/Geists/combo.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Data/Geists/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Data/Geists/project.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Data/Geists/zettelkasten.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Data/Geists/zettelkasten.json -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Fonts/IBMPlexMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Fonts/IBMPlexMono-Bold.ttf -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Fonts/IBMPlexMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Fonts/IBMPlexMono-BoldItalic.ttf -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Fonts/IBMPlexMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Fonts/IBMPlexMono-Italic.ttf -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Fonts/IBMPlexMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Fonts/IBMPlexMono-Regular.ttf -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Fonts/IBMPlexSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Fonts/IBMPlexSans-Bold.ttf -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Fonts/IBMPlexSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Fonts/IBMPlexSans-BoldItalic.ttf -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Fonts/IBMPlexSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Fonts/IBMPlexSans-Italic.ttf -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Fonts/IBMPlexSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Fonts/IBMPlexSans-Light.ttf -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Fonts/IBMPlexSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Fonts/IBMPlexSans-Medium.ttf -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Fonts/IBMPlexSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Fonts/IBMPlexSans-Regular.ttf -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Fonts/LICENSE.txt -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/AngleUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/AngleUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/AnimationUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/AnimationUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/ArrayFirstIndexWhereID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/ArrayFirstIndexWhereID.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/ArrayUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/ArrayUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/BundleUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/BundleUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/CollectionUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/CollectionUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/ColorUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/ColorUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/CombineUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/CombineUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/DateUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/DateUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/DummyDataUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/DummyDataUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/Error.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/FileManagerUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/FileManagerUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/FileSync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/FileSync.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/Func.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/Func.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/IntUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/IntUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/LogFmt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/LogFmt.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/Mapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/Mapping.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/MathUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/MathUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/Migration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/Migration.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/NSRangeUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/NSRangeUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/NaturalLanguage/PromptRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/NaturalLanguage/PromptRouter.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/NaturalLanguage/Tracery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/NaturalLanguage/Tracery.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/NoosphereLogProxy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/NoosphereLogProxy.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/OptionalUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/OptionalUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/OrderedCollectionUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/OrderedCollectionUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/Pathlike.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/Pathlike.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/Prose.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/Prose.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/Redacted.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/Redacted.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/SQLite3Database.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/SQLite3Database.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/Sentry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/Sentry.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/ShadowStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/ShadowStyle.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/StoreUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/StoreUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/StringSplitAtRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/StringSplitAtRange.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/StringUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/StringUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/URLComponentsUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/URLComponentsUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/URLUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/URLUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/UserDefaultsProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/UserDefaultsProperty.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/ViewDebugUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/ViewDebugUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Library/ViewUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Library/ViewUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/ActivityEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/ActivityEvent.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/AppendLinkSuggestion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/AppendLinkSuggestion.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/Audience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/Audience.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/ContentType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/ContentType.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/Did+SubconsciousLocal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/Did+SubconsciousLocal.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/Did.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/Did.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/Entry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/Entry.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/EntryLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/EntryLink.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/EntryStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/EntryStub.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/FileInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/FileInfo.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/FormField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/FormField.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/GatewayURL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/GatewayURL.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/HeaderSubtext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/HeaderSubtext.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/Identified.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/Identified.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/InviteCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/InviteCode.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/Link.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/Link.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/LinkSuggestion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/LinkSuggestion.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/LoadingState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/LoadingState.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/Markup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/Markup.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/Memo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/Memo.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/MemoData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/MemoData.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/MemoEditorDetailResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/MemoEditorDetailResponse.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/MemoRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/MemoRecord.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/NeighborRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/NeighborRecord.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/OurSphereRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/OurSphereRecord.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/Peer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/Peer.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/PeerRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/PeerRecord.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/Petname.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/Petname.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/RecoveryPhrase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/RecoveryPhrase.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/RenameSuggestion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/RenameSuggestion.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/ResolutionStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/ResolutionStatus.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/ResourceStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/ResourceStatus.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/SaveState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/SaveState.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/Slashlink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/Slashlink.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/Slug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/Slug.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/StoryEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/StoryEntry.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/StoryUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/StoryUser.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/Suggestion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/Suggestion.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Models/UserProfileBio.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Models/UserProfileBio.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/OnboardingTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/OnboardingTheme.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Parsers/Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Parsers/Header.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Parsers/Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Parsers/Parser.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Parsers/Subtext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Parsers/Subtext.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Parsers/SubtextAttributedStringRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Parsers/SubtextAttributedStringRenderer.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Parsers/SubtextUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Parsers/SubtextUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Parsers/Tape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Parsers/Tape.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/AddressBookService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/AddressBookService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/AppDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/AppDefaults.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/DataService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/DataService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/DatabaseService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/DatabaseService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/FileStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/FileStore.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/GatewayProvisioningService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/GatewayProvisioningService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/HeaderSubtextMemoStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/HeaderSubtextMemoStore.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/KeychainService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/KeychainService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/MemoryStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/MemoryStore.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/Noosphere/Noosphere.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/Noosphere/Noosphere.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/Noosphere/NoospherePeer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/Noosphere/NoospherePeer.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/Noosphere/NoospherePeerChange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/Noosphere/NoospherePeerChange.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/Noosphere/NoosphereService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/Noosphere/NoosphereService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/Noosphere/Sphere.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/Noosphere/Sphere.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/Noosphere/SphereFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/Noosphere/SphereFile.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/OpenAiService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/OpenAiService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/PasteboardService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/PasteboardService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/PromptService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/PromptService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/StoreProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/StoreProtocol.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/TranscludeService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/TranscludeService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/UserLikesService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/UserLikesService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/Services/UserProfileService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/Services/UserProfileService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/SubconsciousApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/SubconsciousApp.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Appendix/Related/BlockEditorRelatedModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Appendix/Related/BlockEditorRelatedModel.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Appendix/Related/RelatedCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Appendix/Related/RelatedCell.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/BlockEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/BlockEditor.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/BlockEditorModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/BlockEditorModel.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/BlockEditorModelUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/BlockEditorModelUpdate.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/BlockEditorRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/BlockEditorRepresentable.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/BlockEditorSubtextEditorMarkup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/BlockEditorSubtextEditorMarkup.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/BlockEditorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/BlockEditorViewController.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/BlockEditorBlockSelectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/BlockEditorBlockSelectView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/BlockFormatMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/BlockFormatMenu.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/BlockModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/BlockModel.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/BlockToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/BlockToolbar.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/BlocksModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/BlocksModel.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/ErrorCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/ErrorCell.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/HeadingBlockCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/HeadingBlockCell.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/ListBlockCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/ListBlockCell.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/QuoteBlockCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/QuoteBlockCell.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/TextBlockCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/TextBlockCell.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/TextBlockModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Blocks/TextBlockModel.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Common/SubtextTextEditorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Common/SubtextTextEditorView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Common/SubtextTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Common/SubtextTextView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/BlockEditor/Common/Transclude/BlockEditorTranscludeListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/BlockEditor/Common/Transclude/BlockEditorTranscludeListView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/UIBarButtonItemUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/UIBarButtonItemUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/UIFontHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/UIFontHelpers.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/UIHostingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/UIHostingView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/UIStackViewHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/UIStackViewHelpers.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/UITextViewHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/UITextViewHelpers.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/UIViewDivider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/UIViewDivider.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/UIViewHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/UIViewHelpers.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/UIViewIconButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/UIViewIconButton.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/UIViewPreviewRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/UIViewPreviewRepresentable.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Shared/UIKit/UIViewSpacer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Shared/UIKit/UIViewSpacer.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Subconscious.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Subconscious.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /xcode/Subconscious/Subconscious.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Subconscious.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /xcode/Subconscious/Subconscious.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Subconscious.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /xcode/Subconscious/Subconscious.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Subconscious.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /xcode/Subconscious/Subconscious.xcodeproj/xcshareddata/xcbaselines/B80057E727DC355E002C0129.xcbaseline/73DEAF14-78DE-4620-81A3-9232B506BA93.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Subconscious.xcodeproj/xcshareddata/xcbaselines/B80057E727DC355E002C0129.xcbaseline/73DEAF14-78DE-4620-81A3-9232B506BA93.plist -------------------------------------------------------------------------------- /xcode/Subconscious/Subconscious.xcodeproj/xcshareddata/xcschemes/Subconscious (iOS).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Subconscious.xcodeproj/xcshareddata/xcschemes/Subconscious (iOS).xcscheme -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/MockErrorLoggingService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/MockErrorLoggingService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/SubconsciousTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/SubconsciousTests.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/TestUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/TestUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Test_Markup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Test_Markup.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_AddressBookService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_AddressBookService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_App.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_AppMigrations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_AppMigrations.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_ArrayUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_ArrayUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Audience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Audience.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_BlockEditorBlockModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_BlockEditorBlockModel.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_CardModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_CardModel.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_CollectionUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_CollectionUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_CombineUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_CombineUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Config.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_DataService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_DataService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_DatabaseService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_DatabaseService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_DeckDetailStackCursor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_DeckDetailStackCursor.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Deck_NotificationActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Deck_NotificationActions.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Detail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Detail.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_DetailStack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_DetailStack.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Did+SubconsciousLocal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Did+SubconsciousLocal.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Did.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Did.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_EntryLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_EntryLink.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_FileFingerprint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_FileFingerprint.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_FirstRun.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_FirstRun.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_FormField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_FormField.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Func.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Func.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Header.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_HeaderSubtext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_HeaderSubtext.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_HomeProfileAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_HomeProfileAction.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_HomeProfileDetailStackCursor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_HomeProfileDetailStackCursor.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_HomeProfile_NotificationActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_HomeProfile_NotificationActions.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Link.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Link.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_LogFmt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_LogFmt.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_MarkupText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_MarkupText.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_MathUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_MathUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Memo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Memo.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_MemoEditorDetailNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_MemoEditorDetailNotification.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_MemoRecord.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_MemoRecord.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_MemoViewerDetailMetaSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_MemoViewerDetailMetaSheet.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Migrations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Migrations.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Noosphere.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Noosphere.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_NoosphereService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_NoosphereService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_NotebookAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_NotebookAction.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_NotebookDetailStackCursor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_NotebookDetailStackCursor.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_NotebookUpdate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_NotebookUpdate.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Notebook_NotificationActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Notebook_NotificationActions.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_OrderedCollectionUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_OrderedCollectionUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Parser.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Peer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Peer.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Petname.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Petname.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_PromptRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_PromptRouter.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Prose.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Prose.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_RecoveryModeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_RecoveryModeView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_RecoveryPhrase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_RecoveryPhrase.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_RecoveryPhraseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_RecoveryPhraseView.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Redacted.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Redacted.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_SQLite3Database.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_SQLite3Database.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Search.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Search.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Slashlink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Slashlink.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Slug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Slug.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Sphere.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Sphere.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_SphereFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_SphereFile.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_StoryUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_StoryUser.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_StringSplitAtRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_StringSplitAtRange.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_StringUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_StringUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Subtext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Subtext.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_SubtextAttributedStringRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_SubtextAttributedStringRenderer.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Tape.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Tape.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_Tracery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_Tracery.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_TranscludeService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_TranscludeService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_UIStackViewHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_UIStackViewHelpers.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_URLComponentsUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_URLComponentsUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_URLUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_URLUtilities.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_UserDefaultProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_UserDefaultProperty.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_UserLikesService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_UserLikesService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_UserProfileBio.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_UserProfileBio.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_UserProfileDetailModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_UserProfileDetailModel.swift -------------------------------------------------------------------------------- /xcode/Subconscious/SubconsciousTests/Tests_UserProfileService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/SubconsciousTests/Tests_UserProfileService.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Tests iOS/Tests_iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Tests iOS/Tests_iOS.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Tests iOS/Tests_iOSLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Tests iOS/Tests_iOSLaunchTests.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Tests macOS/Tests_macOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Tests macOS/Tests_macOS.swift -------------------------------------------------------------------------------- /xcode/Subconscious/Tests macOS/Tests_macOSLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/Tests macOS/Tests_macOSLaunchTests.swift -------------------------------------------------------------------------------- /xcode/Subconscious/iOS/Development.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/iOS/Development.xcconfig -------------------------------------------------------------------------------- /xcode/Subconscious/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/iOS/Info.plist -------------------------------------------------------------------------------- /xcode/Subconscious/iOS/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/iOS/Release.xcconfig -------------------------------------------------------------------------------- /xcode/Subconscious/macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/macOS/Info.plist -------------------------------------------------------------------------------- /xcode/Subconscious/macOS/macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subconsciousnetwork/subconscious/HEAD/xcode/Subconscious/macOS/macOS.entitlements --------------------------------------------------------------------------------