├── .bartycrouch.toml ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report_developer.md │ ├── bug_report_user.md │ ├── feature_request.md │ └── question.md ├── .gitignore ├── COPYING ├── Documentation ├── css │ └── docbook-xsl.css ├── images │ ├── Delacct.PNG │ ├── Home.PNG │ ├── acctsetting.png │ ├── adduser.png │ ├── chatsettings.png │ ├── delchat.png │ ├── deluser.PNG │ ├── edituser.png │ ├── join.png │ ├── occu.png │ ├── presreq.PNG │ ├── recent.png │ ├── regfailure.png │ ├── registernew.png │ ├── roster.PNG │ ├── setstatus.png │ └── settings.PNG ├── index.asciidoc ├── restructured │ ├── .readthedocs.yaml │ ├── Advanced_Options.rst │ ├── Makefile │ ├── Tigase_Messenger_iOS.rst │ ├── Welcome.rst │ ├── conf.py │ ├── images │ │ ├── editcontacts01.png │ │ ├── editcontacts02.png │ │ ├── edituser.png │ │ ├── join.png │ │ ├── join01.png │ │ ├── join02.png │ │ ├── occu.png │ │ ├── presreq.PNG │ │ ├── recent.png │ │ ├── regfailure.png │ │ ├── register01.PNG │ │ ├── register02.PNG │ │ ├── registernew.png │ │ ├── roster.PNG │ │ ├── setstatus.png │ │ ├── setting01.png │ │ ├── setting02.png │ │ ├── setting03.png │ │ ├── setting04.png │ │ ├── setting05.png │ │ ├── setting06.png │ │ ├── setting07.png │ │ ├── setting08.png │ │ ├── settings.PNG │ │ ├── siskin01.jpg │ │ ├── siskin02.png │ │ ├── siskin03.png │ │ └── status.png │ ├── index.rst │ ├── locale │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ └── siskin_im_translation.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── siskin_im_translation.po │ └── make.bat └── text │ ├── advanced.asciidoc │ ├── interface.asciidoc │ └── welcome.asciidoc ├── Frameworks └── .gitkeep ├── NotificationService ├── Info.plist ├── NotificationService.entitlements └── NotificationService.swift ├── README.md ├── Shared ├── Info.plist ├── NotificationCategory.swift ├── Shared.h ├── database │ ├── ConversationType.swift │ └── Database.swift ├── notifications │ ├── ConversationNotifications.swift │ ├── NotificationEncryptionKeys.swift │ └── NotificationsManagerHelper.swift ├── ui │ └── UIImage.swift └── util │ ├── HTTPFileUploadHelper.swift │ ├── ImageQuality.swift │ ├── MediaHelper.swift │ ├── VideoQuality.swift │ └── crypto │ ├── Cipher+AES.swift │ ├── SSLCertificate.swift │ ├── SSLContext.swift │ └── SSLProcessor.swift ├── SiskinIM - Share ├── Assets.xcassets │ ├── AppIcon-Simple.appiconset │ │ ├── 1024.png │ │ ├── 120 1.png │ │ ├── 120.png │ │ ├── 152.png │ │ ├── 167.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 1024.png │ │ ├── 120 1.png │ │ ├── 120.png │ │ ├── 152.png │ │ ├── 167.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ └── Contents.json │ └── Contents.json ├── Info.plist ├── ShareViewController.swift ├── SiskinIM - Share.entitlements └── localization │ ├── Base.lproj │ └── MainInterface.storyboard │ ├── de.lproj │ └── MainInterface.strings │ ├── en.lproj │ └── MainInterface.strings │ ├── es.lproj │ └── MainInterface.strings │ └── pl.lproj │ └── MainInterface.strings ├── SiskinIM.entitlements ├── SiskinIM.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── NotificationService.xcscheme ├── SiskinIM ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon-Simple.appiconset │ │ ├── 1024.png │ │ ├── 120 1.png │ │ ├── 120.png │ │ ├── 152.png │ │ ├── 167.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 1024.png │ │ ├── 120 1.png │ │ ├── 120.png │ │ ├── 152.png │ │ ├── 167.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ └── Contents.json │ ├── Contents.json │ ├── appLogo.imageset │ │ ├── 1024.png │ │ └── Contents.json │ ├── appearance │ │ ├── Contents.json │ │ ├── chatMessageText.colorset │ │ │ └── Contents.json │ │ ├── chatslistBackground.colorset │ │ │ └── Contents.json │ │ ├── chatslistItemSecondaryLabel.colorset │ │ │ └── Contents.json │ │ ├── chatslistSemiBackground.colorset │ │ │ └── Contents.json │ │ └── tintColor.colorset │ │ │ └── Contents.json │ ├── audioCall.imageset │ │ ├── Contents.json │ │ └── icons8-call-60.png │ ├── defaultAvatar.imageset │ │ ├── Contents.json │ │ ├── avatar-dark.png │ │ └── avatar-light.png │ ├── defaultGroupchatAvatar.imageset │ │ ├── Contents.json │ │ ├── groupchat-avatar-dark.png │ │ └── groupchat-avatar-light.png │ ├── endCall.imageset │ │ ├── Contents.json │ │ └── icons8-end-call-60.png │ ├── first.imageset │ │ ├── Contents.json │ │ └── first.pdf │ ├── message.fill.imageset │ │ ├── Contents.json │ │ └── round_chat_bubble_black_24pt_2x.png │ ├── messageArchiving.imageset │ │ ├── Contents.json │ │ └── icons8-communication.pdf │ ├── mute.imageset │ │ ├── Contents.json │ │ └── icons8-block-microphone-60.png │ ├── participants.imageset │ │ ├── Contents.json │ │ └── icons8-user-groups-50.png │ ├── person.crop.circle.fill.imageset │ │ ├── Contents.json │ │ └── round_account_circle_black_24pt_2x.png │ ├── pushNotifications.imageset │ │ ├── Contents.json │ │ └── icons8-push-notifications.pdf │ ├── qrCodeBackground.colorset │ │ └── Contents.json │ ├── qrCodeForeground.colorset │ │ └── Contents.json │ ├── second.imageset │ │ ├── Contents.json │ │ └── second.pdf │ ├── switchCamera.imageset │ │ ├── Contents.json │ │ └── icons8-switch-camera-filled-50.png │ ├── tigaseLogo.imageset │ │ ├── Contents.json │ │ └── tigase_logo_1024x1024.png │ └── videoCall.imageset │ │ ├── Contents.json │ │ └── icons8-video-call-60.png ├── Info.plist ├── SiskinIM-Bridging-Header.h ├── bookmarks │ ├── BookmarkItem.swift │ ├── BookmarkViewCell.swift │ └── BookmarksController.swift ├── channel │ ├── ChannelBlockedUsersController.swift │ ├── ChannelCreateViewController.swift │ ├── ChannelEditInfoController.swift │ ├── ChannelInviteController.swift │ ├── ChannelJoinViewController.swift │ ├── ChannelParticipantsController.swift │ ├── ChannelSelectAccountAndComponentController.swift │ ├── ChannelSelectNewOwnerViewController.swift │ ├── ChannelSelectToJoinViewController.swift │ ├── ChannelSettingsViewController.swift │ ├── ChannelViewController.swift │ └── ChannelsHelper.swift ├── chat │ ├── BaseChatViewController+Share.swift │ ├── BaseChatViewController+ShareFile.swift │ ├── BaseChatViewController+ShareMedia.swift │ ├── BaseChatViewController.swift │ ├── BaseChatViewControllerWithDataSource.swift │ ├── BaseChatViewControllerWithDataSourceContextMenuAndToolbar.swift │ ├── ChatAttachementsCellView.swift │ ├── ChatAttachementsController.swift │ ├── ChatViewController.swift │ ├── ChatViewInputBar.swift │ ├── ShareLocationController.swift │ └── ShareLocationSearchResultsController.swift ├── chats │ ├── ChatsListTableViewCell.swift │ └── ChatsListViewController.swift ├── contacts │ ├── ContactBasicTableViewCell.swift │ ├── ContactFormTableViewCell.swift │ ├── ContactViewController.swift │ └── OMEMOIdentityTableViewCell.swift ├── conversation │ ├── AttachmentChatTableViewCell.swift │ ├── BaseChatTableViewCell.swift │ ├── ChatTableViewCell.swift │ ├── ChatTableViewMarkerCell.swift │ ├── ChatTableViewSystemCell.swift │ ├── ConversationDataSource.swift │ ├── ConversationLogController.swift │ ├── InvitationChatTableViewCell.swift │ ├── LinkPreviewChatTableViewCell.swift │ └── LocationChatTableViewCell.swift ├── database │ ├── DBCapabilitiesCache.swift │ ├── DBChatHistoryStore.swift │ ├── DBChatHistorySyncStore.swift │ ├── DBChatMarkersStore.swift │ ├── DBChatStore+ChannelStore.swift │ ├── DBChatStore+ChatStore.swift │ ├── DBChatStore+RoomStore.swift │ ├── DBChatStore.swift │ ├── DBOMEMOStore.swift │ ├── DBRosterStore.swift │ ├── DBVCardStore.swift │ ├── Database.swift │ ├── DatabaseMigrator.swift │ ├── MessageState.swift │ └── model │ │ ├── DisplayableIdProtocol.swift │ │ ├── conversations │ │ ├── AccountConversations.swift │ │ ├── Channel.swift │ │ ├── Chat.swift │ │ ├── Conversation.swift │ │ ├── ConversationBase.swift │ │ └── Room.swift │ │ └── history │ │ ├── AppendixProtocol.swift │ │ ├── ConversationAttachment.swift │ │ ├── ConversationEntry.swift │ │ ├── ConversationEntryEncryption.swift │ │ ├── ConversationEntryRecipient.swift │ │ ├── ConversationEntrySender.swift │ │ ├── ConversationEntryState.swift │ │ ├── ConversationInvitation.swift │ │ └── ConversationKey.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-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 ├── groupchat │ ├── InviteViewController.swift │ ├── MucChatOccupantsTableViewCell.swift │ ├── MucChatOccupantsTableViewController.swift │ ├── MucChatSettingsViewController.swift │ └── MucChatViewController.swift ├── localization │ ├── Base.lproj │ │ ├── Account.storyboard │ │ ├── Conversation.storyboard │ │ ├── Groupchat.storyboard │ │ ├── Info.storyboard │ │ ├── LaunchScreen.storyboard │ │ ├── MIX.storyboard │ │ ├── Main.storyboard │ │ ├── Settings.storyboard │ │ └── VoIP.storyboard │ ├── de.lproj │ │ ├── Account.strings │ │ ├── Conversation.strings │ │ ├── Groupchat.strings │ │ ├── Info.strings │ │ ├── LaunchScreen.strings │ │ ├── Localizable.strings │ │ ├── MIX.strings │ │ ├── Main.strings │ │ ├── Settings.strings │ │ └── VoIP.strings │ ├── en.lproj │ │ ├── Account.strings │ │ ├── Conversation.strings │ │ ├── Groupchat.strings │ │ ├── Info.strings │ │ ├── Localizable.strings │ │ ├── MIX.strings │ │ ├── Main.strings │ │ ├── Settings.strings │ │ └── VoIP.strings │ ├── es.lproj │ │ ├── Account.strings │ │ ├── Conversation.strings │ │ ├── Groupchat.strings │ │ ├── Info.strings │ │ ├── LaunchScreen.strings │ │ ├── Localizable.strings │ │ ├── MIX.strings │ │ ├── Main.strings │ │ ├── Settings.strings │ │ └── VoIP.strings │ └── pl.lproj │ │ ├── Account.strings │ │ ├── Conversation.strings │ │ ├── Groupchat.strings │ │ ├── Info.strings │ │ ├── LaunchScreen.strings │ │ ├── Localizable.strings │ │ ├── MIX.strings │ │ ├── Main.strings │ │ ├── Settings.strings │ │ └── VoIP.strings ├── notifications │ ├── NotificationCenterDelegate.swift │ └── NotificationManager.swift ├── roster │ ├── AbstractRosterViewController.swift │ ├── RosterItemEditViewController.swift │ ├── RosterItemTableViewCell.swift │ ├── RosterProvider.swift │ ├── RosterProviderFlat.swift │ ├── RosterProviderGrouped.swift │ └── RosterViewController.swift ├── service │ ├── AvatarEventHandler.swift │ ├── BlockedEventHandler.swift │ ├── DNSSrvDiskCache.swift │ ├── MeetEventHandler.swift │ ├── MessageEventHandler.swift │ ├── MixEventHandler.swift │ ├── MucEventHandler.swift │ ├── NewFeaturesDetector.swift │ ├── PresenceRosterEventHandler.swift │ ├── PushEventHandler.swift │ ├── StreamFeaturesCache.swift │ ├── XMPPClient_extension.swift │ ├── XmppService.swift │ └── XmppServiceEventHandler.swift ├── settings │ ├── AccountConnectivitySettingsViewController.swift │ ├── AccountDomainTableViewCell.swift │ ├── AccountQRCodeController.swift │ ├── AccountSettingsViewController.swift │ ├── AccountTableViewCell.swift │ ├── AddAccountController.swift │ ├── BlockedContactsController.swift │ ├── ChatSettingsViewController.swift │ ├── ContactsSettingsViewController.swift │ ├── DeviceMemoryUsageTableViewCell.swift │ ├── ExperimentalSettingsViewController.swift │ ├── MediaSettingsVIewController.swift │ ├── NotificationSettingsViewController.swift │ ├── OMEMOFingerprintsController.swift │ ├── RegisterAccountController.swift │ ├── ServerFeaturesViewController.swift │ ├── ServerSelectorTableViewCell.swift │ ├── SetAccountSettingsController.swift │ ├── SettingsViewController.swift │ ├── SetupViewController.swift │ └── server_features_list.xml ├── ui │ ├── AboutController.swift │ ├── AvatarStatusView.swift │ ├── AvatarView.swift │ ├── CertificateErrorAlert.swift │ ├── ChartView.swift │ ├── ChatBottomView.swift │ ├── CustomTabBarController.swift │ ├── DataFormController.swift │ ├── EmptyViewController.swift │ ├── EnumTableViewCell.swift │ ├── GetInTouchViewController.swift │ ├── GlobalSplitViewController.swift │ ├── MainTabBarController.swift │ ├── Markdown.swift │ ├── MessageTextView.swift │ ├── NavigationControllerWrappingSegue.swift │ ├── RoundButton.swift │ ├── StepperTableViewCell.swift │ ├── SwitchTableViewCell.swift │ ├── TablePicketViewController.swift │ └── suggestions │ │ └── MultiContactSelectionView.swift ├── util │ ├── AccountManager.swift │ ├── AccountManagerScramSaltedPasswordCache.swift │ ├── AppStoryboard.swift │ ├── Array+IndexChanges.swift │ ├── AudioSession.swift │ ├── AvatarManager.swift │ ├── AvatarStore.swift │ ├── ContactManager.swift │ ├── CurrentDatePublisher.swift │ ├── DownloadManager.swift │ ├── DownloadStore.swift │ ├── InvitationsManager.swift │ ├── MainNotificationManagerProvider.swift │ ├── MediaHelper.swift │ ├── MessageEncryption.swift │ ├── MetadataCache.swift │ ├── OSLog.swift │ ├── OpenSSL_AES_GCM_Engine.swift │ ├── PresenceStore.swift │ ├── ServerCertificateInfo.swift │ ├── Settings.swift │ ├── SiskinPushNotificationsModuleProvider.swift │ ├── TasksQueue.swift │ ├── UIColor_mix.swift │ ├── VCardManager.swift │ └── combine │ │ ├── Publisher+OnlyGetter.swift │ │ ├── Publisher+ThrottleFixed.swift │ │ └── Publisher+ThrottledSink.swift ├── vcard │ ├── VCardAvatarEditCell.swift │ ├── VCardEditAddressTableViewCell.swift │ ├── VCardEditEmailTableViewCell.swift │ ├── VCardEditPhoneTableViewCell.swift │ ├── VCardEditViewController.swift │ ├── VCardEntryTypeAwareTableViewCell.swift │ └── VCardTextEditCell.swift ├── voip │ ├── CallManager.swift │ ├── CameraPreviewView.swift │ ├── CreateMeetingViewController.swift │ ├── ExternalServiceDiscovery_Service_extension.swift │ ├── InviteToMeetingViewController.swift │ ├── JingleManager.swift │ ├── JingleManager_Session.swift │ ├── MeetController.swift │ ├── MeetManager.swift │ ├── RTCCameraVideoCapturer_Format.swift │ └── VideoCallController.swift └── xmpp │ ├── HttpFileUploadModule.swift │ └── SiskinPushNotificationsModule.swift ├── pom.xml ├── siskin-im.doap ├── swiftScript.swift ├── trim.sh └── update-frameworks.sh /.bartycrouch.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/.bartycrouch.toml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [tigase] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/.github/ISSUE_TEMPLATE/bug_report_developer.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/.github/ISSUE_TEMPLATE/bug_report_user.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/COPYING -------------------------------------------------------------------------------- /Documentation/css/docbook-xsl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/css/docbook-xsl.css -------------------------------------------------------------------------------- /Documentation/images/Delacct.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/Delacct.PNG -------------------------------------------------------------------------------- /Documentation/images/Home.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/Home.PNG -------------------------------------------------------------------------------- /Documentation/images/acctsetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/acctsetting.png -------------------------------------------------------------------------------- /Documentation/images/adduser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/adduser.png -------------------------------------------------------------------------------- /Documentation/images/chatsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/chatsettings.png -------------------------------------------------------------------------------- /Documentation/images/delchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/delchat.png -------------------------------------------------------------------------------- /Documentation/images/deluser.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/deluser.PNG -------------------------------------------------------------------------------- /Documentation/images/edituser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/edituser.png -------------------------------------------------------------------------------- /Documentation/images/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/join.png -------------------------------------------------------------------------------- /Documentation/images/occu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/occu.png -------------------------------------------------------------------------------- /Documentation/images/presreq.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/presreq.PNG -------------------------------------------------------------------------------- /Documentation/images/recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/recent.png -------------------------------------------------------------------------------- /Documentation/images/regfailure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/regfailure.png -------------------------------------------------------------------------------- /Documentation/images/registernew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/registernew.png -------------------------------------------------------------------------------- /Documentation/images/roster.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/roster.PNG -------------------------------------------------------------------------------- /Documentation/images/setstatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/setstatus.png -------------------------------------------------------------------------------- /Documentation/images/settings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/images/settings.PNG -------------------------------------------------------------------------------- /Documentation/index.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/index.asciidoc -------------------------------------------------------------------------------- /Documentation/restructured/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/.readthedocs.yaml -------------------------------------------------------------------------------- /Documentation/restructured/Advanced_Options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/Advanced_Options.rst -------------------------------------------------------------------------------- /Documentation/restructured/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/Makefile -------------------------------------------------------------------------------- /Documentation/restructured/Tigase_Messenger_iOS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/Tigase_Messenger_iOS.rst -------------------------------------------------------------------------------- /Documentation/restructured/Welcome.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/Welcome.rst -------------------------------------------------------------------------------- /Documentation/restructured/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/conf.py -------------------------------------------------------------------------------- /Documentation/restructured/images/editcontacts01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/editcontacts01.png -------------------------------------------------------------------------------- /Documentation/restructured/images/editcontacts02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/editcontacts02.png -------------------------------------------------------------------------------- /Documentation/restructured/images/edituser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/edituser.png -------------------------------------------------------------------------------- /Documentation/restructured/images/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/join.png -------------------------------------------------------------------------------- /Documentation/restructured/images/join01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/join01.png -------------------------------------------------------------------------------- /Documentation/restructured/images/join02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/join02.png -------------------------------------------------------------------------------- /Documentation/restructured/images/occu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/occu.png -------------------------------------------------------------------------------- /Documentation/restructured/images/presreq.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/presreq.PNG -------------------------------------------------------------------------------- /Documentation/restructured/images/recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/recent.png -------------------------------------------------------------------------------- /Documentation/restructured/images/regfailure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/regfailure.png -------------------------------------------------------------------------------- /Documentation/restructured/images/register01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/register01.PNG -------------------------------------------------------------------------------- /Documentation/restructured/images/register02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/register02.PNG -------------------------------------------------------------------------------- /Documentation/restructured/images/registernew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/registernew.png -------------------------------------------------------------------------------- /Documentation/restructured/images/roster.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/roster.PNG -------------------------------------------------------------------------------- /Documentation/restructured/images/setstatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/setstatus.png -------------------------------------------------------------------------------- /Documentation/restructured/images/setting01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/setting01.png -------------------------------------------------------------------------------- /Documentation/restructured/images/setting02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/setting02.png -------------------------------------------------------------------------------- /Documentation/restructured/images/setting03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/setting03.png -------------------------------------------------------------------------------- /Documentation/restructured/images/setting04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/setting04.png -------------------------------------------------------------------------------- /Documentation/restructured/images/setting05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/setting05.png -------------------------------------------------------------------------------- /Documentation/restructured/images/setting06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/setting06.png -------------------------------------------------------------------------------- /Documentation/restructured/images/setting07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/setting07.png -------------------------------------------------------------------------------- /Documentation/restructured/images/setting08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/setting08.png -------------------------------------------------------------------------------- /Documentation/restructured/images/settings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/settings.PNG -------------------------------------------------------------------------------- /Documentation/restructured/images/siskin01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/siskin01.jpg -------------------------------------------------------------------------------- /Documentation/restructured/images/siskin02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/siskin02.png -------------------------------------------------------------------------------- /Documentation/restructured/images/siskin03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/siskin03.png -------------------------------------------------------------------------------- /Documentation/restructured/images/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/images/status.png -------------------------------------------------------------------------------- /Documentation/restructured/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/index.rst -------------------------------------------------------------------------------- /Documentation/restructured/locale/pl/LC_MESSAGES/siskin_im_translation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/locale/pl/LC_MESSAGES/siskin_im_translation.po -------------------------------------------------------------------------------- /Documentation/restructured/locale/zh_CN/LC_MESSAGES/siskin_im_translation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/locale/zh_CN/LC_MESSAGES/siskin_im_translation.po -------------------------------------------------------------------------------- /Documentation/restructured/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/restructured/make.bat -------------------------------------------------------------------------------- /Documentation/text/advanced.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/text/advanced.asciidoc -------------------------------------------------------------------------------- /Documentation/text/interface.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/text/interface.asciidoc -------------------------------------------------------------------------------- /Documentation/text/welcome.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Documentation/text/welcome.asciidoc -------------------------------------------------------------------------------- /Frameworks/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NotificationService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/NotificationService/Info.plist -------------------------------------------------------------------------------- /NotificationService/NotificationService.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/NotificationService/NotificationService.entitlements -------------------------------------------------------------------------------- /NotificationService/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/NotificationService/NotificationService.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/README.md -------------------------------------------------------------------------------- /Shared/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/Info.plist -------------------------------------------------------------------------------- /Shared/NotificationCategory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/NotificationCategory.swift -------------------------------------------------------------------------------- /Shared/Shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/Shared.h -------------------------------------------------------------------------------- /Shared/database/ConversationType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/database/ConversationType.swift -------------------------------------------------------------------------------- /Shared/database/Database.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/database/Database.swift -------------------------------------------------------------------------------- /Shared/notifications/ConversationNotifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/notifications/ConversationNotifications.swift -------------------------------------------------------------------------------- /Shared/notifications/NotificationEncryptionKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/notifications/NotificationEncryptionKeys.swift -------------------------------------------------------------------------------- /Shared/notifications/NotificationsManagerHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/notifications/NotificationsManagerHelper.swift -------------------------------------------------------------------------------- /Shared/ui/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/ui/UIImage.swift -------------------------------------------------------------------------------- /Shared/util/HTTPFileUploadHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/util/HTTPFileUploadHelper.swift -------------------------------------------------------------------------------- /Shared/util/ImageQuality.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/util/ImageQuality.swift -------------------------------------------------------------------------------- /Shared/util/MediaHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/util/MediaHelper.swift -------------------------------------------------------------------------------- /Shared/util/VideoQuality.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/util/VideoQuality.swift -------------------------------------------------------------------------------- /Shared/util/crypto/Cipher+AES.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/util/crypto/Cipher+AES.swift -------------------------------------------------------------------------------- /Shared/util/crypto/SSLCertificate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/util/crypto/SSLCertificate.swift -------------------------------------------------------------------------------- /Shared/util/crypto/SSLContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/util/crypto/SSLContext.swift -------------------------------------------------------------------------------- /Shared/util/crypto/SSLProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/Shared/util/crypto/SSLProcessor.swift -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/1024.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/120 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/120 1.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/120.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/152.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/167.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/72.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/76.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/80.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon-Simple.appiconset/Contents.json -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/120 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/120 1.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SiskinIM - Share/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SiskinIM - Share/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/Info.plist -------------------------------------------------------------------------------- /SiskinIM - Share/ShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/ShareViewController.swift -------------------------------------------------------------------------------- /SiskinIM - Share/SiskinIM - Share.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/SiskinIM - Share.entitlements -------------------------------------------------------------------------------- /SiskinIM - Share/localization/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/localization/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /SiskinIM - Share/localization/de.lproj/MainInterface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/localization/de.lproj/MainInterface.strings -------------------------------------------------------------------------------- /SiskinIM - Share/localization/en.lproj/MainInterface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/localization/en.lproj/MainInterface.strings -------------------------------------------------------------------------------- /SiskinIM - Share/localization/es.lproj/MainInterface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/localization/es.lproj/MainInterface.strings -------------------------------------------------------------------------------- /SiskinIM - Share/localization/pl.lproj/MainInterface.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM - Share/localization/pl.lproj/MainInterface.strings -------------------------------------------------------------------------------- /SiskinIM.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM.entitlements -------------------------------------------------------------------------------- /SiskinIM.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SiskinIM.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SiskinIM.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SiskinIM.xcodeproj/xcshareddata/xcschemes/NotificationService.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM.xcodeproj/xcshareddata/xcschemes/NotificationService.xcscheme -------------------------------------------------------------------------------- /SiskinIM/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/AppDelegate.swift -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/1024.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/120 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/120 1.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/120.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/152.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/167.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/72.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/76.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/80.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon-Simple.appiconset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon.appiconset/120 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon.appiconset/120 1.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/appLogo.imageset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/appLogo.imageset/1024.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/appLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/appLogo.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/appearance/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/appearance/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/appearance/chatMessageText.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/appearance/chatMessageText.colorset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/appearance/chatslistBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/appearance/chatslistBackground.colorset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/appearance/chatslistItemSecondaryLabel.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/appearance/chatslistItemSecondaryLabel.colorset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/appearance/chatslistSemiBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/appearance/chatslistSemiBackground.colorset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/appearance/tintColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/appearance/tintColor.colorset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/audioCall.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/audioCall.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/audioCall.imageset/icons8-call-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/audioCall.imageset/icons8-call-60.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/defaultAvatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/defaultAvatar.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/defaultAvatar.imageset/avatar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/defaultAvatar.imageset/avatar-dark.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/defaultAvatar.imageset/avatar-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/defaultAvatar.imageset/avatar-light.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/defaultGroupchatAvatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/defaultGroupchatAvatar.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/defaultGroupchatAvatar.imageset/groupchat-avatar-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/defaultGroupchatAvatar.imageset/groupchat-avatar-dark.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/defaultGroupchatAvatar.imageset/groupchat-avatar-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/defaultGroupchatAvatar.imageset/groupchat-avatar-light.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/endCall.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/endCall.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/endCall.imageset/icons8-end-call-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/endCall.imageset/icons8-end-call-60.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/first.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/first.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/first.imageset/first.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/first.imageset/first.pdf -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/message.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/message.fill.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/message.fill.imageset/round_chat_bubble_black_24pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/message.fill.imageset/round_chat_bubble_black_24pt_2x.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/messageArchiving.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/messageArchiving.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/messageArchiving.imageset/icons8-communication.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/messageArchiving.imageset/icons8-communication.pdf -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/mute.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/mute.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/mute.imageset/icons8-block-microphone-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/mute.imageset/icons8-block-microphone-60.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/participants.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/participants.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/participants.imageset/icons8-user-groups-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/participants.imageset/icons8-user-groups-50.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/person.crop.circle.fill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/person.crop.circle.fill.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/person.crop.circle.fill.imageset/round_account_circle_black_24pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/person.crop.circle.fill.imageset/round_account_circle_black_24pt_2x.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/pushNotifications.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/pushNotifications.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/pushNotifications.imageset/icons8-push-notifications.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/pushNotifications.imageset/icons8-push-notifications.pdf -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/qrCodeBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/qrCodeBackground.colorset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/qrCodeForeground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/qrCodeForeground.colorset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/second.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/second.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/second.imageset/second.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/second.imageset/second.pdf -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/switchCamera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/switchCamera.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/switchCamera.imageset/icons8-switch-camera-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/switchCamera.imageset/icons8-switch-camera-filled-50.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/tigaseLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/tigaseLogo.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/tigaseLogo.imageset/tigase_logo_1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/tigaseLogo.imageset/tigase_logo_1024x1024.png -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/videoCall.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/videoCall.imageset/Contents.json -------------------------------------------------------------------------------- /SiskinIM/Assets.xcassets/videoCall.imageset/icons8-video-call-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Assets.xcassets/videoCall.imageset/icons8-video-call-60.png -------------------------------------------------------------------------------- /SiskinIM/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/Info.plist -------------------------------------------------------------------------------- /SiskinIM/SiskinIM-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/SiskinIM-Bridging-Header.h -------------------------------------------------------------------------------- /SiskinIM/bookmarks/BookmarkItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/bookmarks/BookmarkItem.swift -------------------------------------------------------------------------------- /SiskinIM/bookmarks/BookmarkViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/bookmarks/BookmarkViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/bookmarks/BookmarksController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/bookmarks/BookmarksController.swift -------------------------------------------------------------------------------- /SiskinIM/channel/ChannelBlockedUsersController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/channel/ChannelBlockedUsersController.swift -------------------------------------------------------------------------------- /SiskinIM/channel/ChannelCreateViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/channel/ChannelCreateViewController.swift -------------------------------------------------------------------------------- /SiskinIM/channel/ChannelEditInfoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/channel/ChannelEditInfoController.swift -------------------------------------------------------------------------------- /SiskinIM/channel/ChannelInviteController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/channel/ChannelInviteController.swift -------------------------------------------------------------------------------- /SiskinIM/channel/ChannelJoinViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/channel/ChannelJoinViewController.swift -------------------------------------------------------------------------------- /SiskinIM/channel/ChannelParticipantsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/channel/ChannelParticipantsController.swift -------------------------------------------------------------------------------- /SiskinIM/channel/ChannelSelectAccountAndComponentController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/channel/ChannelSelectAccountAndComponentController.swift -------------------------------------------------------------------------------- /SiskinIM/channel/ChannelSelectNewOwnerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/channel/ChannelSelectNewOwnerViewController.swift -------------------------------------------------------------------------------- /SiskinIM/channel/ChannelSelectToJoinViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/channel/ChannelSelectToJoinViewController.swift -------------------------------------------------------------------------------- /SiskinIM/channel/ChannelSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/channel/ChannelSettingsViewController.swift -------------------------------------------------------------------------------- /SiskinIM/channel/ChannelViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/channel/ChannelViewController.swift -------------------------------------------------------------------------------- /SiskinIM/channel/ChannelsHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/channel/ChannelsHelper.swift -------------------------------------------------------------------------------- /SiskinIM/chat/BaseChatViewController+Share.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/chat/BaseChatViewController+Share.swift -------------------------------------------------------------------------------- /SiskinIM/chat/BaseChatViewController+ShareFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/chat/BaseChatViewController+ShareFile.swift -------------------------------------------------------------------------------- /SiskinIM/chat/BaseChatViewController+ShareMedia.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/chat/BaseChatViewController+ShareMedia.swift -------------------------------------------------------------------------------- /SiskinIM/chat/BaseChatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/chat/BaseChatViewController.swift -------------------------------------------------------------------------------- /SiskinIM/chat/BaseChatViewControllerWithDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/chat/BaseChatViewControllerWithDataSource.swift -------------------------------------------------------------------------------- /SiskinIM/chat/BaseChatViewControllerWithDataSourceContextMenuAndToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/chat/BaseChatViewControllerWithDataSourceContextMenuAndToolbar.swift -------------------------------------------------------------------------------- /SiskinIM/chat/ChatAttachementsCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/chat/ChatAttachementsCellView.swift -------------------------------------------------------------------------------- /SiskinIM/chat/ChatAttachementsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/chat/ChatAttachementsController.swift -------------------------------------------------------------------------------- /SiskinIM/chat/ChatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/chat/ChatViewController.swift -------------------------------------------------------------------------------- /SiskinIM/chat/ChatViewInputBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/chat/ChatViewInputBar.swift -------------------------------------------------------------------------------- /SiskinIM/chat/ShareLocationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/chat/ShareLocationController.swift -------------------------------------------------------------------------------- /SiskinIM/chat/ShareLocationSearchResultsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/chat/ShareLocationSearchResultsController.swift -------------------------------------------------------------------------------- /SiskinIM/chats/ChatsListTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/chats/ChatsListTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/chats/ChatsListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/chats/ChatsListViewController.swift -------------------------------------------------------------------------------- /SiskinIM/contacts/ContactBasicTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/contacts/ContactBasicTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/contacts/ContactFormTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/contacts/ContactFormTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/contacts/ContactViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/contacts/ContactViewController.swift -------------------------------------------------------------------------------- /SiskinIM/contacts/OMEMOIdentityTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/contacts/OMEMOIdentityTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/conversation/AttachmentChatTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/conversation/AttachmentChatTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/conversation/BaseChatTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/conversation/BaseChatTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/conversation/ChatTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/conversation/ChatTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/conversation/ChatTableViewMarkerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/conversation/ChatTableViewMarkerCell.swift -------------------------------------------------------------------------------- /SiskinIM/conversation/ChatTableViewSystemCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/conversation/ChatTableViewSystemCell.swift -------------------------------------------------------------------------------- /SiskinIM/conversation/ConversationDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/conversation/ConversationDataSource.swift -------------------------------------------------------------------------------- /SiskinIM/conversation/ConversationLogController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/conversation/ConversationLogController.swift -------------------------------------------------------------------------------- /SiskinIM/conversation/InvitationChatTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/conversation/InvitationChatTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/conversation/LinkPreviewChatTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/conversation/LinkPreviewChatTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/conversation/LocationChatTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/conversation/LocationChatTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/database/DBCapabilitiesCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/DBCapabilitiesCache.swift -------------------------------------------------------------------------------- /SiskinIM/database/DBChatHistoryStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/DBChatHistoryStore.swift -------------------------------------------------------------------------------- /SiskinIM/database/DBChatHistorySyncStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/DBChatHistorySyncStore.swift -------------------------------------------------------------------------------- /SiskinIM/database/DBChatMarkersStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/DBChatMarkersStore.swift -------------------------------------------------------------------------------- /SiskinIM/database/DBChatStore+ChannelStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/DBChatStore+ChannelStore.swift -------------------------------------------------------------------------------- /SiskinIM/database/DBChatStore+ChatStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/DBChatStore+ChatStore.swift -------------------------------------------------------------------------------- /SiskinIM/database/DBChatStore+RoomStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/DBChatStore+RoomStore.swift -------------------------------------------------------------------------------- /SiskinIM/database/DBChatStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/DBChatStore.swift -------------------------------------------------------------------------------- /SiskinIM/database/DBOMEMOStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/DBOMEMOStore.swift -------------------------------------------------------------------------------- /SiskinIM/database/DBRosterStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/DBRosterStore.swift -------------------------------------------------------------------------------- /SiskinIM/database/DBVCardStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/DBVCardStore.swift -------------------------------------------------------------------------------- /SiskinIM/database/Database.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/Database.swift -------------------------------------------------------------------------------- /SiskinIM/database/DatabaseMigrator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/DatabaseMigrator.swift -------------------------------------------------------------------------------- /SiskinIM/database/MessageState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/MessageState.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/DisplayableIdProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/DisplayableIdProtocol.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/conversations/AccountConversations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/conversations/AccountConversations.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/conversations/Channel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/conversations/Channel.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/conversations/Chat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/conversations/Chat.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/conversations/Conversation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/conversations/Conversation.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/conversations/ConversationBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/conversations/ConversationBase.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/conversations/Room.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/conversations/Room.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/history/AppendixProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/history/AppendixProtocol.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/history/ConversationAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/history/ConversationAttachment.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/history/ConversationEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/history/ConversationEntry.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/history/ConversationEntryEncryption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/history/ConversationEntryEncryption.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/history/ConversationEntryRecipient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/history/ConversationEntryRecipient.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/history/ConversationEntrySender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/history/ConversationEntrySender.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/history/ConversationEntryState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/history/ConversationEntryState.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/history/ConversationInvitation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/history/ConversationInvitation.swift -------------------------------------------------------------------------------- /SiskinIM/database/model/history/ConversationKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/database/model/history/ConversationKey.swift -------------------------------------------------------------------------------- /SiskinIM/db-schema-1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/db-schema-1.sql -------------------------------------------------------------------------------- /SiskinIM/db-schema-10.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE chat_history ADD COLUMN recipient_nickname TEXT; 2 | -------------------------------------------------------------------------------- /SiskinIM/db-schema-11.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/db-schema-11.sql -------------------------------------------------------------------------------- /SiskinIM/db-schema-12.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/db-schema-12.sql -------------------------------------------------------------------------------- /SiskinIM/db-schema-13.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/db-schema-13.sql -------------------------------------------------------------------------------- /SiskinIM/db-schema-14.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/db-schema-14.sql -------------------------------------------------------------------------------- /SiskinIM/db-schema-2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/db-schema-2.sql -------------------------------------------------------------------------------- /SiskinIM/db-schema-3.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE chats ADD COLUMN message_draft TEXT; 2 | -------------------------------------------------------------------------------- /SiskinIM/db-schema-4.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE chats ADD COLUMN name TEXT; 2 | -------------------------------------------------------------------------------- /SiskinIM/db-schema-5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/db-schema-5.sql -------------------------------------------------------------------------------- /SiskinIM/db-schema-6.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE chats ADD COLUMN options TEXT; 2 | -------------------------------------------------------------------------------- /SiskinIM/db-schema-7.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/db-schema-7.sql -------------------------------------------------------------------------------- /SiskinIM/db-schema-8.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/db-schema-8.sql -------------------------------------------------------------------------------- /SiskinIM/db-schema-9.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE chat_history ADD COLUMN appendix TEXT; 2 | -------------------------------------------------------------------------------- /SiskinIM/groupchat/InviteViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/groupchat/InviteViewController.swift -------------------------------------------------------------------------------- /SiskinIM/groupchat/MucChatOccupantsTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/groupchat/MucChatOccupantsTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/groupchat/MucChatOccupantsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/groupchat/MucChatOccupantsTableViewController.swift -------------------------------------------------------------------------------- /SiskinIM/groupchat/MucChatSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/groupchat/MucChatSettingsViewController.swift -------------------------------------------------------------------------------- /SiskinIM/groupchat/MucChatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/groupchat/MucChatViewController.swift -------------------------------------------------------------------------------- /SiskinIM/localization/Base.lproj/Account.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/Base.lproj/Account.storyboard -------------------------------------------------------------------------------- /SiskinIM/localization/Base.lproj/Conversation.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/Base.lproj/Conversation.storyboard -------------------------------------------------------------------------------- /SiskinIM/localization/Base.lproj/Groupchat.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/Base.lproj/Groupchat.storyboard -------------------------------------------------------------------------------- /SiskinIM/localization/Base.lproj/Info.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/Base.lproj/Info.storyboard -------------------------------------------------------------------------------- /SiskinIM/localization/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SiskinIM/localization/Base.lproj/MIX.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/Base.lproj/MIX.storyboard -------------------------------------------------------------------------------- /SiskinIM/localization/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SiskinIM/localization/Base.lproj/Settings.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/Base.lproj/Settings.storyboard -------------------------------------------------------------------------------- /SiskinIM/localization/Base.lproj/VoIP.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/Base.lproj/VoIP.storyboard -------------------------------------------------------------------------------- /SiskinIM/localization/de.lproj/Account.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/de.lproj/Account.strings -------------------------------------------------------------------------------- /SiskinIM/localization/de.lproj/Conversation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/de.lproj/Conversation.strings -------------------------------------------------------------------------------- /SiskinIM/localization/de.lproj/Groupchat.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/de.lproj/Groupchat.strings -------------------------------------------------------------------------------- /SiskinIM/localization/de.lproj/Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/de.lproj/Info.strings -------------------------------------------------------------------------------- /SiskinIM/localization/de.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SiskinIM/localization/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /SiskinIM/localization/de.lproj/MIX.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/de.lproj/MIX.strings -------------------------------------------------------------------------------- /SiskinIM/localization/de.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/de.lproj/Main.strings -------------------------------------------------------------------------------- /SiskinIM/localization/de.lproj/Settings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/de.lproj/Settings.strings -------------------------------------------------------------------------------- /SiskinIM/localization/de.lproj/VoIP.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/de.lproj/VoIP.strings -------------------------------------------------------------------------------- /SiskinIM/localization/en.lproj/Account.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/en.lproj/Account.strings -------------------------------------------------------------------------------- /SiskinIM/localization/en.lproj/Conversation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/en.lproj/Conversation.strings -------------------------------------------------------------------------------- /SiskinIM/localization/en.lproj/Groupchat.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/en.lproj/Groupchat.strings -------------------------------------------------------------------------------- /SiskinIM/localization/en.lproj/Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/en.lproj/Info.strings -------------------------------------------------------------------------------- /SiskinIM/localization/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /SiskinIM/localization/en.lproj/MIX.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/en.lproj/MIX.strings -------------------------------------------------------------------------------- /SiskinIM/localization/en.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/en.lproj/Main.strings -------------------------------------------------------------------------------- /SiskinIM/localization/en.lproj/Settings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/en.lproj/Settings.strings -------------------------------------------------------------------------------- /SiskinIM/localization/en.lproj/VoIP.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/en.lproj/VoIP.strings -------------------------------------------------------------------------------- /SiskinIM/localization/es.lproj/Account.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/es.lproj/Account.strings -------------------------------------------------------------------------------- /SiskinIM/localization/es.lproj/Conversation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/es.lproj/Conversation.strings -------------------------------------------------------------------------------- /SiskinIM/localization/es.lproj/Groupchat.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/es.lproj/Groupchat.strings -------------------------------------------------------------------------------- /SiskinIM/localization/es.lproj/Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/es.lproj/Info.strings -------------------------------------------------------------------------------- /SiskinIM/localization/es.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SiskinIM/localization/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /SiskinIM/localization/es.lproj/MIX.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/es.lproj/MIX.strings -------------------------------------------------------------------------------- /SiskinIM/localization/es.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/es.lproj/Main.strings -------------------------------------------------------------------------------- /SiskinIM/localization/es.lproj/Settings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/es.lproj/Settings.strings -------------------------------------------------------------------------------- /SiskinIM/localization/es.lproj/VoIP.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/es.lproj/VoIP.strings -------------------------------------------------------------------------------- /SiskinIM/localization/pl.lproj/Account.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/pl.lproj/Account.strings -------------------------------------------------------------------------------- /SiskinIM/localization/pl.lproj/Conversation.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/pl.lproj/Conversation.strings -------------------------------------------------------------------------------- /SiskinIM/localization/pl.lproj/Groupchat.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/pl.lproj/Groupchat.strings -------------------------------------------------------------------------------- /SiskinIM/localization/pl.lproj/Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/pl.lproj/Info.strings -------------------------------------------------------------------------------- /SiskinIM/localization/pl.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SiskinIM/localization/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /SiskinIM/localization/pl.lproj/MIX.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/pl.lproj/MIX.strings -------------------------------------------------------------------------------- /SiskinIM/localization/pl.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/pl.lproj/Main.strings -------------------------------------------------------------------------------- /SiskinIM/localization/pl.lproj/Settings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/pl.lproj/Settings.strings -------------------------------------------------------------------------------- /SiskinIM/localization/pl.lproj/VoIP.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/localization/pl.lproj/VoIP.strings -------------------------------------------------------------------------------- /SiskinIM/notifications/NotificationCenterDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/notifications/NotificationCenterDelegate.swift -------------------------------------------------------------------------------- /SiskinIM/notifications/NotificationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/notifications/NotificationManager.swift -------------------------------------------------------------------------------- /SiskinIM/roster/AbstractRosterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/roster/AbstractRosterViewController.swift -------------------------------------------------------------------------------- /SiskinIM/roster/RosterItemEditViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/roster/RosterItemEditViewController.swift -------------------------------------------------------------------------------- /SiskinIM/roster/RosterItemTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/roster/RosterItemTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/roster/RosterProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/roster/RosterProvider.swift -------------------------------------------------------------------------------- /SiskinIM/roster/RosterProviderFlat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/roster/RosterProviderFlat.swift -------------------------------------------------------------------------------- /SiskinIM/roster/RosterProviderGrouped.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/roster/RosterProviderGrouped.swift -------------------------------------------------------------------------------- /SiskinIM/roster/RosterViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/roster/RosterViewController.swift -------------------------------------------------------------------------------- /SiskinIM/service/AvatarEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/service/AvatarEventHandler.swift -------------------------------------------------------------------------------- /SiskinIM/service/BlockedEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/service/BlockedEventHandler.swift -------------------------------------------------------------------------------- /SiskinIM/service/DNSSrvDiskCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/service/DNSSrvDiskCache.swift -------------------------------------------------------------------------------- /SiskinIM/service/MeetEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/service/MeetEventHandler.swift -------------------------------------------------------------------------------- /SiskinIM/service/MessageEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/service/MessageEventHandler.swift -------------------------------------------------------------------------------- /SiskinIM/service/MixEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/service/MixEventHandler.swift -------------------------------------------------------------------------------- /SiskinIM/service/MucEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/service/MucEventHandler.swift -------------------------------------------------------------------------------- /SiskinIM/service/NewFeaturesDetector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/service/NewFeaturesDetector.swift -------------------------------------------------------------------------------- /SiskinIM/service/PresenceRosterEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/service/PresenceRosterEventHandler.swift -------------------------------------------------------------------------------- /SiskinIM/service/PushEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/service/PushEventHandler.swift -------------------------------------------------------------------------------- /SiskinIM/service/StreamFeaturesCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/service/StreamFeaturesCache.swift -------------------------------------------------------------------------------- /SiskinIM/service/XMPPClient_extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/service/XMPPClient_extension.swift -------------------------------------------------------------------------------- /SiskinIM/service/XmppService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/service/XmppService.swift -------------------------------------------------------------------------------- /SiskinIM/service/XmppServiceEventHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/service/XmppServiceEventHandler.swift -------------------------------------------------------------------------------- /SiskinIM/settings/AccountConnectivitySettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/AccountConnectivitySettingsViewController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/AccountDomainTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/AccountDomainTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/settings/AccountQRCodeController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/AccountQRCodeController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/AccountSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/AccountSettingsViewController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/AccountTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/AccountTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/settings/AddAccountController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/AddAccountController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/BlockedContactsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/BlockedContactsController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/ChatSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/ChatSettingsViewController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/ContactsSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/ContactsSettingsViewController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/DeviceMemoryUsageTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/DeviceMemoryUsageTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/settings/ExperimentalSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/ExperimentalSettingsViewController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/MediaSettingsVIewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/MediaSettingsVIewController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/NotificationSettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/NotificationSettingsViewController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/OMEMOFingerprintsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/OMEMOFingerprintsController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/RegisterAccountController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/RegisterAccountController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/ServerFeaturesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/ServerFeaturesViewController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/ServerSelectorTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/ServerSelectorTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/settings/SetAccountSettingsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/SetAccountSettingsController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/SettingsViewController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/SetupViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/SetupViewController.swift -------------------------------------------------------------------------------- /SiskinIM/settings/server_features_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/settings/server_features_list.xml -------------------------------------------------------------------------------- /SiskinIM/ui/AboutController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/AboutController.swift -------------------------------------------------------------------------------- /SiskinIM/ui/AvatarStatusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/AvatarStatusView.swift -------------------------------------------------------------------------------- /SiskinIM/ui/AvatarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/AvatarView.swift -------------------------------------------------------------------------------- /SiskinIM/ui/CertificateErrorAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/CertificateErrorAlert.swift -------------------------------------------------------------------------------- /SiskinIM/ui/ChartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/ChartView.swift -------------------------------------------------------------------------------- /SiskinIM/ui/ChatBottomView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/ChatBottomView.swift -------------------------------------------------------------------------------- /SiskinIM/ui/CustomTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/CustomTabBarController.swift -------------------------------------------------------------------------------- /SiskinIM/ui/DataFormController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/DataFormController.swift -------------------------------------------------------------------------------- /SiskinIM/ui/EmptyViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/EmptyViewController.swift -------------------------------------------------------------------------------- /SiskinIM/ui/EnumTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/EnumTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/ui/GetInTouchViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/GetInTouchViewController.swift -------------------------------------------------------------------------------- /SiskinIM/ui/GlobalSplitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/GlobalSplitViewController.swift -------------------------------------------------------------------------------- /SiskinIM/ui/MainTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/MainTabBarController.swift -------------------------------------------------------------------------------- /SiskinIM/ui/Markdown.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/Markdown.swift -------------------------------------------------------------------------------- /SiskinIM/ui/MessageTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/MessageTextView.swift -------------------------------------------------------------------------------- /SiskinIM/ui/NavigationControllerWrappingSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/NavigationControllerWrappingSegue.swift -------------------------------------------------------------------------------- /SiskinIM/ui/RoundButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/RoundButton.swift -------------------------------------------------------------------------------- /SiskinIM/ui/StepperTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/StepperTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/ui/SwitchTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/SwitchTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/ui/TablePicketViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/TablePicketViewController.swift -------------------------------------------------------------------------------- /SiskinIM/ui/suggestions/MultiContactSelectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/ui/suggestions/MultiContactSelectionView.swift -------------------------------------------------------------------------------- /SiskinIM/util/AccountManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/AccountManager.swift -------------------------------------------------------------------------------- /SiskinIM/util/AccountManagerScramSaltedPasswordCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/AccountManagerScramSaltedPasswordCache.swift -------------------------------------------------------------------------------- /SiskinIM/util/AppStoryboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/AppStoryboard.swift -------------------------------------------------------------------------------- /SiskinIM/util/Array+IndexChanges.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/Array+IndexChanges.swift -------------------------------------------------------------------------------- /SiskinIM/util/AudioSession.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/AudioSession.swift -------------------------------------------------------------------------------- /SiskinIM/util/AvatarManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/AvatarManager.swift -------------------------------------------------------------------------------- /SiskinIM/util/AvatarStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/AvatarStore.swift -------------------------------------------------------------------------------- /SiskinIM/util/ContactManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/ContactManager.swift -------------------------------------------------------------------------------- /SiskinIM/util/CurrentDatePublisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/CurrentDatePublisher.swift -------------------------------------------------------------------------------- /SiskinIM/util/DownloadManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/DownloadManager.swift -------------------------------------------------------------------------------- /SiskinIM/util/DownloadStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/DownloadStore.swift -------------------------------------------------------------------------------- /SiskinIM/util/InvitationsManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/InvitationsManager.swift -------------------------------------------------------------------------------- /SiskinIM/util/MainNotificationManagerProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/MainNotificationManagerProvider.swift -------------------------------------------------------------------------------- /SiskinIM/util/MediaHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/MediaHelper.swift -------------------------------------------------------------------------------- /SiskinIM/util/MessageEncryption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/MessageEncryption.swift -------------------------------------------------------------------------------- /SiskinIM/util/MetadataCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/MetadataCache.swift -------------------------------------------------------------------------------- /SiskinIM/util/OSLog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/OSLog.swift -------------------------------------------------------------------------------- /SiskinIM/util/OpenSSL_AES_GCM_Engine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/OpenSSL_AES_GCM_Engine.swift -------------------------------------------------------------------------------- /SiskinIM/util/PresenceStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/PresenceStore.swift -------------------------------------------------------------------------------- /SiskinIM/util/ServerCertificateInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/ServerCertificateInfo.swift -------------------------------------------------------------------------------- /SiskinIM/util/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/Settings.swift -------------------------------------------------------------------------------- /SiskinIM/util/SiskinPushNotificationsModuleProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/SiskinPushNotificationsModuleProvider.swift -------------------------------------------------------------------------------- /SiskinIM/util/TasksQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/TasksQueue.swift -------------------------------------------------------------------------------- /SiskinIM/util/UIColor_mix.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/UIColor_mix.swift -------------------------------------------------------------------------------- /SiskinIM/util/VCardManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/VCardManager.swift -------------------------------------------------------------------------------- /SiskinIM/util/combine/Publisher+OnlyGetter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/combine/Publisher+OnlyGetter.swift -------------------------------------------------------------------------------- /SiskinIM/util/combine/Publisher+ThrottleFixed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/combine/Publisher+ThrottleFixed.swift -------------------------------------------------------------------------------- /SiskinIM/util/combine/Publisher+ThrottledSink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/util/combine/Publisher+ThrottledSink.swift -------------------------------------------------------------------------------- /SiskinIM/vcard/VCardAvatarEditCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/vcard/VCardAvatarEditCell.swift -------------------------------------------------------------------------------- /SiskinIM/vcard/VCardEditAddressTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/vcard/VCardEditAddressTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/vcard/VCardEditEmailTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/vcard/VCardEditEmailTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/vcard/VCardEditPhoneTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/vcard/VCardEditPhoneTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/vcard/VCardEditViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/vcard/VCardEditViewController.swift -------------------------------------------------------------------------------- /SiskinIM/vcard/VCardEntryTypeAwareTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/vcard/VCardEntryTypeAwareTableViewCell.swift -------------------------------------------------------------------------------- /SiskinIM/vcard/VCardTextEditCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/vcard/VCardTextEditCell.swift -------------------------------------------------------------------------------- /SiskinIM/voip/CallManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/voip/CallManager.swift -------------------------------------------------------------------------------- /SiskinIM/voip/CameraPreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/voip/CameraPreviewView.swift -------------------------------------------------------------------------------- /SiskinIM/voip/CreateMeetingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/voip/CreateMeetingViewController.swift -------------------------------------------------------------------------------- /SiskinIM/voip/ExternalServiceDiscovery_Service_extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/voip/ExternalServiceDiscovery_Service_extension.swift -------------------------------------------------------------------------------- /SiskinIM/voip/InviteToMeetingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/voip/InviteToMeetingViewController.swift -------------------------------------------------------------------------------- /SiskinIM/voip/JingleManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/voip/JingleManager.swift -------------------------------------------------------------------------------- /SiskinIM/voip/JingleManager_Session.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/voip/JingleManager_Session.swift -------------------------------------------------------------------------------- /SiskinIM/voip/MeetController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/voip/MeetController.swift -------------------------------------------------------------------------------- /SiskinIM/voip/MeetManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/voip/MeetManager.swift -------------------------------------------------------------------------------- /SiskinIM/voip/RTCCameraVideoCapturer_Format.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/voip/RTCCameraVideoCapturer_Format.swift -------------------------------------------------------------------------------- /SiskinIM/voip/VideoCallController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/voip/VideoCallController.swift -------------------------------------------------------------------------------- /SiskinIM/xmpp/HttpFileUploadModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/xmpp/HttpFileUploadModule.swift -------------------------------------------------------------------------------- /SiskinIM/xmpp/SiskinPushNotificationsModule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/SiskinIM/xmpp/SiskinPushNotificationsModule.swift -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/pom.xml -------------------------------------------------------------------------------- /siskin-im.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/siskin-im.doap -------------------------------------------------------------------------------- /swiftScript.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/swiftScript.swift -------------------------------------------------------------------------------- /trim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/trim.sh -------------------------------------------------------------------------------- /update-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigase/siskin-im/HEAD/update-frameworks.sh --------------------------------------------------------------------------------