├── .bartycrouch.toml ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report_official.md │ ├── bug_report_unofficial.md │ ├── feature_request.md │ └── question.md ├── .gitignore ├── COPYING ├── Frameworks └── .gitkeep ├── NotificationService ├── Info.plist ├── NotificationService.entitlements └── NotificationService.swift ├── README.md ├── Shared ├── Info.plist ├── NotificationCategory.swift ├── Shared.h ├── database │ ├── DBConnection_main.swift │ ├── DBManager.swift │ └── DBSchemaManager.swift ├── db-schema-1.sql ├── db-schema-10.sql ├── db-schema-11.sql ├── db-schema-12.sql ├── db-schema-13.sql ├── db-schema-14.sql ├── db-schema-15.sql ├── db-schema-2.sql ├── db-schema-3.sql ├── db-schema-4.sql ├── db-schema-5.sql ├── db-schema-6.sql ├── db-schema-7.sql ├── db-schema-8.sql ├── db-schema-9.sql ├── notifications │ ├── NotificationEncryptionKeys.swift │ └── NotificationManager.swift └── util │ └── Cipher+AES.swift ├── Snikket - Share ├── AccountTableViewCell.swift ├── AccountsTableViewController.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── logo-1024px.png │ │ ├── logo-120px.png │ │ ├── logo-144px.png │ │ ├── logo-152px.png │ │ ├── logo-167px.png │ │ ├── logo-72px.png │ │ └── logo-76px.png │ └── Contents.json ├── Base.lproj │ └── MainInterface.storyboard ├── Info.plist ├── RecipientTableViewCell.swift ├── RecipientsSelectionViewController.swift ├── ShareViewController.swift ├── Snikket - Share.entitlements ├── da.lproj │ └── MainInterface.strings ├── de.lproj │ └── MainInterface.strings ├── en-GB.lproj │ └── MainInterface.strings ├── fr.lproj │ └── MainInterface.strings ├── id.lproj │ └── MainInterface.strings └── sv.lproj │ └── MainInterface.strings ├── Snikket.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ ├── NotificationService.xcscheme │ ├── Snikket - Share.xcscheme │ └── Snikket.xcscheme ├── Snikket ├── AppDelegate.swift ├── Assets.xcassets │ ├── AddToContactsBar.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── logo-1024px.png │ │ ├── logo-120px.png │ │ ├── logo-144px.png │ │ ├── logo-152px.png │ │ ├── logo-167px.png │ │ ├── logo-72px.png │ │ └── logo-76px.png │ ├── Contents.json │ ├── appLogo.imageset │ │ ├── Contents.json │ │ └── logo-1024px.png │ ├── appearance │ │ ├── Contents.json │ │ ├── chatMessageText.colorset │ │ │ └── Contents.json │ │ ├── chatMessageTextOutgoing.colorset │ │ │ └── Contents.json │ │ ├── chatslistBackground.colorset │ │ │ └── Contents.json │ │ ├── chatslistItemSecondaryLabel.colorset │ │ │ └── Contents.json │ │ ├── conversationBackground.colorset │ │ │ └── Contents.json │ │ ├── messageInputBackground.colorset │ │ │ └── Contents.json │ │ ├── snikketBlue.colorset │ │ │ └── Contents.json │ │ └── tintColor.colorset │ │ │ └── Contents.json │ ├── arrow.up.doc.imageset │ │ ├── Contents.json │ │ └── round_attach_file_black_24pt_2x.png │ ├── attach.imageset │ │ ├── Contents.json │ │ ├── ic_attach_file_36pt.png │ │ ├── ic_attach_file_36pt_3x.png │ │ └── round_attach_file_black_24pt_2x.png │ ├── audioCall.imageset │ │ ├── Contents.json │ │ └── icons8-call-60.png │ ├── bubbles │ │ ├── Contents.json │ │ ├── message_bubble_received9.imageset │ │ │ ├── Contents.json │ │ │ ├── message_bubble_received.9.png │ │ │ └── message_bubble_received_dark.9.png │ │ └── message_bubble_sent9.imageset │ │ │ ├── Contents.json │ │ │ ├── message_bubble_sent.9.png │ │ │ └── message_bubble_sent_grey.9.png │ ├── camera.imageset │ │ ├── Contents.json │ │ └── round_camera_alt_black_24pt_2x.png │ ├── checkmark.circle.imageset │ │ ├── Contents.json │ │ ├── checkmark.circle@2x-1.png │ │ ├── checkmark.circle@2x-2.png │ │ └── checkmark.circle@2x.png │ ├── chevron.down.imageset │ │ ├── Contents.json │ │ └── chevron.down@2x.png │ ├── chevron.left.imageset │ │ ├── Contents.json │ │ └── chevron.left@2x.png │ ├── chevron.up.imageset │ │ ├── Contents.json │ │ └── chevron.up@2x.png │ ├── defaultAvatar.imageset │ │ ├── Contents.json │ │ ├── avatar-dark.png │ │ └── avatar-light.png │ ├── defaultGroupchatAvatar.imageset │ │ ├── Contents.json │ │ ├── groupchat-avatar-dark.png │ │ └── groupchat-avatar-light.png │ ├── dialpad.imageset │ │ ├── Contents.json │ │ └── dialpad.png │ ├── endCall.imageset │ │ ├── Contents.json │ │ └── icons8-end-call-60.png │ ├── first.imageset │ │ ├── Contents.json │ │ └── first.pdf │ ├── gear.imageset │ │ ├── Contents.json │ │ └── round_menu_black_24pt_2x.png │ ├── info.circle.imageset │ │ ├── Contents.json │ │ └── info.circle@2x.png │ ├── lock-incoming.imageset │ │ ├── Contents.json │ │ └── ic_lock_white_24dp.png │ ├── lock-outgoing.imageset │ │ ├── Contents.json │ │ └── ic_lock_black_18dp.png │ ├── lock.imageset │ │ ├── Contents.json │ │ └── lock@2x.png │ ├── map.imageset │ │ ├── Contents.json │ │ └── mappin.circle.fill@2x.png │ ├── message.fill.imageset │ │ ├── Contents.json │ │ └── round_chat_bubble_black_24pt_2x.png │ ├── messageArchiving.imageset │ │ ├── Contents.json │ │ └── icons8-communication.pdf │ ├── mic.fill.imageset │ │ ├── Contents.json │ │ └── mic.fill@2x.png │ ├── mic.imageset │ │ ├── Contents.json │ │ └── mic@2x.png │ ├── moreImg.imageset │ │ ├── Contents.json │ │ └── moreImg.png │ ├── mute.imageset │ │ ├── Contents.json │ │ └── icons8-block-microphone-60.png │ ├── participants.imageset │ │ ├── Contents.json │ │ └── icons8-user-groups-50.png │ ├── pause.fill.imageset │ │ ├── Contents.json │ │ └── pause.fill@2x.png │ ├── person.crop.circle.fill.imageset │ │ ├── Contents.json │ │ └── round_account_circle_black_24pt_2x.png │ ├── photo.imageset │ │ ├── Contents.json │ │ └── round_insert_photo_black_24pt_2x.png │ ├── play.fill.imageset │ │ ├── Contents.json │ │ └── play.fill@2x.png │ ├── plus.imageset │ │ ├── Contents.json │ │ ├── plus@2x-1.png │ │ ├── plus@2x-3.png │ │ └── plus@2x.png │ ├── presence │ │ ├── Contents.json │ │ ├── presence_away.imageset │ │ │ ├── Contents.json │ │ │ └── presence_away.png │ │ ├── presence_chat.imageset │ │ │ ├── Contents.json │ │ │ └── presence_chat.png │ │ ├── presence_dnd.imageset │ │ │ ├── Contents.json │ │ │ └── presence_dnd.png │ │ ├── presence_error.imageset │ │ │ ├── Contents.json │ │ │ └── presence_error.png │ │ ├── presence_offline.imageset │ │ │ ├── Contents.json │ │ │ └── presence_offline.png │ │ ├── presence_online.imageset │ │ │ ├── Contents.json │ │ │ └── presence_online.png │ │ ├── presence_unknown.imageset │ │ │ ├── Contents.json │ │ │ └── presence_unknown.png │ │ └── presence_xa.imageset │ │ │ ├── Contents.json │ │ │ └── presence_xa.png │ ├── pushNotifications.imageset │ │ ├── Contents.json │ │ └── icons8-push-notifications.pdf │ ├── qrCode.imageset │ │ ├── Contents.json │ │ └── Qrcode.pdf │ ├── qrCodeBackground.colorset │ │ └── Contents.json │ ├── qrCodeForeground.colorset │ │ └── Contents.json │ ├── second.imageset │ │ ├── Contents.json │ │ └── second.pdf │ ├── send.imageset │ │ ├── Contents.json │ │ ├── ic_send_36pt.png │ │ ├── ic_send_36pt_2x.png │ │ └── ic_send_36pt_3x.png │ ├── speaker.slash.fill.imageset │ │ ├── Contents.json │ │ └── speaker.slash.fill@2x.png │ ├── speaker.wave.3.fill.imageset │ │ ├── Contents.json │ │ └── speaker.wave.3.fill@2x.png │ ├── switchCamera.imageset │ │ ├── Contents.json │ │ └── icons8-switch-camera-filled-50.png │ ├── tigaseLogo.imageset │ │ ├── Contents.json │ │ └── logo-nobg-1024px.png │ ├── videoCall.imageset │ │ ├── Contents.json │ │ └── icons8-video-call-60.png │ ├── xmark.circle.fill.imageset │ │ ├── Contents.json │ │ └── xmark.circle.fill@2x.png │ └── xmark.circle.imageset │ │ ├── Contents.json │ │ ├── xmark.circle@2x-1.png │ │ ├── xmark.circle@2x-2.png │ │ └── xmark.circle@2x.png ├── BartyCrouch.swift ├── Base.lproj │ ├── Account.storyboard │ ├── Groupchat.storyboard │ ├── Info.plist │ ├── Info.storyboard │ ├── LaunchScreen.storyboard │ ├── MIX.storyboard │ ├── Main.storyboard │ ├── Settings.storyboard │ ├── VoIP.storyboard │ └── Welcome.storyboard ├── Conversation.storyboard ├── Info.plist ├── NotificationCenterDelegate.swift ├── SiskinIM-Bridging-Header.h ├── Snikket.entitlements ├── channel │ ├── ChannelBlockedUsersController.swift │ ├── ChannelCreateViewController.swift │ ├── ChannelEditInfoController.swift │ ├── ChannelInviteController.swift │ ├── ChannelJoinViewController.swift │ ├── ChannelParticipantsController.swift │ ├── ChannelSelectAccountAndComponentController.swift │ ├── ChannelSelectToJoinViewController.swift │ ├── ChannelSettingsViewController.swift │ ├── ChannelViewController.swift │ └── ChannelsHelper.swift ├── chat │ ├── AppendixProtocol.swift │ ├── AttachmentChatTableViewCell.swift │ ├── BaseChatTableViewCell.swift │ ├── BaseChatViewController+Share.swift │ ├── BaseChatViewController+ShareFile.swift │ ├── BaseChatViewController+ShareMedia.swift │ ├── BaseChatViewController.swift │ ├── BaseChatViewControllerWithDataSource.swift │ ├── BaseChatViewControllerWithDataSourceContextMenuAndToolbar.swift │ ├── ChatAttachementsCellView.swift │ ├── ChatAttachementsController.swift │ ├── ChatAttachment.swift │ ├── ChatEntry.swift │ ├── ChatInvitation.swift │ ├── ChatLinkPreview.swift │ ├── ChatMessage.swift │ ├── ChatTableViewCell.swift │ ├── ChatTableViewSystemCell.swift │ ├── ChatViewController.swift │ ├── ChatViewDataSource.swift │ ├── ChatViewInputBar.swift │ ├── ChatViewItemProtocol.swift │ ├── ConversationLogController.swift │ ├── InvitationChatTableViewCell.swift │ ├── LinkPreviewChatTableViewCell.swift │ └── SendLocationViewController.swift ├── chats │ ├── ChatsListTableViewCell.swift │ └── ChatsListViewController.swift ├── contacts │ ├── ContactBasicTableViewCell.swift │ ├── ContactFormTableViewCell.swift │ ├── ContactViewController.swift │ ├── OMEMOEncryptionSwitchTableViewCell.swift │ └── OMEMOIdentityTableViewCell.swift ├── da.lproj │ ├── Account.strings │ ├── Groupchat.strings │ ├── Info.plist │ ├── Info.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ ├── MIX.strings │ ├── Main.strings │ ├── Settings.strings │ ├── VoIP.strings │ └── Welcome.strings ├── database │ ├── DBCapabilitiesCache.swift │ ├── DBChannelStore.swift │ ├── DBChatHistoryStore.swift │ ├── DBChatHistorySyncStore.swift │ ├── DBChatStore.swift │ ├── DBConnection_main.swift │ ├── DBLastMessageSyncStore.swift │ ├── DBOMEMOStore.swift │ ├── DBRoomStore.swift │ ├── DBRosterStore.swift │ ├── DBVCardsCache.swift │ └── MessageState.swift ├── de.lproj │ ├── Account.strings │ ├── Groupchat.strings │ ├── Info.plist │ ├── Info.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ ├── MIX.strings │ ├── Main.strings │ ├── Settings.strings │ ├── VoIP.strings │ └── Welcome.strings ├── en-GB.lproj │ ├── Account.strings │ ├── Groupchat.strings │ ├── Info.plist │ ├── Info.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ ├── MIX.strings │ ├── Main.strings │ ├── Settings.strings │ ├── VoIP.strings │ └── Welcome.strings ├── en.lproj │ ├── Account.strings │ ├── Groupchat.strings │ ├── Info.plist │ ├── Info.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ ├── MIX.strings │ ├── Main.strings │ ├── Settings.strings │ ├── VoIP.strings │ └── Welcome.strings ├── fr.lproj │ ├── Account.strings │ ├── Groupchat.strings │ ├── Info.plist │ ├── Info.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ ├── MIX.strings │ ├── Main.strings │ ├── Settings.strings │ ├── VoIP.strings │ └── Welcome.strings ├── groupchat │ ├── InviteViewController.swift │ ├── MucChatOccupantsTableViewCell.swift │ ├── MucChatOccupantsTableViewController.swift │ ├── MucChatSettingsViewController.swift │ └── MucChatViewController.swift ├── id.lproj │ ├── Account.strings │ ├── Groupchat.strings │ ├── Info.plist │ ├── Info.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ ├── MIX.strings │ ├── Main.strings │ ├── Settings.strings │ ├── VoIP.strings │ └── Welcome.strings ├── roster │ ├── AbstractRosterViewController.swift │ ├── RosterItemEditViewController.swift │ ├── RosterItemTableViewCell.swift │ ├── RosterProvider.swift │ ├── RosterProviderFlat.swift │ ├── RosterProviderGrouped.swift │ └── RosterViewController.swift ├── service │ ├── AvatarEventHandler.swift │ ├── BlockedEventHandler.swift │ ├── BlockingCommandModuleExtension.swift │ ├── DNSSrvDiskCache.swift │ ├── DiscoEventHandler.swift │ ├── MessageEventHandler.swift │ ├── MixEventHandler.swift │ ├── MucEventHandler.swift │ ├── NewFeaturesDetector.swift │ ├── PEPBookmarksModule_extension.swift │ ├── PEPDisplayNameModule.swift │ ├── PresenceRosterEventHandler.swift │ ├── PushEventHandler.swift │ ├── StreamFeaturesCache.swift │ ├── TelephonyManager.swift │ ├── XmppService.swift │ ├── XmppServiceEventHandler.swift │ └── XmppService_VCardExtension.swift ├── settings │ ├── AccountDomainTableViewCell.swift │ ├── AccountQRCodeController.swift │ ├── AccountSettingsViewController.swift │ ├── AccountTableViewCell.swift │ ├── AddAccountController.swift │ ├── BlockedContactsController.swift │ ├── ChatSettingsViewController.swift │ ├── ContactsSettingsViewController.swift │ ├── ExperimentalSettingsViewController.swift │ ├── MediaSettingsVIewController.swift │ ├── NotificationSettingsViewController.swift │ ├── OMEMOFingerprintsController.swift │ ├── PrivacyPolicyTableViewCell.swift │ ├── RegisterAccountController.swift │ ├── ServerFeaturesViewController.swift │ ├── ServerSelectorTableViewCell.swift │ ├── SettingsViewController.swift │ ├── SetupViewController.swift │ ├── TelephonyProviderViewController.swift │ └── server_features_list.xml ├── sv.lproj │ ├── Account.strings │ ├── Groupchat.strings │ ├── Info.plist │ ├── Info.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ ├── MIX.strings │ ├── Main.strings │ ├── Settings.strings │ ├── VoIP.strings │ └── Welcome.strings ├── ui │ ├── AboutController.swift │ ├── AvatarColors.swift │ ├── AvatarStatusView.swift │ ├── AvatarView.swift │ ├── CertificateErrorAlert.swift │ ├── ChatBottomView.swift │ ├── CustomTabBarController.swift │ ├── CustomUISlider.swift │ ├── DataFormController.swift │ ├── EmptyViewController.swift │ ├── GlobalSplitViewController.swift │ ├── MKMapExtension.swift │ ├── MainTabBarController.swift │ ├── Markdown.swift │ ├── MessageStyling.swift │ ├── MessageTextView.swift │ ├── NavigationControllerWrappingSegue.swift │ ├── RoundButton.swift │ ├── StepperTableViewCell.swift │ ├── SwitchTableViewCell.swift │ ├── TablePicketViewController.swift │ ├── UIImage.swift │ └── WelcomeController.swift ├── util │ ├── AccountManager.swift │ ├── AccountManagerScramSaltedPasswordCache.swift │ ├── AppStoryboard.swift │ ├── AvatarManager.swift │ ├── AvatarStore.swift │ ├── DownloadManager.swift │ ├── DownloadStore.swift │ ├── Extensions.swift │ ├── HTTPFileUploadHelper.swift │ ├── ImageCache.swift │ ├── ImageQuality.swift │ ├── MainNotificationManagerProvider.swift │ ├── MediaHelper.swift │ ├── MessageEncryption.swift │ ├── MetadataCache.swift │ ├── OSLog.swift │ ├── OpenSSL_AES_GCM_Engine.swift │ ├── Settings.swift │ ├── SiskinPushNotificationsModuleProvider.swift │ ├── TasksQueue.swift │ ├── UIColor_mix.swift │ ├── UIDeviceExtension.swift │ └── VideoQuality.swift ├── vcard │ ├── DisplayNameViewController.swift │ ├── VCardAvatarEditCell.swift │ ├── VCardEditAddressTableViewCell.swift │ ├── VCardEditEmailTableViewCell.swift │ ├── VCardEditPhoneTableViewCell.swift │ ├── VCardEditViewController.swift │ ├── VCardEntryTypeAwareTableViewCell.swift │ └── VCardTextEditCell.swift ├── voip │ ├── CallManager.swift │ ├── CameraPreviewView.swift │ ├── ExternalServiceDiscovery_Service_extension.swift │ ├── JingleManager.swift │ ├── JingleManager_Session.swift │ ├── RTCCameraVideoCapturer_Format.swift │ └── VideoCallController.swift └── xmpp │ └── SiskinPushNotificationsModule.swift ├── swiftScript.swift ├── trim.sh ├── update-frameworks.sh └── update-strings.sh /.bartycrouch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/.bartycrouch.toml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_official.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/.github/ISSUE_TEMPLATE/bug_report_official.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_unofficial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/.github/ISSUE_TEMPLATE/bug_report_unofficial.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/COPYING -------------------------------------------------------------------------------- /Frameworks/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NotificationService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/NotificationService/Info.plist -------------------------------------------------------------------------------- /NotificationService/NotificationService.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/NotificationService/NotificationService.entitlements -------------------------------------------------------------------------------- /NotificationService/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/NotificationService/NotificationService.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/README.md -------------------------------------------------------------------------------- /Shared/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/Info.plist -------------------------------------------------------------------------------- /Shared/NotificationCategory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/NotificationCategory.swift -------------------------------------------------------------------------------- /Shared/Shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/Shared.h -------------------------------------------------------------------------------- /Shared/database/DBConnection_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/database/DBConnection_main.swift -------------------------------------------------------------------------------- /Shared/database/DBManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/database/DBManager.swift -------------------------------------------------------------------------------- /Shared/database/DBSchemaManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/database/DBSchemaManager.swift -------------------------------------------------------------------------------- /Shared/db-schema-1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/db-schema-1.sql -------------------------------------------------------------------------------- /Shared/db-schema-10.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/db-schema-10.sql -------------------------------------------------------------------------------- /Shared/db-schema-11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/db-schema-11.sql -------------------------------------------------------------------------------- /Shared/db-schema-12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/db-schema-12.sql -------------------------------------------------------------------------------- /Shared/db-schema-13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/db-schema-13.sql -------------------------------------------------------------------------------- /Shared/db-schema-14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/db-schema-14.sql -------------------------------------------------------------------------------- /Shared/db-schema-15.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/db-schema-15.sql -------------------------------------------------------------------------------- /Shared/db-schema-2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/db-schema-2.sql -------------------------------------------------------------------------------- /Shared/db-schema-3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/db-schema-3.sql -------------------------------------------------------------------------------- /Shared/db-schema-4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/db-schema-4.sql -------------------------------------------------------------------------------- /Shared/db-schema-5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/db-schema-5.sql -------------------------------------------------------------------------------- /Shared/db-schema-6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/db-schema-6.sql -------------------------------------------------------------------------------- /Shared/db-schema-7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/db-schema-7.sql -------------------------------------------------------------------------------- /Shared/db-schema-8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/db-schema-8.sql -------------------------------------------------------------------------------- /Shared/db-schema-9.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/db-schema-9.sql -------------------------------------------------------------------------------- /Shared/notifications/NotificationEncryptionKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/notifications/NotificationEncryptionKeys.swift -------------------------------------------------------------------------------- /Shared/notifications/NotificationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/notifications/NotificationManager.swift -------------------------------------------------------------------------------- /Shared/util/Cipher+AES.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Shared/util/Cipher+AES.swift -------------------------------------------------------------------------------- /Snikket - Share/AccountTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/AccountTableViewCell.swift -------------------------------------------------------------------------------- /Snikket - Share/AccountsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/AccountsTableViewController.swift -------------------------------------------------------------------------------- /Snikket - Share/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Snikket - Share/Assets.xcassets/AppIcon.appiconset/logo-1024px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/Assets.xcassets/AppIcon.appiconset/logo-1024px.png -------------------------------------------------------------------------------- /Snikket - Share/Assets.xcassets/AppIcon.appiconset/logo-120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/Assets.xcassets/AppIcon.appiconset/logo-120px.png -------------------------------------------------------------------------------- /Snikket - Share/Assets.xcassets/AppIcon.appiconset/logo-144px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/Assets.xcassets/AppIcon.appiconset/logo-144px.png -------------------------------------------------------------------------------- /Snikket - Share/Assets.xcassets/AppIcon.appiconset/logo-152px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/Assets.xcassets/AppIcon.appiconset/logo-152px.png -------------------------------------------------------------------------------- /Snikket - Share/Assets.xcassets/AppIcon.appiconset/logo-167px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/Assets.xcassets/AppIcon.appiconset/logo-167px.png -------------------------------------------------------------------------------- /Snikket - Share/Assets.xcassets/AppIcon.appiconset/logo-72px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/Assets.xcassets/AppIcon.appiconset/logo-72px.png -------------------------------------------------------------------------------- /Snikket - Share/Assets.xcassets/AppIcon.appiconset/logo-76px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/Assets.xcassets/AppIcon.appiconset/logo-76px.png -------------------------------------------------------------------------------- /Snikket - Share/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Snikket - Share/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /Snikket - Share/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/Info.plist -------------------------------------------------------------------------------- /Snikket - Share/RecipientTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/RecipientTableViewCell.swift -------------------------------------------------------------------------------- /Snikket - Share/RecipientsSelectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/RecipientsSelectionViewController.swift -------------------------------------------------------------------------------- /Snikket - Share/ShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/ShareViewController.swift -------------------------------------------------------------------------------- /Snikket - Share/Snikket - Share.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/Snikket - Share.entitlements -------------------------------------------------------------------------------- /Snikket - Share/da.lproj/MainInterface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/da.lproj/MainInterface.strings -------------------------------------------------------------------------------- /Snikket - Share/de.lproj/MainInterface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/de.lproj/MainInterface.strings -------------------------------------------------------------------------------- /Snikket - Share/en-GB.lproj/MainInterface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/en-GB.lproj/MainInterface.strings -------------------------------------------------------------------------------- /Snikket - Share/fr.lproj/MainInterface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/fr.lproj/MainInterface.strings -------------------------------------------------------------------------------- /Snikket - Share/id.lproj/MainInterface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/id.lproj/MainInterface.strings -------------------------------------------------------------------------------- /Snikket - Share/sv.lproj/MainInterface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket - Share/sv.lproj/MainInterface.strings -------------------------------------------------------------------------------- /Snikket.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Snikket.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Snikket.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Snikket.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Snikket.xcodeproj/xcshareddata/xcschemes/NotificationService.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket.xcodeproj/xcshareddata/xcschemes/NotificationService.xcscheme -------------------------------------------------------------------------------- /Snikket.xcodeproj/xcshareddata/xcschemes/Snikket - Share.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket.xcodeproj/xcshareddata/xcschemes/Snikket - Share.xcscheme -------------------------------------------------------------------------------- /Snikket.xcodeproj/xcshareddata/xcschemes/Snikket.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket.xcodeproj/xcshareddata/xcschemes/Snikket.xcscheme -------------------------------------------------------------------------------- /Snikket/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/AppDelegate.swift -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/AddToContactsBar.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/AddToContactsBar.colorset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/AppIcon.appiconset/logo-1024px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/AppIcon.appiconset/logo-1024px.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/AppIcon.appiconset/logo-120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/AppIcon.appiconset/logo-120px.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/AppIcon.appiconset/logo-144px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/AppIcon.appiconset/logo-144px.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/AppIcon.appiconset/logo-152px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/AppIcon.appiconset/logo-152px.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/AppIcon.appiconset/logo-167px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/AppIcon.appiconset/logo-167px.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/AppIcon.appiconset/logo-72px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/AppIcon.appiconset/logo-72px.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/AppIcon.appiconset/logo-76px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/AppIcon.appiconset/logo-76px.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/appLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/appLogo.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/appLogo.imageset/logo-1024px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/appLogo.imageset/logo-1024px.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/appearance/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/appearance/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/appearance/chatMessageText.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/appearance/chatMessageText.colorset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/appearance/chatMessageTextOutgoing.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/appearance/chatMessageTextOutgoing.colorset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/appearance/chatslistBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/appearance/chatslistBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/appearance/chatslistItemSecondaryLabel.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/appearance/chatslistItemSecondaryLabel.colorset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/appearance/conversationBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/appearance/conversationBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/appearance/messageInputBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/appearance/messageInputBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/appearance/snikketBlue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/appearance/snikketBlue.colorset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/appearance/tintColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/appearance/tintColor.colorset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/arrow.up.doc.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/arrow.up.doc.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/arrow.up.doc.imageset/round_attach_file_black_24pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/arrow.up.doc.imageset/round_attach_file_black_24pt_2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/attach.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/attach.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/attach.imageset/ic_attach_file_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/attach.imageset/ic_attach_file_36pt.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/attach.imageset/ic_attach_file_36pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/attach.imageset/ic_attach_file_36pt_3x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/attach.imageset/round_attach_file_black_24pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/attach.imageset/round_attach_file_black_24pt_2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/audioCall.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/audioCall.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/audioCall.imageset/icons8-call-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/audioCall.imageset/icons8-call-60.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/bubbles/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/bubbles/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/bubbles/message_bubble_received9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/bubbles/message_bubble_received9.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/bubbles/message_bubble_received9.imageset/message_bubble_received.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/bubbles/message_bubble_received9.imageset/message_bubble_received.9.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/bubbles/message_bubble_received9.imageset/message_bubble_received_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/bubbles/message_bubble_received9.imageset/message_bubble_received_dark.9.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/bubbles/message_bubble_sent9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/bubbles/message_bubble_sent9.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/bubbles/message_bubble_sent9.imageset/message_bubble_sent.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/bubbles/message_bubble_sent9.imageset/message_bubble_sent.9.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/bubbles/message_bubble_sent9.imageset/message_bubble_sent_grey.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/bubbles/message_bubble_sent9.imageset/message_bubble_sent_grey.9.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/camera.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/camera.imageset/round_camera_alt_black_24pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/camera.imageset/round_camera_alt_black_24pt_2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/checkmark.circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/checkmark.circle.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/checkmark.circle.imageset/checkmark.circle@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/checkmark.circle.imageset/checkmark.circle@2x-1.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/checkmark.circle.imageset/checkmark.circle@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/checkmark.circle.imageset/checkmark.circle@2x-2.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/checkmark.circle.imageset/checkmark.circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/checkmark.circle.imageset/checkmark.circle@2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/chevron.down.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/chevron.down.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/chevron.down.imageset/chevron.down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/chevron.down.imageset/chevron.down@2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/chevron.left.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/chevron.left.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/chevron.left.imageset/chevron.left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/chevron.left.imageset/chevron.left@2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/chevron.up.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/chevron.up.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/chevron.up.imageset/chevron.up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/chevron.up.imageset/chevron.up@2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/defaultAvatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/defaultAvatar.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/defaultAvatar.imageset/avatar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/defaultAvatar.imageset/avatar-dark.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/defaultAvatar.imageset/avatar-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/defaultAvatar.imageset/avatar-light.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/defaultGroupchatAvatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/defaultGroupchatAvatar.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/defaultGroupchatAvatar.imageset/groupchat-avatar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/defaultGroupchatAvatar.imageset/groupchat-avatar-dark.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/defaultGroupchatAvatar.imageset/groupchat-avatar-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/defaultGroupchatAvatar.imageset/groupchat-avatar-light.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/dialpad.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/dialpad.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/dialpad.imageset/dialpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/dialpad.imageset/dialpad.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/endCall.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/endCall.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/endCall.imageset/icons8-end-call-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/endCall.imageset/icons8-end-call-60.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/first.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/first.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/first.imageset/first.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/first.imageset/first.pdf -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/gear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/gear.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/gear.imageset/round_menu_black_24pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/gear.imageset/round_menu_black_24pt_2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/info.circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/info.circle.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/info.circle.imageset/info.circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/info.circle.imageset/info.circle@2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/lock-incoming.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/lock-incoming.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/lock-incoming.imageset/ic_lock_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/lock-incoming.imageset/ic_lock_white_24dp.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/lock-outgoing.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/lock-outgoing.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/lock-outgoing.imageset/ic_lock_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/lock-outgoing.imageset/ic_lock_black_18dp.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/lock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/lock.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/lock.imageset/lock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/lock.imageset/lock@2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/map.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/map.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/map.imageset/mappin.circle.fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/map.imageset/mappin.circle.fill@2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/message.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/message.fill.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/message.fill.imageset/round_chat_bubble_black_24pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/message.fill.imageset/round_chat_bubble_black_24pt_2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/messageArchiving.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/messageArchiving.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/messageArchiving.imageset/icons8-communication.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/messageArchiving.imageset/icons8-communication.pdf -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/mic.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/mic.fill.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/mic.fill.imageset/mic.fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/mic.fill.imageset/mic.fill@2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/mic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/mic.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/mic.imageset/mic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/mic.imageset/mic@2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/moreImg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/moreImg.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/moreImg.imageset/moreImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/moreImg.imageset/moreImg.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/mute.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/mute.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/mute.imageset/icons8-block-microphone-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/mute.imageset/icons8-block-microphone-60.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/participants.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/participants.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/participants.imageset/icons8-user-groups-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/participants.imageset/icons8-user-groups-50.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/pause.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/pause.fill.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/pause.fill.imageset/pause.fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/pause.fill.imageset/pause.fill@2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/person.crop.circle.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/person.crop.circle.fill.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/person.crop.circle.fill.imageset/round_account_circle_black_24pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/person.crop.circle.fill.imageset/round_account_circle_black_24pt_2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/photo.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/photo.imageset/round_insert_photo_black_24pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/photo.imageset/round_insert_photo_black_24pt_2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/play.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/play.fill.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/play.fill.imageset/play.fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/play.fill.imageset/play.fill@2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/plus.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/plus.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/plus.imageset/plus@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/plus.imageset/plus@2x-1.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/plus.imageset/plus@2x-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/plus.imageset/plus@2x-3.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/plus.imageset/plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/plus.imageset/plus@2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_away.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_away.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_away.imageset/presence_away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_away.imageset/presence_away.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_chat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_chat.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_chat.imageset/presence_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_chat.imageset/presence_chat.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_dnd.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_dnd.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_dnd.imageset/presence_dnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_dnd.imageset/presence_dnd.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_error.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_error.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_error.imageset/presence_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_error.imageset/presence_error.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_offline.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_offline.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_offline.imageset/presence_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_offline.imageset/presence_offline.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_online.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_online.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_online.imageset/presence_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_online.imageset/presence_online.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_unknown.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_unknown.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_unknown.imageset/presence_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_unknown.imageset/presence_unknown.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_xa.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_xa.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/presence/presence_xa.imageset/presence_xa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/presence/presence_xa.imageset/presence_xa.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/pushNotifications.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/pushNotifications.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/pushNotifications.imageset/icons8-push-notifications.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/pushNotifications.imageset/icons8-push-notifications.pdf -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/qrCode.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/qrCode.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/qrCode.imageset/Qrcode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/qrCode.imageset/Qrcode.pdf -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/qrCodeBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/qrCodeBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/qrCodeForeground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/qrCodeForeground.colorset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/second.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/second.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/second.imageset/second.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/second.imageset/second.pdf -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/send.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/send.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/send.imageset/ic_send_36pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/send.imageset/ic_send_36pt.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/send.imageset/ic_send_36pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/send.imageset/ic_send_36pt_2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/send.imageset/ic_send_36pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/send.imageset/ic_send_36pt_3x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/speaker.slash.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/speaker.slash.fill.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/speaker.slash.fill.imageset/speaker.slash.fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/speaker.slash.fill.imageset/speaker.slash.fill@2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/speaker.wave.3.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/speaker.wave.3.fill.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/speaker.wave.3.fill.imageset/speaker.wave.3.fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/speaker.wave.3.fill.imageset/speaker.wave.3.fill@2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/switchCamera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/switchCamera.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/switchCamera.imageset/icons8-switch-camera-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/switchCamera.imageset/icons8-switch-camera-filled-50.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/tigaseLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/tigaseLogo.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/tigaseLogo.imageset/logo-nobg-1024px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/tigaseLogo.imageset/logo-nobg-1024px.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/videoCall.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/videoCall.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/videoCall.imageset/icons8-video-call-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/videoCall.imageset/icons8-video-call-60.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/xmark.circle.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/xmark.circle.fill.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/xmark.circle.fill.imageset/xmark.circle.fill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/xmark.circle.fill.imageset/xmark.circle.fill@2x.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/xmark.circle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/xmark.circle.imageset/Contents.json -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/xmark.circle.imageset/xmark.circle@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/xmark.circle.imageset/xmark.circle@2x-1.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/xmark.circle.imageset/xmark.circle@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/xmark.circle.imageset/xmark.circle@2x-2.png -------------------------------------------------------------------------------- /Snikket/Assets.xcassets/xmark.circle.imageset/xmark.circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Assets.xcassets/xmark.circle.imageset/xmark.circle@2x.png -------------------------------------------------------------------------------- /Snikket/BartyCrouch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/BartyCrouch.swift -------------------------------------------------------------------------------- /Snikket/Base.lproj/Account.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Base.lproj/Account.storyboard -------------------------------------------------------------------------------- /Snikket/Base.lproj/Groupchat.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Base.lproj/Groupchat.storyboard -------------------------------------------------------------------------------- /Snikket/Base.lproj/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Base.lproj/Info.plist -------------------------------------------------------------------------------- /Snikket/Base.lproj/Info.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Base.lproj/Info.storyboard -------------------------------------------------------------------------------- /Snikket/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Snikket/Base.lproj/MIX.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Base.lproj/MIX.storyboard -------------------------------------------------------------------------------- /Snikket/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Snikket/Base.lproj/Settings.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Base.lproj/Settings.storyboard -------------------------------------------------------------------------------- /Snikket/Base.lproj/VoIP.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Base.lproj/VoIP.storyboard -------------------------------------------------------------------------------- /Snikket/Base.lproj/Welcome.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Base.lproj/Welcome.storyboard -------------------------------------------------------------------------------- /Snikket/Conversation.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Conversation.storyboard -------------------------------------------------------------------------------- /Snikket/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Info.plist -------------------------------------------------------------------------------- /Snikket/NotificationCenterDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/NotificationCenterDelegate.swift -------------------------------------------------------------------------------- /Snikket/SiskinIM-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/SiskinIM-Bridging-Header.h -------------------------------------------------------------------------------- /Snikket/Snikket.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/Snikket.entitlements -------------------------------------------------------------------------------- /Snikket/channel/ChannelBlockedUsersController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/channel/ChannelBlockedUsersController.swift -------------------------------------------------------------------------------- /Snikket/channel/ChannelCreateViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/channel/ChannelCreateViewController.swift -------------------------------------------------------------------------------- /Snikket/channel/ChannelEditInfoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/channel/ChannelEditInfoController.swift -------------------------------------------------------------------------------- /Snikket/channel/ChannelInviteController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/channel/ChannelInviteController.swift -------------------------------------------------------------------------------- /Snikket/channel/ChannelJoinViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/channel/ChannelJoinViewController.swift -------------------------------------------------------------------------------- /Snikket/channel/ChannelParticipantsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/channel/ChannelParticipantsController.swift -------------------------------------------------------------------------------- /Snikket/channel/ChannelSelectAccountAndComponentController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/channel/ChannelSelectAccountAndComponentController.swift -------------------------------------------------------------------------------- /Snikket/channel/ChannelSelectToJoinViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/channel/ChannelSelectToJoinViewController.swift -------------------------------------------------------------------------------- /Snikket/channel/ChannelSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/channel/ChannelSettingsViewController.swift -------------------------------------------------------------------------------- /Snikket/channel/ChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/channel/ChannelViewController.swift -------------------------------------------------------------------------------- /Snikket/channel/ChannelsHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/channel/ChannelsHelper.swift -------------------------------------------------------------------------------- /Snikket/chat/AppendixProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/AppendixProtocol.swift -------------------------------------------------------------------------------- /Snikket/chat/AttachmentChatTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/AttachmentChatTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/chat/BaseChatTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/BaseChatTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/chat/BaseChatViewController+Share.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/BaseChatViewController+Share.swift -------------------------------------------------------------------------------- /Snikket/chat/BaseChatViewController+ShareFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/BaseChatViewController+ShareFile.swift -------------------------------------------------------------------------------- /Snikket/chat/BaseChatViewController+ShareMedia.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/BaseChatViewController+ShareMedia.swift -------------------------------------------------------------------------------- /Snikket/chat/BaseChatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/BaseChatViewController.swift -------------------------------------------------------------------------------- /Snikket/chat/BaseChatViewControllerWithDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/BaseChatViewControllerWithDataSource.swift -------------------------------------------------------------------------------- /Snikket/chat/BaseChatViewControllerWithDataSourceContextMenuAndToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/BaseChatViewControllerWithDataSourceContextMenuAndToolbar.swift -------------------------------------------------------------------------------- /Snikket/chat/ChatAttachementsCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/ChatAttachementsCellView.swift -------------------------------------------------------------------------------- /Snikket/chat/ChatAttachementsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/ChatAttachementsController.swift -------------------------------------------------------------------------------- /Snikket/chat/ChatAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/ChatAttachment.swift -------------------------------------------------------------------------------- /Snikket/chat/ChatEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/ChatEntry.swift -------------------------------------------------------------------------------- /Snikket/chat/ChatInvitation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/ChatInvitation.swift -------------------------------------------------------------------------------- /Snikket/chat/ChatLinkPreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/ChatLinkPreview.swift -------------------------------------------------------------------------------- /Snikket/chat/ChatMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/ChatMessage.swift -------------------------------------------------------------------------------- /Snikket/chat/ChatTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/ChatTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/chat/ChatTableViewSystemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/ChatTableViewSystemCell.swift -------------------------------------------------------------------------------- /Snikket/chat/ChatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/ChatViewController.swift -------------------------------------------------------------------------------- /Snikket/chat/ChatViewDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/ChatViewDataSource.swift -------------------------------------------------------------------------------- /Snikket/chat/ChatViewInputBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/ChatViewInputBar.swift -------------------------------------------------------------------------------- /Snikket/chat/ChatViewItemProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/ChatViewItemProtocol.swift -------------------------------------------------------------------------------- /Snikket/chat/ConversationLogController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/ConversationLogController.swift -------------------------------------------------------------------------------- /Snikket/chat/InvitationChatTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/InvitationChatTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/chat/LinkPreviewChatTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/LinkPreviewChatTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/chat/SendLocationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chat/SendLocationViewController.swift -------------------------------------------------------------------------------- /Snikket/chats/ChatsListTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chats/ChatsListTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/chats/ChatsListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/chats/ChatsListViewController.swift -------------------------------------------------------------------------------- /Snikket/contacts/ContactBasicTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/contacts/ContactBasicTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/contacts/ContactFormTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/contacts/ContactFormTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/contacts/ContactViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/contacts/ContactViewController.swift -------------------------------------------------------------------------------- /Snikket/contacts/OMEMOEncryptionSwitchTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/contacts/OMEMOEncryptionSwitchTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/contacts/OMEMOIdentityTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/contacts/OMEMOIdentityTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/da.lproj/Account.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/da.lproj/Account.strings -------------------------------------------------------------------------------- /Snikket/da.lproj/Groupchat.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/da.lproj/Groupchat.strings -------------------------------------------------------------------------------- /Snikket/da.lproj/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/da.lproj/Info.plist -------------------------------------------------------------------------------- /Snikket/da.lproj/Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/da.lproj/Info.strings -------------------------------------------------------------------------------- /Snikket/da.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Snikket/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /Snikket/da.lproj/MIX.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/da.lproj/MIX.strings -------------------------------------------------------------------------------- /Snikket/da.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/da.lproj/Main.strings -------------------------------------------------------------------------------- /Snikket/da.lproj/Settings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/da.lproj/Settings.strings -------------------------------------------------------------------------------- /Snikket/da.lproj/VoIP.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/da.lproj/VoIP.strings -------------------------------------------------------------------------------- /Snikket/da.lproj/Welcome.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/da.lproj/Welcome.strings -------------------------------------------------------------------------------- /Snikket/database/DBCapabilitiesCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/database/DBCapabilitiesCache.swift -------------------------------------------------------------------------------- /Snikket/database/DBChannelStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/database/DBChannelStore.swift -------------------------------------------------------------------------------- /Snikket/database/DBChatHistoryStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/database/DBChatHistoryStore.swift -------------------------------------------------------------------------------- /Snikket/database/DBChatHistorySyncStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/database/DBChatHistorySyncStore.swift -------------------------------------------------------------------------------- /Snikket/database/DBChatStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/database/DBChatStore.swift -------------------------------------------------------------------------------- /Snikket/database/DBConnection_main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/database/DBConnection_main.swift -------------------------------------------------------------------------------- /Snikket/database/DBLastMessageSyncStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/database/DBLastMessageSyncStore.swift -------------------------------------------------------------------------------- /Snikket/database/DBOMEMOStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/database/DBOMEMOStore.swift -------------------------------------------------------------------------------- /Snikket/database/DBRoomStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/database/DBRoomStore.swift -------------------------------------------------------------------------------- /Snikket/database/DBRosterStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/database/DBRosterStore.swift -------------------------------------------------------------------------------- /Snikket/database/DBVCardsCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/database/DBVCardsCache.swift -------------------------------------------------------------------------------- /Snikket/database/MessageState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/database/MessageState.swift -------------------------------------------------------------------------------- /Snikket/de.lproj/Account.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/de.lproj/Account.strings -------------------------------------------------------------------------------- /Snikket/de.lproj/Groupchat.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/de.lproj/Groupchat.strings -------------------------------------------------------------------------------- /Snikket/de.lproj/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/de.lproj/Info.plist -------------------------------------------------------------------------------- /Snikket/de.lproj/Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/de.lproj/Info.strings -------------------------------------------------------------------------------- /Snikket/de.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Snikket/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Snikket/de.lproj/MIX.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/de.lproj/MIX.strings -------------------------------------------------------------------------------- /Snikket/de.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/de.lproj/Main.strings -------------------------------------------------------------------------------- /Snikket/de.lproj/Settings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/de.lproj/Settings.strings -------------------------------------------------------------------------------- /Snikket/de.lproj/VoIP.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/de.lproj/VoIP.strings -------------------------------------------------------------------------------- /Snikket/de.lproj/Welcome.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/de.lproj/Welcome.strings -------------------------------------------------------------------------------- /Snikket/en-GB.lproj/Account.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en-GB.lproj/Account.strings -------------------------------------------------------------------------------- /Snikket/en-GB.lproj/Groupchat.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en-GB.lproj/Groupchat.strings -------------------------------------------------------------------------------- /Snikket/en-GB.lproj/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en-GB.lproj/Info.plist -------------------------------------------------------------------------------- /Snikket/en-GB.lproj/Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en-GB.lproj/Info.strings -------------------------------------------------------------------------------- /Snikket/en-GB.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Snikket/en-GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en-GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /Snikket/en-GB.lproj/MIX.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en-GB.lproj/MIX.strings -------------------------------------------------------------------------------- /Snikket/en-GB.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en-GB.lproj/Main.strings -------------------------------------------------------------------------------- /Snikket/en-GB.lproj/Settings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en-GB.lproj/Settings.strings -------------------------------------------------------------------------------- /Snikket/en-GB.lproj/VoIP.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en-GB.lproj/VoIP.strings -------------------------------------------------------------------------------- /Snikket/en-GB.lproj/Welcome.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en-GB.lproj/Welcome.strings -------------------------------------------------------------------------------- /Snikket/en.lproj/Account.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en.lproj/Account.strings -------------------------------------------------------------------------------- /Snikket/en.lproj/Groupchat.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en.lproj/Groupchat.strings -------------------------------------------------------------------------------- /Snikket/en.lproj/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en.lproj/Info.plist -------------------------------------------------------------------------------- /Snikket/en.lproj/Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en.lproj/Info.strings -------------------------------------------------------------------------------- /Snikket/en.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Snikket/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Snikket/en.lproj/MIX.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en.lproj/MIX.strings -------------------------------------------------------------------------------- /Snikket/en.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en.lproj/Main.strings -------------------------------------------------------------------------------- /Snikket/en.lproj/Settings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en.lproj/Settings.strings -------------------------------------------------------------------------------- /Snikket/en.lproj/VoIP.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en.lproj/VoIP.strings -------------------------------------------------------------------------------- /Snikket/en.lproj/Welcome.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/en.lproj/Welcome.strings -------------------------------------------------------------------------------- /Snikket/fr.lproj/Account.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/fr.lproj/Account.strings -------------------------------------------------------------------------------- /Snikket/fr.lproj/Groupchat.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/fr.lproj/Groupchat.strings -------------------------------------------------------------------------------- /Snikket/fr.lproj/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/fr.lproj/Info.plist -------------------------------------------------------------------------------- /Snikket/fr.lproj/Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/fr.lproj/Info.strings -------------------------------------------------------------------------------- /Snikket/fr.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Snikket/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Snikket/fr.lproj/MIX.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/fr.lproj/MIX.strings -------------------------------------------------------------------------------- /Snikket/fr.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/fr.lproj/Main.strings -------------------------------------------------------------------------------- /Snikket/fr.lproj/Settings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/fr.lproj/Settings.strings -------------------------------------------------------------------------------- /Snikket/fr.lproj/VoIP.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/fr.lproj/VoIP.strings -------------------------------------------------------------------------------- /Snikket/fr.lproj/Welcome.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/fr.lproj/Welcome.strings -------------------------------------------------------------------------------- /Snikket/groupchat/InviteViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/groupchat/InviteViewController.swift -------------------------------------------------------------------------------- /Snikket/groupchat/MucChatOccupantsTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/groupchat/MucChatOccupantsTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/groupchat/MucChatOccupantsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/groupchat/MucChatOccupantsTableViewController.swift -------------------------------------------------------------------------------- /Snikket/groupchat/MucChatSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/groupchat/MucChatSettingsViewController.swift -------------------------------------------------------------------------------- /Snikket/groupchat/MucChatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/groupchat/MucChatViewController.swift -------------------------------------------------------------------------------- /Snikket/id.lproj/Account.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/id.lproj/Account.strings -------------------------------------------------------------------------------- /Snikket/id.lproj/Groupchat.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/id.lproj/Groupchat.strings -------------------------------------------------------------------------------- /Snikket/id.lproj/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/id.lproj/Info.plist -------------------------------------------------------------------------------- /Snikket/id.lproj/Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/id.lproj/Info.strings -------------------------------------------------------------------------------- /Snikket/id.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Snikket/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /Snikket/id.lproj/MIX.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/id.lproj/MIX.strings -------------------------------------------------------------------------------- /Snikket/id.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/id.lproj/Main.strings -------------------------------------------------------------------------------- /Snikket/id.lproj/Settings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/id.lproj/Settings.strings -------------------------------------------------------------------------------- /Snikket/id.lproj/VoIP.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/id.lproj/VoIP.strings -------------------------------------------------------------------------------- /Snikket/id.lproj/Welcome.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/id.lproj/Welcome.strings -------------------------------------------------------------------------------- /Snikket/roster/AbstractRosterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/roster/AbstractRosterViewController.swift -------------------------------------------------------------------------------- /Snikket/roster/RosterItemEditViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/roster/RosterItemEditViewController.swift -------------------------------------------------------------------------------- /Snikket/roster/RosterItemTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/roster/RosterItemTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/roster/RosterProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/roster/RosterProvider.swift -------------------------------------------------------------------------------- /Snikket/roster/RosterProviderFlat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/roster/RosterProviderFlat.swift -------------------------------------------------------------------------------- /Snikket/roster/RosterProviderGrouped.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/roster/RosterProviderGrouped.swift -------------------------------------------------------------------------------- /Snikket/roster/RosterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/roster/RosterViewController.swift -------------------------------------------------------------------------------- /Snikket/service/AvatarEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/AvatarEventHandler.swift -------------------------------------------------------------------------------- /Snikket/service/BlockedEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/BlockedEventHandler.swift -------------------------------------------------------------------------------- /Snikket/service/BlockingCommandModuleExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/BlockingCommandModuleExtension.swift -------------------------------------------------------------------------------- /Snikket/service/DNSSrvDiskCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/DNSSrvDiskCache.swift -------------------------------------------------------------------------------- /Snikket/service/DiscoEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/DiscoEventHandler.swift -------------------------------------------------------------------------------- /Snikket/service/MessageEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/MessageEventHandler.swift -------------------------------------------------------------------------------- /Snikket/service/MixEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/MixEventHandler.swift -------------------------------------------------------------------------------- /Snikket/service/MucEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/MucEventHandler.swift -------------------------------------------------------------------------------- /Snikket/service/NewFeaturesDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/NewFeaturesDetector.swift -------------------------------------------------------------------------------- /Snikket/service/PEPBookmarksModule_extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/PEPBookmarksModule_extension.swift -------------------------------------------------------------------------------- /Snikket/service/PEPDisplayNameModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/PEPDisplayNameModule.swift -------------------------------------------------------------------------------- /Snikket/service/PresenceRosterEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/PresenceRosterEventHandler.swift -------------------------------------------------------------------------------- /Snikket/service/PushEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/PushEventHandler.swift -------------------------------------------------------------------------------- /Snikket/service/StreamFeaturesCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/StreamFeaturesCache.swift -------------------------------------------------------------------------------- /Snikket/service/TelephonyManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/TelephonyManager.swift -------------------------------------------------------------------------------- /Snikket/service/XmppService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/XmppService.swift -------------------------------------------------------------------------------- /Snikket/service/XmppServiceEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/XmppServiceEventHandler.swift -------------------------------------------------------------------------------- /Snikket/service/XmppService_VCardExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/service/XmppService_VCardExtension.swift -------------------------------------------------------------------------------- /Snikket/settings/AccountDomainTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/AccountDomainTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/settings/AccountQRCodeController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/AccountQRCodeController.swift -------------------------------------------------------------------------------- /Snikket/settings/AccountSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/AccountSettingsViewController.swift -------------------------------------------------------------------------------- /Snikket/settings/AccountTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/AccountTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/settings/AddAccountController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/AddAccountController.swift -------------------------------------------------------------------------------- /Snikket/settings/BlockedContactsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/BlockedContactsController.swift -------------------------------------------------------------------------------- /Snikket/settings/ChatSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/ChatSettingsViewController.swift -------------------------------------------------------------------------------- /Snikket/settings/ContactsSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/ContactsSettingsViewController.swift -------------------------------------------------------------------------------- /Snikket/settings/ExperimentalSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/ExperimentalSettingsViewController.swift -------------------------------------------------------------------------------- /Snikket/settings/MediaSettingsVIewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/MediaSettingsVIewController.swift -------------------------------------------------------------------------------- /Snikket/settings/NotificationSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/NotificationSettingsViewController.swift -------------------------------------------------------------------------------- /Snikket/settings/OMEMOFingerprintsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/OMEMOFingerprintsController.swift -------------------------------------------------------------------------------- /Snikket/settings/PrivacyPolicyTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/PrivacyPolicyTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/settings/RegisterAccountController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/RegisterAccountController.swift -------------------------------------------------------------------------------- /Snikket/settings/ServerFeaturesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/ServerFeaturesViewController.swift -------------------------------------------------------------------------------- /Snikket/settings/ServerSelectorTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/ServerSelectorTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/settings/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/SettingsViewController.swift -------------------------------------------------------------------------------- /Snikket/settings/SetupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/SetupViewController.swift -------------------------------------------------------------------------------- /Snikket/settings/TelephonyProviderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/TelephonyProviderViewController.swift -------------------------------------------------------------------------------- /Snikket/settings/server_features_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/settings/server_features_list.xml -------------------------------------------------------------------------------- /Snikket/sv.lproj/Account.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/sv.lproj/Account.strings -------------------------------------------------------------------------------- /Snikket/sv.lproj/Groupchat.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/sv.lproj/Groupchat.strings -------------------------------------------------------------------------------- /Snikket/sv.lproj/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/sv.lproj/Info.plist -------------------------------------------------------------------------------- /Snikket/sv.lproj/Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/sv.lproj/Info.strings -------------------------------------------------------------------------------- /Snikket/sv.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Snikket/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /Snikket/sv.lproj/MIX.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/sv.lproj/MIX.strings -------------------------------------------------------------------------------- /Snikket/sv.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/sv.lproj/Main.strings -------------------------------------------------------------------------------- /Snikket/sv.lproj/Settings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/sv.lproj/Settings.strings -------------------------------------------------------------------------------- /Snikket/sv.lproj/VoIP.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/sv.lproj/VoIP.strings -------------------------------------------------------------------------------- /Snikket/sv.lproj/Welcome.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/sv.lproj/Welcome.strings -------------------------------------------------------------------------------- /Snikket/ui/AboutController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/AboutController.swift -------------------------------------------------------------------------------- /Snikket/ui/AvatarColors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/AvatarColors.swift -------------------------------------------------------------------------------- /Snikket/ui/AvatarStatusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/AvatarStatusView.swift -------------------------------------------------------------------------------- /Snikket/ui/AvatarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/AvatarView.swift -------------------------------------------------------------------------------- /Snikket/ui/CertificateErrorAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/CertificateErrorAlert.swift -------------------------------------------------------------------------------- /Snikket/ui/ChatBottomView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/ChatBottomView.swift -------------------------------------------------------------------------------- /Snikket/ui/CustomTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/CustomTabBarController.swift -------------------------------------------------------------------------------- /Snikket/ui/CustomUISlider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/CustomUISlider.swift -------------------------------------------------------------------------------- /Snikket/ui/DataFormController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/DataFormController.swift -------------------------------------------------------------------------------- /Snikket/ui/EmptyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/EmptyViewController.swift -------------------------------------------------------------------------------- /Snikket/ui/GlobalSplitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/GlobalSplitViewController.swift -------------------------------------------------------------------------------- /Snikket/ui/MKMapExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/MKMapExtension.swift -------------------------------------------------------------------------------- /Snikket/ui/MainTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/MainTabBarController.swift -------------------------------------------------------------------------------- /Snikket/ui/Markdown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/Markdown.swift -------------------------------------------------------------------------------- /Snikket/ui/MessageStyling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/MessageStyling.swift -------------------------------------------------------------------------------- /Snikket/ui/MessageTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/MessageTextView.swift -------------------------------------------------------------------------------- /Snikket/ui/NavigationControllerWrappingSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/NavigationControllerWrappingSegue.swift -------------------------------------------------------------------------------- /Snikket/ui/RoundButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/RoundButton.swift -------------------------------------------------------------------------------- /Snikket/ui/StepperTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/StepperTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/ui/SwitchTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/SwitchTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/ui/TablePicketViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/TablePicketViewController.swift -------------------------------------------------------------------------------- /Snikket/ui/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/UIImage.swift -------------------------------------------------------------------------------- /Snikket/ui/WelcomeController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/ui/WelcomeController.swift -------------------------------------------------------------------------------- /Snikket/util/AccountManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/AccountManager.swift -------------------------------------------------------------------------------- /Snikket/util/AccountManagerScramSaltedPasswordCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/AccountManagerScramSaltedPasswordCache.swift -------------------------------------------------------------------------------- /Snikket/util/AppStoryboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/AppStoryboard.swift -------------------------------------------------------------------------------- /Snikket/util/AvatarManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/AvatarManager.swift -------------------------------------------------------------------------------- /Snikket/util/AvatarStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/AvatarStore.swift -------------------------------------------------------------------------------- /Snikket/util/DownloadManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/DownloadManager.swift -------------------------------------------------------------------------------- /Snikket/util/DownloadStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/DownloadStore.swift -------------------------------------------------------------------------------- /Snikket/util/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/Extensions.swift -------------------------------------------------------------------------------- /Snikket/util/HTTPFileUploadHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/HTTPFileUploadHelper.swift -------------------------------------------------------------------------------- /Snikket/util/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/ImageCache.swift -------------------------------------------------------------------------------- /Snikket/util/ImageQuality.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/ImageQuality.swift -------------------------------------------------------------------------------- /Snikket/util/MainNotificationManagerProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/MainNotificationManagerProvider.swift -------------------------------------------------------------------------------- /Snikket/util/MediaHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/MediaHelper.swift -------------------------------------------------------------------------------- /Snikket/util/MessageEncryption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/MessageEncryption.swift -------------------------------------------------------------------------------- /Snikket/util/MetadataCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/MetadataCache.swift -------------------------------------------------------------------------------- /Snikket/util/OSLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/OSLog.swift -------------------------------------------------------------------------------- /Snikket/util/OpenSSL_AES_GCM_Engine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/OpenSSL_AES_GCM_Engine.swift -------------------------------------------------------------------------------- /Snikket/util/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/Settings.swift -------------------------------------------------------------------------------- /Snikket/util/SiskinPushNotificationsModuleProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/SiskinPushNotificationsModuleProvider.swift -------------------------------------------------------------------------------- /Snikket/util/TasksQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/TasksQueue.swift -------------------------------------------------------------------------------- /Snikket/util/UIColor_mix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/UIColor_mix.swift -------------------------------------------------------------------------------- /Snikket/util/UIDeviceExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/UIDeviceExtension.swift -------------------------------------------------------------------------------- /Snikket/util/VideoQuality.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/util/VideoQuality.swift -------------------------------------------------------------------------------- /Snikket/vcard/DisplayNameViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/vcard/DisplayNameViewController.swift -------------------------------------------------------------------------------- /Snikket/vcard/VCardAvatarEditCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/vcard/VCardAvatarEditCell.swift -------------------------------------------------------------------------------- /Snikket/vcard/VCardEditAddressTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/vcard/VCardEditAddressTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/vcard/VCardEditEmailTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/vcard/VCardEditEmailTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/vcard/VCardEditPhoneTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/vcard/VCardEditPhoneTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/vcard/VCardEditViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/vcard/VCardEditViewController.swift -------------------------------------------------------------------------------- /Snikket/vcard/VCardEntryTypeAwareTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/vcard/VCardEntryTypeAwareTableViewCell.swift -------------------------------------------------------------------------------- /Snikket/vcard/VCardTextEditCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/vcard/VCardTextEditCell.swift -------------------------------------------------------------------------------- /Snikket/voip/CallManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/voip/CallManager.swift -------------------------------------------------------------------------------- /Snikket/voip/CameraPreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/voip/CameraPreviewView.swift -------------------------------------------------------------------------------- /Snikket/voip/ExternalServiceDiscovery_Service_extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/voip/ExternalServiceDiscovery_Service_extension.swift -------------------------------------------------------------------------------- /Snikket/voip/JingleManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/voip/JingleManager.swift -------------------------------------------------------------------------------- /Snikket/voip/JingleManager_Session.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/voip/JingleManager_Session.swift -------------------------------------------------------------------------------- /Snikket/voip/RTCCameraVideoCapturer_Format.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/voip/RTCCameraVideoCapturer_Format.swift -------------------------------------------------------------------------------- /Snikket/voip/VideoCallController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/voip/VideoCallController.swift -------------------------------------------------------------------------------- /Snikket/xmpp/SiskinPushNotificationsModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/Snikket/xmpp/SiskinPushNotificationsModule.swift -------------------------------------------------------------------------------- /swiftScript.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/swiftScript.swift -------------------------------------------------------------------------------- /trim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/trim.sh -------------------------------------------------------------------------------- /update-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/update-frameworks.sh -------------------------------------------------------------------------------- /update-strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikket-im/snikket-ios/HEAD/update-strings.sh --------------------------------------------------------------------------------