├── .gitattributes ├── .github └── workflows │ ├── delete_old_workflow_runs.yml │ └── preflight.yml ├── .gitignore ├── .swift-version ├── .swiftformat ├── BuildTools ├── Empty.swift ├── Package.resolved ├── Package.swift ├── swiftgen.yml └── xcassets-colors-swiftui.stencil ├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── Prose ├── .gitignore ├── ConversationFeaturePreview │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ContentView.swift │ ├── ConversationFeaturePreview.entitlements │ ├── ConversationFeaturePreviewApp.swift │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json ├── EditProfileFeaturePreview │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── EditProfileFeaturePreview.entitlements │ └── EditProfileFeaturePreviewApp.swift ├── Prose.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ ├── ConversationFeaturePreview.xcscheme │ │ ├── Prose.xcscheme │ │ ├── Release.xcscheme │ │ └── UITestHost.xcscheme ├── Prose │ ├── AllTests.xctestplan │ ├── AppDelegate.swift │ ├── Components │ │ └── Sidebar │ │ │ └── SidebarPartContextComponent.swift │ ├── Package.resolved │ ├── Prose.entitlements │ ├── ProseApp.swift │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Dock@1024.png │ │ │ │ ├── Dock@128.png │ │ │ │ ├── Dock@16.png │ │ │ │ ├── Dock@256 1.png │ │ │ │ ├── Dock@256.png │ │ │ │ ├── Dock@32 1.png │ │ │ │ ├── Dock@32.png │ │ │ │ ├── Dock@512 1.png │ │ │ │ ├── Dock@512.png │ │ │ │ └── Dock@64.png │ │ │ └── Contents.json │ │ └── Credits.rtf │ ├── UITests.xctestplan │ └── UnitTests.xctestplan ├── ProseLib │ ├── .gitignore │ ├── .swiftpm │ │ └── xcode │ │ │ └── package.xcworkspace │ │ │ └── contents.xcworkspacedata │ ├── Package.resolved │ ├── Package.swift │ ├── Sources │ │ ├── AddressBookFeature │ │ │ ├── AddressBookScreen.swift │ │ │ ├── Target+Logger.swift │ │ │ └── Toolbar.swift │ │ ├── App │ │ │ ├── Accounts │ │ │ │ ├── AccountReducer.swift │ │ │ │ ├── AccountsReducer.swift │ │ │ │ └── SelectedAccountReducer.swift │ │ │ ├── AppDelegate.swift │ │ │ ├── AppReducer.swift │ │ │ ├── AppScene.swift │ │ │ └── Target+Logger.swift │ │ ├── AppDomain │ │ │ ├── Account.swift │ │ │ ├── ConnectionStatus.swift │ │ │ ├── Connectivity.swift │ │ │ ├── Credentials.swift │ │ │ ├── Exports.swift │ │ │ ├── ProseCoreExtensions │ │ │ │ ├── Availability.swift │ │ │ │ ├── BareJid.swift │ │ │ │ ├── Contact.swift │ │ │ │ ├── FullJid.swift │ │ │ │ ├── Message.swift │ │ │ │ └── UserProfile.swift │ │ │ ├── SessionState.swift │ │ │ └── UserInfo.swift │ │ ├── AppLocalization │ │ │ ├── AppDomain+i18n.swift │ │ │ ├── Bundle+Fix.swift │ │ │ ├── Generated │ │ │ │ ├── .gitkeep │ │ │ │ └── Strings+Generated.swift │ │ │ ├── Resources │ │ │ │ └── en.lproj │ │ │ │ │ ├── Localizable.strings │ │ │ │ │ └── Localizable.stringsdict │ │ │ ├── String+Markdown.swift │ │ │ └── Target+Logger.swift │ │ ├── Assets │ │ │ ├── Bundle+Fix.swift │ │ │ ├── Generated │ │ │ │ ├── .gitkeep │ │ │ │ ├── Colors+Generated.swift │ │ │ │ └── Images+Generated.swift │ │ │ ├── ImageAsset+URL.swift │ │ │ ├── Resources │ │ │ │ ├── Colors.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── background │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── message.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── border │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── primary.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── secondary.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── tertiary.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── tertiaryLight.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── state │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── coolGrey.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── green.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── greenLight.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── grey.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── greyLight.colorset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── text │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── primary.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── primaryLight.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── secondary.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── secondaryLight.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ └── Images.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── platform-logo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── macos-logo.svg │ │ │ └── Target+Logger.swift │ │ ├── AuthenticationFeature │ │ │ ├── AuthenticationReducer.swift │ │ │ ├── AuthenticationScreen.swift │ │ │ ├── BasicAuth │ │ │ │ ├── BasicAuthReducer.swift │ │ │ │ └── BasicAuthView.swift │ │ │ ├── MFA │ │ │ │ ├── Authentication+TemporaryFix.swift │ │ │ │ ├── MFA6DigitsView.swift │ │ │ │ └── MFAView.swift │ │ │ ├── Profile │ │ │ │ ├── ProfileReducer.swift │ │ │ │ └── ProfileView.swift │ │ │ ├── Target+Logger.swift │ │ │ └── UserData.swift │ │ ├── ConnectivityClient │ │ │ ├── ConnectivityClient+Live.swift │ │ │ └── ConnectivityClient.swift │ │ ├── ConversationFeature │ │ │ ├── Chat │ │ │ │ ├── Chat.swift │ │ │ │ ├── ChatReducer.swift │ │ │ │ ├── ChatSessionState.swift │ │ │ │ ├── EditMessageReducer.swift │ │ │ │ ├── EditMessageView.swift │ │ │ │ ├── MessageMenu.swift │ │ │ │ ├── MessageView.swift │ │ │ │ └── ReactionPickerView.swift │ │ │ ├── ConversationScreen.swift │ │ │ ├── ConversationScreenReducer.swift │ │ │ ├── InfoSidebar │ │ │ │ ├── ConversationInfoReducer.swift │ │ │ │ ├── ConversationInfoView.swift │ │ │ │ └── Views │ │ │ │ │ ├── ActionRow.swift │ │ │ │ │ ├── EntryRowLabelStyle.swift │ │ │ │ │ ├── IdentityPopover.swift │ │ │ │ │ └── SubtitledActionButtonStyle.swift │ │ │ ├── MessageBar │ │ │ │ ├── MessageBar.swift │ │ │ │ ├── MessageBarReducer.swift │ │ │ │ ├── MessageField │ │ │ │ │ ├── MessageField.swift │ │ │ │ │ └── MessageFieldReducer.swift │ │ │ │ └── TypingIndicator.swift │ │ │ ├── README.md │ │ │ ├── Target+Logger.swift │ │ │ └── Toolbar │ │ │ │ ├── Toolbar.swift │ │ │ │ ├── ToolbarReducer.swift │ │ │ │ └── ToolbarSecurity.swift │ │ ├── CredentialsClient │ │ │ ├── CredentialsClient+Live.swift │ │ │ ├── CredentialsClient.swift │ │ │ └── Target+Logger.swift │ │ ├── EditProfileFeature │ │ │ ├── AuthenticationReducer.swift │ │ │ ├── AuthenticationView.swift │ │ │ ├── Components │ │ │ │ ├── ContentSection.swift │ │ │ │ ├── SecondaryRow.swift │ │ │ │ └── ThreeColumns.swift │ │ │ ├── EditProfileReducer.swift │ │ │ ├── EditProfileScreen.swift │ │ │ ├── EncryptionReducer.swift │ │ │ ├── EncryptionView.swift │ │ │ ├── IdentityReducer.swift │ │ │ ├── IdentityView.swift │ │ │ ├── ProfileReducer.swift │ │ │ ├── ProfileView.swift │ │ │ ├── Sidebar │ │ │ │ ├── Sidebar.swift │ │ │ │ ├── SidebarHeader.swift │ │ │ │ ├── SidebarHeaderReducer.swift │ │ │ │ ├── SidebarReducer.swift │ │ │ │ ├── SidebarRow.swift │ │ │ │ └── SidebarRowReducer.swift │ │ │ └── Target+Logger.swift │ │ ├── JoinChatFeature │ │ │ ├── AddMemberSheet.swift │ │ │ └── JoinGroupSheet.swift │ │ ├── MainScreenFeature │ │ │ ├── MainScreenReducer.swift │ │ │ ├── MainScreenView.swift │ │ │ └── Target+Logger.swift │ │ ├── Mocks │ │ │ ├── BareJid.swift │ │ │ ├── Contact.swift │ │ │ ├── Message.swift │ │ │ ├── RandomUser │ │ │ │ ├── RandomUser+JSON.swift │ │ │ │ ├── RandomUser.swift │ │ │ │ └── random_user.json │ │ │ └── SessionState.swift │ │ ├── NotificationsClient │ │ │ ├── NotificationsClient+Live.swift │ │ │ ├── NotificationsClient+Noop.swift │ │ │ ├── NotificationsClient.swift │ │ │ └── Target+Logger.swift │ │ ├── PasteboardClient │ │ │ ├── PasteboardClient+Live.swift │ │ │ └── PasteboardClient.swift │ │ ├── PreviewAssets │ │ │ ├── Bundle+Fix.swift │ │ │ ├── Generated │ │ │ │ ├── .gitkeep │ │ │ │ └── Assets+Generated.swift │ │ │ ├── ImageAsset+URL.swift │ │ │ ├── Resources │ │ │ │ └── Assets.xcassets │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── avatars │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── alexandre.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── avatar.png │ │ │ │ │ ├── antoine.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── avatar.jpg │ │ │ │ │ ├── baptiste.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── avatar.jpg │ │ │ │ │ ├── camille.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── avatag.jpg │ │ │ │ │ ├── constellation-health.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── constellation-health.jpg │ │ │ │ │ ├── eliott.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── avatar.jpg │ │ │ │ │ ├── julien.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── julien.jpg │ │ │ │ │ └── valerian.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ └── avatar.jpg │ │ │ │ │ ├── logo-crisp.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── logo-crisp.png │ │ │ │ │ ├── logo-makair.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── logo-makair.png │ │ │ │ │ └── webcam-valerian.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── webcam.jpg │ │ │ └── Target+Logger.swift │ │ ├── ProseCore │ │ │ ├── AccountBookmarksClient+Live.swift │ │ │ ├── AccountBookmarksClient.swift │ │ │ ├── AccountsClient+Live.swift │ │ │ ├── AccountsClient.swift │ │ │ ├── Exports.swift │ │ │ ├── ProseCoreClient+Live.swift │ │ │ └── ProseCoreClient.swift │ │ ├── ProseCoreViews │ │ │ ├── API │ │ │ │ ├── MessagingContext.swift │ │ │ │ └── MessagingStore.swift │ │ │ ├── FFI.swift │ │ │ ├── Generated │ │ │ │ ├── .gitkeep │ │ │ │ └── Files+Generated.swift │ │ │ ├── Helpers │ │ │ │ ├── Bundle+Fix.swift │ │ │ │ ├── IdentifiedArray+Difference.swift │ │ │ │ ├── JSEventError.swift │ │ │ │ ├── JSHelpers.swift │ │ │ │ ├── NSError+JavaScript.swift │ │ │ │ └── WKUserContentController+TCA.swift │ │ │ ├── Resources │ │ │ │ ├── .gitkeep │ │ │ │ └── Views │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── action-more.77dcdfab.svg │ │ │ │ │ ├── action-reactions.7a469ec6.svg │ │ │ │ │ ├── file-other-option-get.a1a4420f.svg │ │ │ │ │ ├── messaging.3477b7db.js │ │ │ │ │ ├── messaging.36ff8472.css │ │ │ │ │ ├── messaging.html │ │ │ │ │ └── origin-attribute-insecure.aa6021b6.svg │ │ │ ├── Target+Logger.swift │ │ │ └── Types │ │ │ │ ├── ColorScheme.swift │ │ │ │ ├── EventOrigin.swift │ │ │ │ ├── MessageAction.swift │ │ │ │ └── MessageEvent.swift │ │ ├── ProseUI │ │ │ ├── AvailabilityIndicator.swift │ │ │ ├── Avatar.swift │ │ │ ├── Common │ │ │ │ ├── ColoredIconLabelStyle.swift │ │ │ │ ├── ContentCommonNameStatusComponent.swift │ │ │ │ ├── ShadowedButtonStyle.swift │ │ │ │ └── VerticalLabelStyle.swift │ │ │ ├── HelpButton.swift │ │ │ ├── Icon.swift │ │ │ ├── LEDIndicator.swift │ │ │ ├── LevelIndicator.swift │ │ │ ├── OnlineStatusIndicator.swift │ │ │ ├── ReactionPicker │ │ │ │ ├── ReactionPicker.swift │ │ │ │ └── ReactionPickerReducer.swift │ │ │ ├── SpotlightGroupBoxStyle.swift │ │ │ ├── TableFooterButton.swift │ │ │ ├── Target+Logger.swift │ │ │ ├── Toolbar │ │ │ │ ├── CommonToolbar.swift │ │ │ │ ├── CommonToolbarActions.swift │ │ │ │ ├── CommonToolbarNavigation.swift │ │ │ │ └── ToolbarDivider.swift │ │ │ ├── View+OnKeyDown.swift │ │ │ └── ViewWrap+Extension.swift │ │ ├── SettingsFeature │ │ │ ├── AccountSettings │ │ │ │ ├── AccountSettingsAccountView.swift │ │ │ │ ├── AccountSettingsFeaturesView.swift │ │ │ │ └── AccountSettingsSecurityView.swift │ │ │ ├── Atoms │ │ │ │ ├── AccountPickerRow.swift │ │ │ │ ├── ConnectionStatusIndicator.swift │ │ │ │ ├── FormGroupBoxStyle.swift │ │ │ │ └── VideoPreviewView.swift │ │ │ ├── SettingsConstants.swift │ │ │ ├── SettingsView.swift │ │ │ ├── Tabs │ │ │ │ ├── AccountsTab.swift │ │ │ │ ├── AdvancedTab.swift │ │ │ │ ├── CallsTab.swift │ │ │ │ ├── GeneralTab.swift │ │ │ │ ├── MessagesTab.swift │ │ │ │ └── NotificationsTab.swift │ │ │ └── Target+Logger.swift │ │ ├── SidebarFeature │ │ │ ├── Atoms │ │ │ │ └── Counter.swift │ │ │ ├── Footer │ │ │ │ ├── AccountSettingsMenu │ │ │ │ │ ├── AccountSettingsMenuReducer.swift │ │ │ │ │ └── AccountSettingsMenuView.swift │ │ │ │ ├── AccountSwitcherMenu │ │ │ │ │ ├── AccountSwitcherMenuReducer.swift │ │ │ │ │ └── AccountSwitcherMenuView.swift │ │ │ │ ├── FooterDetails.swift │ │ │ │ ├── FooterReducer.swift │ │ │ │ ├── FooterView.swift │ │ │ │ └── Styles │ │ │ │ │ ├── SidebarFooterPopoverButtonStyle.swift │ │ │ │ │ └── VStackGroupBoxStyle.swift │ │ │ ├── Rows │ │ │ │ ├── ActionButton.swift │ │ │ │ ├── ContactRow.swift │ │ │ │ └── IconRow.swift │ │ │ ├── SidebarReducer.swift │ │ │ ├── SidebarView.swift │ │ │ └── Target+Logger.swift │ │ ├── TestHelpers │ │ │ ├── Date+YMD.swift │ │ │ ├── UUID+Incrementing.swift │ │ │ └── XCTestCase+Combine.swift │ │ ├── TestHostApp │ │ │ ├── Helpers │ │ │ │ ├── Target+Logger.swift │ │ │ │ └── TestScene.swift │ │ │ ├── Mocks │ │ │ │ └── AppState.swift │ │ │ └── TestCases │ │ │ │ └── RosterSelection.swift │ │ ├── Toolbox │ │ │ ├── AsyncStream+Prose.swift │ │ │ ├── FocusState+Synchronize.swift │ │ │ ├── ItemProvider+Prose.swift │ │ │ ├── PlatformImage.swift │ │ │ └── Target+Logger.swift │ │ └── UnreadFeature │ │ │ ├── Target+Logger.swift │ │ │ ├── Toolbar.swift │ │ │ ├── UnreadScreen.swift │ │ │ ├── UnreadScreenReducer.swift │ │ │ └── UnreadSection.swift │ └── Tests │ │ ├── ConversationFeatureTests │ │ ├── Helpers │ │ │ └── ChatSessionState+Mock.swift │ │ └── TypingIndicatorTests.swift │ │ ├── CredentialsClientTests │ │ └── CredentialsClientTests.swift │ │ └── ProseCoreViewsTests │ │ ├── FFITests.swift │ │ └── IdentifiedArrayDifferenceTests.swift ├── ProseUITests │ ├── ConversationInfoTests.swift │ ├── Helpers │ │ └── XCUIApplication+Prose.swift │ └── RosterSelectionTests.swift └── UITestHost │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ ├── UITestHost.entitlements │ └── UITestHostApp.swift └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/delete_old_workflow_runs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/.github/workflows/delete_old_workflow_runs.yml -------------------------------------------------------------------------------- /.github/workflows/preflight.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/.github/workflows/preflight.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.6.1 2 | -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/.swiftformat -------------------------------------------------------------------------------- /BuildTools/Empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/BuildTools/Empty.swift -------------------------------------------------------------------------------- /BuildTools/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/BuildTools/Package.resolved -------------------------------------------------------------------------------- /BuildTools/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/BuildTools/Package.swift -------------------------------------------------------------------------------- /BuildTools/swiftgen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/BuildTools/swiftgen.yml -------------------------------------------------------------------------------- /BuildTools/xcassets-colors-swiftui.stencil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/BuildTools/xcassets-colors-swiftui.stencil -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog — Prose (macOS) 2 | 3 | ## 0.1.0 (unreleased) 4 | 5 | * Initial version. 6 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Makefile -------------------------------------------------------------------------------- /Prose/.gitignore: -------------------------------------------------------------------------------- 1 | Prose.xcodeproj/**/*.xcuserdatad/ 2 | -------------------------------------------------------------------------------- /Prose/ConversationFeaturePreview/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ConversationFeaturePreview/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/ConversationFeaturePreview/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ConversationFeaturePreview/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Prose/ConversationFeaturePreview/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ConversationFeaturePreview/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Prose/ConversationFeaturePreview/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ConversationFeaturePreview/ContentView.swift -------------------------------------------------------------------------------- /Prose/ConversationFeaturePreview/ConversationFeaturePreview.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ConversationFeaturePreview/ConversationFeaturePreview.entitlements -------------------------------------------------------------------------------- /Prose/ConversationFeaturePreview/ConversationFeaturePreviewApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ConversationFeaturePreview/ConversationFeaturePreviewApp.swift -------------------------------------------------------------------------------- /Prose/ConversationFeaturePreview/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ConversationFeaturePreview/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Prose/EditProfileFeaturePreview/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/EditProfileFeaturePreview/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/EditProfileFeaturePreview/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/EditProfileFeaturePreview/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Prose/EditProfileFeaturePreview/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/EditProfileFeaturePreview/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Prose/EditProfileFeaturePreview/EditProfileFeaturePreview.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/EditProfileFeaturePreview/EditProfileFeaturePreview.entitlements -------------------------------------------------------------------------------- /Prose/EditProfileFeaturePreview/EditProfileFeaturePreviewApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/EditProfileFeaturePreview/EditProfileFeaturePreviewApp.swift -------------------------------------------------------------------------------- /Prose/Prose.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Prose/Prose.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Prose/Prose.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Prose/Prose.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Prose/Prose.xcodeproj/xcshareddata/xcschemes/ConversationFeaturePreview.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose.xcodeproj/xcshareddata/xcschemes/ConversationFeaturePreview.xcscheme -------------------------------------------------------------------------------- /Prose/Prose.xcodeproj/xcshareddata/xcschemes/Prose.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose.xcodeproj/xcshareddata/xcschemes/Prose.xcscheme -------------------------------------------------------------------------------- /Prose/Prose.xcodeproj/xcshareddata/xcschemes/Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose.xcodeproj/xcshareddata/xcschemes/Release.xcscheme -------------------------------------------------------------------------------- /Prose/Prose.xcodeproj/xcshareddata/xcschemes/UITestHost.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose.xcodeproj/xcshareddata/xcschemes/UITestHost.xcscheme -------------------------------------------------------------------------------- /Prose/Prose/AllTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/AllTests.xctestplan -------------------------------------------------------------------------------- /Prose/Prose/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/AppDelegate.swift -------------------------------------------------------------------------------- /Prose/Prose/Components/Sidebar/SidebarPartContextComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Components/Sidebar/SidebarPartContextComponent.swift -------------------------------------------------------------------------------- /Prose/Prose/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Package.resolved -------------------------------------------------------------------------------- /Prose/Prose/Prose.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Prose.entitlements -------------------------------------------------------------------------------- /Prose/Prose/ProseApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/ProseApp.swift -------------------------------------------------------------------------------- /Prose/Prose/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@1024.png -------------------------------------------------------------------------------- /Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@128.png -------------------------------------------------------------------------------- /Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@16.png -------------------------------------------------------------------------------- /Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@256 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@256 1.png -------------------------------------------------------------------------------- /Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@256.png -------------------------------------------------------------------------------- /Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@32 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@32 1.png -------------------------------------------------------------------------------- /Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@32.png -------------------------------------------------------------------------------- /Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@512 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@512 1.png -------------------------------------------------------------------------------- /Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@512.png -------------------------------------------------------------------------------- /Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Resources/Assets.xcassets/AppIcon.appiconset/Dock@64.png -------------------------------------------------------------------------------- /Prose/Prose/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Prose/Prose/Resources/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/Resources/Credits.rtf -------------------------------------------------------------------------------- /Prose/Prose/UITests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/UITests.xctestplan -------------------------------------------------------------------------------- /Prose/Prose/UnitTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/Prose/UnitTests.xctestplan -------------------------------------------------------------------------------- /Prose/ProseLib/.gitignore: -------------------------------------------------------------------------------- 1 | .env.json -------------------------------------------------------------------------------- /Prose/ProseLib/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Prose/ProseLib/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Package.resolved -------------------------------------------------------------------------------- /Prose/ProseLib/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Package.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AddressBookFeature/AddressBookScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AddressBookFeature/AddressBookScreen.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AddressBookFeature/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AddressBookFeature/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AddressBookFeature/Toolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AddressBookFeature/Toolbar.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/App/Accounts/AccountReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/App/Accounts/AccountReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/App/Accounts/AccountsReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/App/Accounts/AccountsReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/App/Accounts/SelectedAccountReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/App/Accounts/SelectedAccountReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/App/AppDelegate.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/App/AppReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/App/AppReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/App/AppScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/App/AppScene.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/App/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/App/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppDomain/Account.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppDomain/Account.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppDomain/ConnectionStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppDomain/ConnectionStatus.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppDomain/Connectivity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppDomain/Connectivity.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppDomain/Credentials.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppDomain/Credentials.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppDomain/Exports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppDomain/Exports.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppDomain/ProseCoreExtensions/Availability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppDomain/ProseCoreExtensions/Availability.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppDomain/ProseCoreExtensions/BareJid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppDomain/ProseCoreExtensions/BareJid.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppDomain/ProseCoreExtensions/Contact.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppDomain/ProseCoreExtensions/Contact.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppDomain/ProseCoreExtensions/FullJid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppDomain/ProseCoreExtensions/FullJid.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppDomain/ProseCoreExtensions/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppDomain/ProseCoreExtensions/Message.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppDomain/ProseCoreExtensions/UserProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppDomain/ProseCoreExtensions/UserProfile.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppDomain/SessionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppDomain/SessionState.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppDomain/UserInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppDomain/UserInfo.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppLocalization/AppDomain+i18n.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppLocalization/AppDomain+i18n.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppLocalization/Bundle+Fix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppLocalization/Bundle+Fix.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppLocalization/Generated/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppLocalization/Generated/Strings+Generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppLocalization/Generated/Strings+Generated.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppLocalization/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppLocalization/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppLocalization/Resources/en.lproj/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppLocalization/Resources/en.lproj/Localizable.stringsdict -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppLocalization/String+Markdown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppLocalization/String+Markdown.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AppLocalization/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AppLocalization/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Bundle+Fix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Bundle+Fix.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Generated/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Generated/Colors+Generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Generated/Colors+Generated.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Generated/Images+Generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Generated/Images+Generated.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/ImageAsset+URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/ImageAsset+URL.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/background/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/background/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/background/message.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/background/message.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/border/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/border/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/border/primary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/border/primary.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/border/secondary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/border/secondary.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/border/tertiary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/border/tertiary.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/border/tertiaryLight.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/border/tertiaryLight.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/state/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/state/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/state/coolGrey.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/state/coolGrey.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/state/green.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/state/green.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/state/greenLight.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/state/greenLight.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/state/grey.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/state/grey.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/state/greyLight.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/state/greyLight.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/text/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/text/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/text/primary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/text/primary.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/text/primaryLight.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/text/primaryLight.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/text/secondary.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/text/secondary.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/text/secondaryLight.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Colors.xcassets/text/secondaryLight.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Images.xcassets/platform-logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Images.xcassets/platform-logo.imageset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Resources/Images.xcassets/platform-logo.imageset/macos-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Resources/Images.xcassets/platform-logo.imageset/macos-logo.svg -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Assets/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Assets/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AuthenticationFeature/AuthenticationReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AuthenticationFeature/AuthenticationReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AuthenticationFeature/AuthenticationScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AuthenticationFeature/AuthenticationScreen.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AuthenticationFeature/BasicAuth/BasicAuthReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AuthenticationFeature/BasicAuth/BasicAuthReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AuthenticationFeature/BasicAuth/BasicAuthView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AuthenticationFeature/BasicAuth/BasicAuthView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AuthenticationFeature/MFA/Authentication+TemporaryFix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AuthenticationFeature/MFA/Authentication+TemporaryFix.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AuthenticationFeature/MFA/MFA6DigitsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AuthenticationFeature/MFA/MFA6DigitsView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AuthenticationFeature/MFA/MFAView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AuthenticationFeature/MFA/MFAView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AuthenticationFeature/Profile/ProfileReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AuthenticationFeature/Profile/ProfileReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AuthenticationFeature/Profile/ProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AuthenticationFeature/Profile/ProfileView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AuthenticationFeature/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AuthenticationFeature/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/AuthenticationFeature/UserData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/AuthenticationFeature/UserData.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConnectivityClient/ConnectivityClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConnectivityClient/ConnectivityClient+Live.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConnectivityClient/ConnectivityClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConnectivityClient/ConnectivityClient.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/Chat/Chat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/Chat/Chat.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/Chat/ChatReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/Chat/ChatReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/Chat/ChatSessionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/Chat/ChatSessionState.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/Chat/EditMessageReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/Chat/EditMessageReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/Chat/EditMessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/Chat/EditMessageView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/Chat/MessageMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/Chat/MessageMenu.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/Chat/MessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/Chat/MessageView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/Chat/ReactionPickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/Chat/ReactionPickerView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/ConversationScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/ConversationScreen.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/ConversationScreenReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/ConversationScreenReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/InfoSidebar/ConversationInfoReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/InfoSidebar/ConversationInfoReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/InfoSidebar/ConversationInfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/InfoSidebar/ConversationInfoView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/InfoSidebar/Views/ActionRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/InfoSidebar/Views/ActionRow.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/InfoSidebar/Views/EntryRowLabelStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/InfoSidebar/Views/EntryRowLabelStyle.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/InfoSidebar/Views/IdentityPopover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/InfoSidebar/Views/IdentityPopover.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/InfoSidebar/Views/SubtitledActionButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/InfoSidebar/Views/SubtitledActionButtonStyle.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/MessageBar/MessageBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/MessageBar/MessageBar.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/MessageBar/MessageBarReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/MessageBar/MessageBarReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/MessageBar/MessageField/MessageField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/MessageBar/MessageField/MessageField.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/MessageBar/MessageField/MessageFieldReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/MessageBar/MessageField/MessageFieldReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/MessageBar/TypingIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/MessageBar/TypingIndicator.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/README.md -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/Toolbar/Toolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/Toolbar/Toolbar.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/Toolbar/ToolbarReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/Toolbar/ToolbarReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ConversationFeature/Toolbar/ToolbarSecurity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ConversationFeature/Toolbar/ToolbarSecurity.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/CredentialsClient/CredentialsClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/CredentialsClient/CredentialsClient+Live.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/CredentialsClient/CredentialsClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/CredentialsClient/CredentialsClient.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/CredentialsClient/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/CredentialsClient/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/AuthenticationReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/AuthenticationReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/AuthenticationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/AuthenticationView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/Components/ContentSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/Components/ContentSection.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/Components/SecondaryRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/Components/SecondaryRow.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/Components/ThreeColumns.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/Components/ThreeColumns.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/EditProfileReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/EditProfileReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/EditProfileScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/EditProfileScreen.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/EncryptionReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/EncryptionReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/EncryptionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/EncryptionView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/IdentityReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/IdentityReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/IdentityView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/IdentityView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/ProfileReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/ProfileReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/ProfileView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/ProfileView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/Sidebar/Sidebar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/Sidebar/Sidebar.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/Sidebar/SidebarHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/Sidebar/SidebarHeader.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/Sidebar/SidebarHeaderReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/Sidebar/SidebarHeaderReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/Sidebar/SidebarReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/Sidebar/SidebarReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/Sidebar/SidebarRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/Sidebar/SidebarRow.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/Sidebar/SidebarRowReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/Sidebar/SidebarRowReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/EditProfileFeature/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/EditProfileFeature/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/JoinChatFeature/AddMemberSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/JoinChatFeature/AddMemberSheet.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/JoinChatFeature/JoinGroupSheet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/JoinChatFeature/JoinGroupSheet.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/MainScreenFeature/MainScreenReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/MainScreenFeature/MainScreenReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/MainScreenFeature/MainScreenView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/MainScreenFeature/MainScreenView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/MainScreenFeature/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/MainScreenFeature/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Mocks/BareJid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Mocks/BareJid.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Mocks/Contact.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Mocks/Contact.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Mocks/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Mocks/Message.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Mocks/RandomUser/RandomUser+JSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Mocks/RandomUser/RandomUser+JSON.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Mocks/RandomUser/RandomUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Mocks/RandomUser/RandomUser.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Mocks/RandomUser/random_user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Mocks/RandomUser/random_user.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Mocks/SessionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Mocks/SessionState.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/NotificationsClient/NotificationsClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/NotificationsClient/NotificationsClient+Live.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/NotificationsClient/NotificationsClient+Noop.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/NotificationsClient/NotificationsClient+Noop.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/NotificationsClient/NotificationsClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/NotificationsClient/NotificationsClient.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/NotificationsClient/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/NotificationsClient/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PasteboardClient/PasteboardClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PasteboardClient/PasteboardClient+Live.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PasteboardClient/PasteboardClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PasteboardClient/PasteboardClient.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Bundle+Fix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Bundle+Fix.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Generated/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Generated/Assets+Generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Generated/Assets+Generated.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/ImageAsset+URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/ImageAsset+URL.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/alexandre.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/alexandre.imageset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/alexandre.imageset/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/alexandre.imageset/avatar.png -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/antoine.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/antoine.imageset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/antoine.imageset/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/antoine.imageset/avatar.jpg -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/baptiste.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/baptiste.imageset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/baptiste.imageset/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/baptiste.imageset/avatar.jpg -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/camille.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/camille.imageset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/camille.imageset/avatag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/camille.imageset/avatag.jpg -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/constellation-health.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/constellation-health.imageset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/constellation-health.imageset/constellation-health.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/constellation-health.imageset/constellation-health.jpg -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/eliott.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/eliott.imageset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/eliott.imageset/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/eliott.imageset/avatar.jpg -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/julien.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/julien.imageset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/julien.imageset/julien.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/julien.imageset/julien.jpg -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/valerian.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/valerian.imageset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/valerian.imageset/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/avatars/valerian.imageset/avatar.jpg -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/logo-crisp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/logo-crisp.imageset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/logo-crisp.imageset/logo-crisp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/logo-crisp.imageset/logo-crisp.png -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/logo-makair.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/logo-makair.imageset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/logo-makair.imageset/logo-makair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/logo-makair.imageset/logo-makair.png -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/webcam-valerian.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/webcam-valerian.imageset/Contents.json -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/webcam-valerian.imageset/webcam.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Resources/Assets.xcassets/webcam-valerian.imageset/webcam.jpg -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/PreviewAssets/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/PreviewAssets/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCore/AccountBookmarksClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCore/AccountBookmarksClient+Live.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCore/AccountBookmarksClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCore/AccountBookmarksClient.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCore/AccountsClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCore/AccountsClient+Live.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCore/AccountsClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCore/AccountsClient.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCore/Exports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCore/Exports.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCore/ProseCoreClient+Live.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCore/ProseCoreClient+Live.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCore/ProseCoreClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCore/ProseCoreClient.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/API/MessagingContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/API/MessagingContext.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/API/MessagingStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/API/MessagingStore.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/FFI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/FFI.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Generated/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Generated/Files+Generated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Generated/Files+Generated.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Helpers/Bundle+Fix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Helpers/Bundle+Fix.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Helpers/IdentifiedArray+Difference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Helpers/IdentifiedArray+Difference.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Helpers/JSEventError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Helpers/JSEventError.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Helpers/JSHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Helpers/JSHelpers.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Helpers/NSError+JavaScript.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Helpers/NSError+JavaScript.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Helpers/WKUserContentController+TCA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Helpers/WKUserContentController+TCA.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Resources/Views/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Resources/Views/action-more.77dcdfab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Resources/Views/action-more.77dcdfab.svg -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Resources/Views/action-reactions.7a469ec6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Resources/Views/action-reactions.7a469ec6.svg -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Resources/Views/file-other-option-get.a1a4420f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Resources/Views/file-other-option-get.a1a4420f.svg -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Resources/Views/messaging.3477b7db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Resources/Views/messaging.3477b7db.js -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Resources/Views/messaging.36ff8472.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Resources/Views/messaging.36ff8472.css -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Resources/Views/messaging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Resources/Views/messaging.html -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Resources/Views/origin-attribute-insecure.aa6021b6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Resources/Views/origin-attribute-insecure.aa6021b6.svg -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Types/ColorScheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Types/ColorScheme.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Types/EventOrigin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Types/EventOrigin.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Types/MessageAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Types/MessageAction.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseCoreViews/Types/MessageEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseCoreViews/Types/MessageEvent.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/AvailabilityIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/AvailabilityIndicator.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/Avatar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/Avatar.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/Common/ColoredIconLabelStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/Common/ColoredIconLabelStyle.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/Common/ContentCommonNameStatusComponent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/Common/ContentCommonNameStatusComponent.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/Common/ShadowedButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/Common/ShadowedButtonStyle.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/Common/VerticalLabelStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/Common/VerticalLabelStyle.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/HelpButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/HelpButton.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/Icon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/Icon.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/LEDIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/LEDIndicator.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/LevelIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/LevelIndicator.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/OnlineStatusIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/OnlineStatusIndicator.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/ReactionPicker/ReactionPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/ReactionPicker/ReactionPicker.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/ReactionPicker/ReactionPickerReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/ReactionPicker/ReactionPickerReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/SpotlightGroupBoxStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/SpotlightGroupBoxStyle.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/TableFooterButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/TableFooterButton.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/Toolbar/CommonToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/Toolbar/CommonToolbar.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/Toolbar/CommonToolbarActions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/Toolbar/CommonToolbarActions.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/Toolbar/CommonToolbarNavigation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/Toolbar/CommonToolbarNavigation.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/Toolbar/ToolbarDivider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/Toolbar/ToolbarDivider.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/View+OnKeyDown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/View+OnKeyDown.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/ProseUI/ViewWrap+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/ProseUI/ViewWrap+Extension.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/AccountSettings/AccountSettingsAccountView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/AccountSettings/AccountSettingsAccountView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/AccountSettings/AccountSettingsFeaturesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/AccountSettings/AccountSettingsFeaturesView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/AccountSettings/AccountSettingsSecurityView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/AccountSettings/AccountSettingsSecurityView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/Atoms/AccountPickerRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/Atoms/AccountPickerRow.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/Atoms/ConnectionStatusIndicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/Atoms/ConnectionStatusIndicator.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/Atoms/FormGroupBoxStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/Atoms/FormGroupBoxStyle.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/Atoms/VideoPreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/Atoms/VideoPreviewView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/SettingsConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/SettingsConstants.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/SettingsView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/Tabs/AccountsTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/Tabs/AccountsTab.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/Tabs/AdvancedTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/Tabs/AdvancedTab.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/Tabs/CallsTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/Tabs/CallsTab.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/Tabs/GeneralTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/Tabs/GeneralTab.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/Tabs/MessagesTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/Tabs/MessagesTab.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/Tabs/NotificationsTab.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/Tabs/NotificationsTab.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SettingsFeature/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SettingsFeature/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/Atoms/Counter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/Atoms/Counter.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/Footer/AccountSettingsMenu/AccountSettingsMenuReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/Footer/AccountSettingsMenu/AccountSettingsMenuReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/Footer/AccountSettingsMenu/AccountSettingsMenuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/Footer/AccountSettingsMenu/AccountSettingsMenuView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/Footer/AccountSwitcherMenu/AccountSwitcherMenuReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/Footer/AccountSwitcherMenu/AccountSwitcherMenuReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/Footer/AccountSwitcherMenu/AccountSwitcherMenuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/Footer/AccountSwitcherMenu/AccountSwitcherMenuView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/Footer/FooterDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/Footer/FooterDetails.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/Footer/FooterReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/Footer/FooterReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/Footer/FooterView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/Footer/FooterView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/Footer/Styles/SidebarFooterPopoverButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/Footer/Styles/SidebarFooterPopoverButtonStyle.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/Footer/Styles/VStackGroupBoxStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/Footer/Styles/VStackGroupBoxStyle.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/Rows/ActionButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/Rows/ActionButton.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/Rows/ContactRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/Rows/ContactRow.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/Rows/IconRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/Rows/IconRow.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/SidebarReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/SidebarReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/SidebarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/SidebarView.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/SidebarFeature/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/SidebarFeature/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/TestHelpers/Date+YMD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/TestHelpers/Date+YMD.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/TestHelpers/UUID+Incrementing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/TestHelpers/UUID+Incrementing.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/TestHelpers/XCTestCase+Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/TestHelpers/XCTestCase+Combine.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/TestHostApp/Helpers/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/TestHostApp/Helpers/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/TestHostApp/Helpers/TestScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/TestHostApp/Helpers/TestScene.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/TestHostApp/Mocks/AppState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/TestHostApp/Mocks/AppState.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/TestHostApp/TestCases/RosterSelection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/TestHostApp/TestCases/RosterSelection.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Toolbox/AsyncStream+Prose.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Toolbox/AsyncStream+Prose.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Toolbox/FocusState+Synchronize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Toolbox/FocusState+Synchronize.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Toolbox/ItemProvider+Prose.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Toolbox/ItemProvider+Prose.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Toolbox/PlatformImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Toolbox/PlatformImage.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/Toolbox/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/Toolbox/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/UnreadFeature/Target+Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/UnreadFeature/Target+Logger.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/UnreadFeature/Toolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/UnreadFeature/Toolbar.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/UnreadFeature/UnreadScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/UnreadFeature/UnreadScreen.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/UnreadFeature/UnreadScreenReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/UnreadFeature/UnreadScreenReducer.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Sources/UnreadFeature/UnreadSection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Sources/UnreadFeature/UnreadSection.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Tests/ConversationFeatureTests/Helpers/ChatSessionState+Mock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Tests/ConversationFeatureTests/Helpers/ChatSessionState+Mock.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Tests/ConversationFeatureTests/TypingIndicatorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Tests/ConversationFeatureTests/TypingIndicatorTests.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Tests/CredentialsClientTests/CredentialsClientTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Tests/CredentialsClientTests/CredentialsClientTests.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Tests/ProseCoreViewsTests/FFITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Tests/ProseCoreViewsTests/FFITests.swift -------------------------------------------------------------------------------- /Prose/ProseLib/Tests/ProseCoreViewsTests/IdentifiedArrayDifferenceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseLib/Tests/ProseCoreViewsTests/IdentifiedArrayDifferenceTests.swift -------------------------------------------------------------------------------- /Prose/ProseUITests/ConversationInfoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseUITests/ConversationInfoTests.swift -------------------------------------------------------------------------------- /Prose/ProseUITests/Helpers/XCUIApplication+Prose.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseUITests/Helpers/XCUIApplication+Prose.swift -------------------------------------------------------------------------------- /Prose/ProseUITests/RosterSelectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/ProseUITests/RosterSelectionTests.swift -------------------------------------------------------------------------------- /Prose/UITestHost/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/UITestHost/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Prose/UITestHost/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/UITestHost/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Prose/UITestHost/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/UITestHost/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Prose/UITestHost/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/UITestHost/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Prose/UITestHost/UITestHost.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/UITestHost/UITestHost.entitlements -------------------------------------------------------------------------------- /Prose/UITestHost/UITestHostApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/Prose/UITestHost/UITestHostApp.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prose-im/prose-app-macos/HEAD/README.md --------------------------------------------------------------------------------