├── .gitignore ├── .gitmodules ├── Acknowledgements.pdf ├── Common ├── Documents │ └── Acknowledgements.docx └── Release DMG.dmgCanvas │ ├── Disk Image │ └── QuickLook │ └── Preview.jpg ├── Configurations ├── Build │ ├── Code Signing Identity.xcconfig │ ├── Common │ │ ├── Foundation Debug.xcconfig │ │ ├── Foundation.xcconfig │ │ ├── Preserve Symbols.xcconfig │ │ ├── Textual App.xcconfig │ │ ├── Textual Extensions.xcconfig │ │ ├── Textual.xcconfig │ │ ├── XPC Service - ICL Extensions.xcconfig │ │ ├── XPC Service - ICL.xcconfig │ │ └── XPC Services.xcconfig │ ├── Debug │ │ ├── Enabled Features.xcconfig │ │ ├── Textual App.xcconfig │ │ ├── Textual Extensions.xcconfig │ │ ├── Textual.xcconfig │ │ ├── XPC Service - ICL Extensions.xcconfig │ │ ├── XPC Service - ICL.xcconfig │ │ └── XPC Services.xcconfig │ ├── README.md │ └── Standard Release │ │ ├── Enabled Features.xcconfig │ │ ├── Textual App.xcconfig │ │ ├── Textual Extensions.xcconfig │ │ ├── Textual.xcconfig │ │ ├── XPC Service - ICL Extensions.xcconfig │ │ ├── XPC Service - ICL.xcconfig │ │ └── XPC Services.xcconfig ├── ExportArchiveConfiguration.plist └── Sandbox │ └── Inherited.entitlements ├── README.md ├── Sources ├── App │ ├── Build Scripts │ │ ├── BuildExtensions.sh │ │ ├── BuildFrameworks.sh │ │ ├── BuildServices.sh │ │ ├── ExportArchive.sh │ │ ├── MergeSwift.sh │ │ ├── PostprocessSparkle.sh │ │ ├── UpdateFeatureFlags.sh │ │ └── UpdateVersionInfo.sh │ ├── Classes │ │ ├── Controllers │ │ │ ├── TXAppearance.m │ │ │ ├── TXApplication.m │ │ │ ├── TXGlobalModels.m │ │ │ ├── TXMasterController.m │ │ │ ├── TXMenuController.m │ │ │ ├── TXSharedApplication.m │ │ │ └── TXWindowController.m │ │ ├── Dialogs │ │ │ ├── Channel Spotlight │ │ │ │ ├── TDCChannelSpotlightAppearance.m │ │ │ │ ├── TDCChannelSpotlightController.m │ │ │ │ ├── TDCChannelSpotlightControls.m │ │ │ │ ├── TDCChannelSpotlightSearchResult.m │ │ │ │ └── TDCChannelSpotlightSearchResultsTable.m │ │ │ ├── File Transfers │ │ │ │ ├── TDCFileTransferDialog.m │ │ │ │ ├── TDCFileTransferDialogTableCell.m │ │ │ │ └── TDCFileTransferDialogTransferController.m │ │ │ ├── License Manager │ │ │ │ └── Standalone │ │ │ │ │ ├── TDCLicenseManagerDialog.m │ │ │ │ │ ├── TDCLicenseManagerMigrateAppStoreSheet.m │ │ │ │ │ ├── TDCLicenseManagerRecoverLostLicenseSheet.m │ │ │ │ │ ├── TDCLicenseUpgradeActivateSheet.m │ │ │ │ │ ├── TDCLicenseUpgradeCommonActions.m │ │ │ │ │ ├── TDCLicenseUpgradeDialog.m │ │ │ │ │ └── TDCLicenseUpgradeEligibilitySheet.m │ │ │ ├── Preferences │ │ │ │ ├── TDCPreferencesController.m │ │ │ │ ├── TDCPreferencesNotificationConfiguration.m │ │ │ │ └── TDCPreferencesUserStyleSheet.m │ │ │ ├── Server Endpoint │ │ │ │ ├── TDCServerEndpointListSheet.m │ │ │ │ └── TDCServerEndpointListSheetTable.m │ │ │ ├── TDCAboutDialog.m │ │ │ ├── TDCAddressBookSheet.m │ │ │ ├── TDCAlert.m │ │ │ ├── TDCChannelBanListSheet.m │ │ │ ├── TDCChannelInviteSheet.m │ │ │ ├── TDCChannelModifyModesSheet.m │ │ │ ├── TDCChannelModifyTopicSheet.m │ │ │ ├── TDCChannelPropertiesNotificationConfiguration.m │ │ │ ├── TDCChannelPropertiesSheet.m │ │ │ ├── TDCHighlightEntrySheet.m │ │ │ ├── TDCInputPrompt.m │ │ │ ├── TDCNicknameColorSheet.m │ │ │ ├── TDCProgressIndicatorSheet.m │ │ │ ├── TDCServerChangeNicknameSheet.m │ │ │ ├── TDCServerChannelListDialog.m │ │ │ ├── TDCServerHighlightListSheet.m │ │ │ ├── TDCServerPropertiesSheet.m │ │ │ ├── TDCSheetBase.m │ │ │ ├── TDCWelcomeSheet.m │ │ │ └── TDCWindowBase.m │ │ ├── Headers │ │ │ ├── External Libraries │ │ │ │ ├── GTMEncodeHTML.h │ │ │ │ └── OELReachability.h │ │ │ ├── IRC.h │ │ │ ├── IRCAddressBook.h │ │ │ ├── IRCAddressBookUserTracking.h │ │ │ ├── IRCChannel.h │ │ │ ├── IRCChannelConfig.h │ │ │ ├── IRCChannelMemberList.h │ │ │ ├── IRCChannelMode.h │ │ │ ├── IRCChannelUser.h │ │ │ ├── IRCClient.h │ │ │ ├── IRCClientConfig.h │ │ │ ├── IRCColorFormat.h │ │ │ ├── IRCCommandIndex.h │ │ │ ├── IRCConnection.h │ │ │ ├── IRCHighlightLogEntry.h │ │ │ ├── IRCHighlightMatchCondition.h │ │ │ ├── IRCISupportInfo.h │ │ │ ├── IRCMessage.h │ │ │ ├── IRCModeInfo.h │ │ │ ├── IRCNetworkList.h │ │ │ ├── IRCNumerics.h │ │ │ ├── IRCPrefix.h │ │ │ ├── IRCSendingMessage.h │ │ │ ├── IRCServer.h │ │ │ ├── IRCTreeItem.h │ │ │ ├── IRCUser.h │ │ │ ├── IRCUserRelations.h │ │ │ ├── IRCWorld.h │ │ │ ├── Internal │ │ │ │ ├── IRCAddressBookInternal.h │ │ │ │ ├── IRCChannelConfigInternal.h │ │ │ │ ├── IRCChannelUserInternal.h │ │ │ │ ├── IRCClientConfigInternal.h │ │ │ │ ├── IRCHighlightLogEntryInternal.h │ │ │ │ ├── IRCHighlightMatchConditionInternal.h │ │ │ │ ├── IRCMessageInternal.h │ │ │ │ ├── IRCModeInfoInternal.h │ │ │ │ ├── IRCPrefixInternal.h │ │ │ │ ├── IRCServerInternal.h │ │ │ │ ├── IRCUserInternal.h │ │ │ │ ├── TDCChannelPropertiesSheetInternal.h │ │ │ │ ├── TDCChannelSpotlightAppearanceInternal.h │ │ │ │ ├── TDCChannelSpotlightControllerInternal.h │ │ │ │ ├── TDCFileTransferDialogInternal.h │ │ │ │ └── TVCLogLineInternal.h │ │ │ ├── NSColorHelper.h │ │ │ ├── NSStringHelper.h │ │ │ ├── NSViewHelper.h │ │ │ ├── Private │ │ │ │ ├── ICLPayloadLocalPrivate.h │ │ │ │ ├── IRCAddressBookMatchCachePrivate.h │ │ │ │ ├── IRCAddressBookUserTrackingPrivate.h │ │ │ │ ├── IRCChannelConfigPrivate.h │ │ │ │ ├── IRCChannelMemberListControllerPrivate.h │ │ │ │ ├── IRCChannelMemberListPrivate.h │ │ │ │ ├── IRCChannelModePrivate.h │ │ │ │ ├── IRCChannelPrivate.h │ │ │ │ ├── IRCChannelUserPrivate.h │ │ │ │ ├── IRCClientConfigPrivate.h │ │ │ │ ├── IRCClientPrivate.h │ │ │ │ ├── IRCClientRequestedCommandsPrivate.h │ │ │ │ ├── IRCColorFormatPrivate.h │ │ │ │ ├── IRCCommandIndexPrivate.h │ │ │ │ ├── IRCConnectionPrivate.h │ │ │ │ ├── IRCExtrasPrivate.h │ │ │ │ ├── IRCHighlightLogEntryPrivate.h │ │ │ │ ├── IRCISupportInfoPrivate.h │ │ │ │ ├── IRCMessageBatchPrivate.h │ │ │ │ ├── IRCMessagePrivate.h │ │ │ │ ├── IRCServerPrivate.h │ │ │ │ ├── IRCTimerCommandPrivate.h │ │ │ │ ├── IRCTreeItemPrivate.h │ │ │ │ ├── IRCUserNicknameColorStyleGeneratorPrivate.h │ │ │ │ ├── IRCUserPersistentStorePrivate.h │ │ │ │ ├── IRCUserPrivate.h │ │ │ │ ├── IRCUserRelationsPrivate.h │ │ │ │ ├── IRCWorldPrivate.h │ │ │ │ ├── NSTableVIewHelperPrivate.h │ │ │ │ ├── NSViewHelperPrivate.h │ │ │ │ ├── SwiftBridgingHeaderPrivate.h │ │ │ │ ├── TDCAboutDialogPrivate.h │ │ │ │ ├── TDCAddressBookSheetPrivate.h │ │ │ │ ├── TDCChannelBanListSheetPrivate.h │ │ │ │ ├── TDCChannelInviteSheetPrivate.h │ │ │ │ ├── TDCChannelModifyModesSheetPrivate.h │ │ │ │ ├── TDCChannelModifyTopicSheetPrivate.h │ │ │ │ ├── TDCChannelPropertiesNotificationConfigurationPrivate.h │ │ │ │ ├── TDCChannelPropertiesSheetPrivate.h │ │ │ │ ├── TDCChannelSpotlightAppearancePrivate.h │ │ │ │ ├── TDCChannelSpotlightControllerPrivate.h │ │ │ │ ├── TDCChannelSpotlightControlsPrivate.h │ │ │ │ ├── TDCChannelSpotlightSearchResultPrivate.h │ │ │ │ ├── TDCChannelSpotlightSearchResultsTablePrivate.h │ │ │ │ ├── TDCFileTransferDialogPrivate.h │ │ │ │ ├── TDCFileTransferDialogTableCellPrivate.h │ │ │ │ ├── TDCFileTransferDialogTransferControllerPrivate.h │ │ │ │ ├── TDCHighlightEntrySheetPrivate.h │ │ │ │ ├── TDCLicenseManagerDialogPrivate.h │ │ │ │ ├── TDCLicenseManagerMigrateAppStoreSheetPrivate.h │ │ │ │ ├── TDCLicenseManagerRecoverLostLicenseSheetPrivate.h │ │ │ │ ├── TDCLicenseUpgradeActivateSheetPrivate.h │ │ │ │ ├── TDCLicenseUpgradeCommonActionsPrivate.h │ │ │ │ ├── TDCLicenseUpgradeDialogPrivate.h │ │ │ │ ├── TDCLicenseUpgradeEligibilitySheetPrivate.h │ │ │ │ ├── TDCNicknameColorSheetPrivate.h │ │ │ │ ├── TDCPreferencesControllerPrivate.h │ │ │ │ ├── TDCPreferencesNotificationConfigurationPrivate.h │ │ │ │ ├── TDCPreferencesUserStyleSheetPrivate.h │ │ │ │ ├── TDCProgressIndicatorSheetPrivate.h │ │ │ │ ├── TDCServerChangeNicknameSheetPrivate.h │ │ │ │ ├── TDCServerChannelListDialogPrivate.h │ │ │ │ ├── TDCServerEndpointListSheetPrivate.h │ │ │ │ ├── TDCServerEndpointListSheetTablePrivate.h │ │ │ │ ├── TDCServerHighlightListSheetPrivate.h │ │ │ │ ├── TDCServerPropertiesSheetPrivate.h │ │ │ │ ├── TDCSharedProtocolDefinitionsPrivate.h │ │ │ │ ├── TDCWelcomeSheetPrivate.h │ │ │ │ ├── THOPluginDispatcherPrivate.h │ │ │ │ ├── THOPluginItemPrivate.h │ │ │ │ ├── THOPluginManagerPrivate.h │ │ │ │ ├── THOPluginProtocolPrivate.h │ │ │ │ ├── TLOEncryptionManagerPrivate.h │ │ │ │ ├── TLOFileLoggerPrivate.h │ │ │ │ ├── TLOInputHistoryPrivate.h │ │ │ │ ├── TLOLicenseManagerDownloaderPrivate.h │ │ │ │ ├── TLOLicenseManagerLastGenPrivate.h │ │ │ │ ├── TLOLicenseManagerPrivate.h │ │ │ │ ├── TLONicknameCompletionStatusPrivate.h │ │ │ │ ├── TLONotificationConfigurationPrivate.h │ │ │ │ ├── TLONotificationControllerPrivate.h │ │ │ │ ├── TLOSpeechSynthesizerPrivate.h │ │ │ │ ├── TLOSpokenNotificationPrivate.h │ │ │ │ ├── TPCApplicationInfoPrivate.h │ │ │ │ ├── TPCPathInfoPrivate.h │ │ │ │ ├── TPCPreferencesImportExportPrivate.h │ │ │ │ ├── TPCPreferencesLocalPrivate.h │ │ │ │ ├── TPCResourceManagerPrivate.h │ │ │ │ ├── TPCSandboxMigrationPrivate.h │ │ │ │ ├── TPCThemeControllerPrivate.h │ │ │ │ ├── TPCThemePrivate.h │ │ │ │ ├── TVCAppearancePrivate.h │ │ │ │ ├── TVCChannelSelectionOutlineViewCellPrivate.h │ │ │ │ ├── TVCChannelSelectionViewControllerPrivate.h │ │ │ │ ├── TVCContentNavigationOutlineViewPrivate.h │ │ │ │ ├── TVCDockIconPrivate.h │ │ │ │ ├── TVCErrorMessagePopoverControllerPrivate.h │ │ │ │ ├── TVCErrorMessagePopoverPrivate.h │ │ │ │ ├── TVCLogControllerHistoricLogFilePrivate.h │ │ │ │ ├── TVCLogControllerInlineMediaServicePrivate.h │ │ │ │ ├── TVCLogControllerOperationQueuePrivate.h │ │ │ │ ├── TVCLogControllerPrivate.h │ │ │ │ ├── TVCLogLinePrivate.h │ │ │ │ ├── TVCLogPolicyPrivate.h │ │ │ │ ├── TVCLogScriptEventSinkPrivate.h │ │ │ │ ├── TVCLogViewInternalWK1.h │ │ │ │ ├── TVCLogViewInternalWK2.h │ │ │ │ ├── TVCLogViewPrivate.h │ │ │ │ ├── TVCMainWindowAppearancePrivate.h │ │ │ │ ├── TVCMainWindowChannelViewPrivate.h │ │ │ │ ├── TVCMainWindowLoadingScreenPrivate.h │ │ │ │ ├── TVCMainWindowPrivate.h │ │ │ │ ├── TVCMainWindowSegmentedControlPrivate.h │ │ │ │ ├── TVCMainWindowSplitViewPrivate.h │ │ │ │ ├── TVCMainWindowTextViewAppearancePrivate.h │ │ │ │ ├── TVCMainWindowTextViewPrivate.h │ │ │ │ ├── TVCMainWindowTitlebarAccessoryViewPrivate.h │ │ │ │ ├── TVCMemberListAppearancePrivate.h │ │ │ │ ├── TVCMemberListCellPrivate.h │ │ │ │ ├── TVCMemberListPrivate.h │ │ │ │ ├── TVCMemberListUserInfoPopoverPrivate.h │ │ │ │ ├── TVCNotificationConfigurationViewControllerPrivate.h │ │ │ │ ├── TVCServerListAppearancePrivate.h │ │ │ │ ├── TVCServerListCellPrivate.h │ │ │ │ ├── TVCServerListPrivate.h │ │ │ │ ├── TVCTextFormatterMenuPrivate.h │ │ │ │ ├── TVCTextViewWithIRCFormatterPrivate.h │ │ │ │ ├── TVCWK1AutoScrollerPrivate.h │ │ │ │ ├── TXAppearancePrivate.h │ │ │ │ ├── TXApplicationPrivate.h │ │ │ │ ├── TXGlobalModelsPrivate.h │ │ │ │ ├── TXMasterControllerPrivate.h │ │ │ │ ├── TXMenuControllerPrivate.h │ │ │ │ ├── TXSharedApplicationPrivate.h │ │ │ │ ├── TXWindowControllerPrivate.h │ │ │ │ ├── TextualPrivate.h │ │ │ │ ├── WKWebViewPrivate.h │ │ │ │ └── WebScriptObjectHelperPrivate.h │ │ │ ├── TDCAlert.h │ │ │ ├── TDCInputPrompt.h │ │ │ ├── TDCSheetBase.h │ │ │ ├── TDCWindowBase.h │ │ │ ├── THOPluginManager.h │ │ │ ├── THOPluginProtocol.h │ │ │ ├── THOUnicodeHelper.h │ │ │ ├── TLOEncryptionManager.h │ │ │ ├── TLOInternetAddressLookup.h │ │ │ ├── TLOKeyEventHandler.h │ │ │ ├── TLOLinkParser.h │ │ │ ├── TLONotificationController.h │ │ │ ├── TLOSoundPlayer.h │ │ │ ├── TLOpenLink.h │ │ │ ├── TPCApplicationInfo.h │ │ │ ├── TPCPathInfo.h │ │ │ ├── TPCPreferencesImportExport.h │ │ │ ├── TPCPreferencesLocal.h │ │ │ ├── TPCPreferencesReload.h │ │ │ ├── TPCPreferencesUserDefaultsLocal.h │ │ │ ├── TPCResourceManager.h │ │ │ ├── TPCTheme.h │ │ │ ├── TPCThemeController.h │ │ │ ├── TVCAlert.h │ │ │ ├── TVCAppearance.h │ │ │ ├── TVCAutoExpandingTextField.h │ │ │ ├── TVCAutoExpandingTokenField.h │ │ │ ├── TVCBasicTableView.h │ │ │ ├── TVCChannelSelectionViewController.h │ │ │ ├── TVCLogController.h │ │ │ ├── TVCLogLine.h │ │ │ ├── TVCLogRenderer.h │ │ │ ├── TVCLogView.h │ │ │ ├── TVCMainWindow.h │ │ │ ├── TVCMainWindowAppearance.h │ │ │ ├── TVCMainWindowLoadingScreen.h │ │ │ ├── TVCMainWindowSplitView.h │ │ │ ├── TVCMainWindowTextView.h │ │ │ ├── TVCMainWindowTextViewAppearance.h │ │ │ ├── TVCMemberList.h │ │ │ ├── TVCMemberListAppearance.h │ │ │ ├── TVCServerList.h │ │ │ ├── TVCServerListAppearance.h │ │ │ ├── TVCTextViewWithIRCFormatter.h │ │ │ ├── TVCValidatedComboBox.h │ │ │ ├── TVCValidatedTextField.h │ │ │ ├── TXAppearance.h │ │ │ ├── TXAppearanceHelper.h │ │ │ ├── TXGlobalModels.h │ │ │ ├── TXMasterController.h │ │ │ ├── TXMenuController.h │ │ │ ├── TXSharedApplication.h │ │ │ ├── Textual.h │ │ │ └── TextualApplication.h │ │ ├── Helpers │ │ │ ├── Cocoa (Objective-C) │ │ │ │ ├── NSColorHelper.m │ │ │ │ ├── NSStringHelper.m │ │ │ │ ├── NSTableViewHelper.m │ │ │ │ ├── NSViewHelper.m │ │ │ │ └── TXAppearanceHelper.m │ │ │ ├── External Libraries │ │ │ │ ├── Google │ │ │ │ │ └── GTMEncodeHTML.m │ │ │ │ └── WebKit │ │ │ │ │ └── WebScriptObjectHelper.m │ │ │ ├── Plugin Architecture │ │ │ │ ├── THOPluginDispatcher.m │ │ │ │ ├── THOPluginItem.m │ │ │ │ ├── THOPluginItemLogging.m │ │ │ │ └── THOPluginManager.m │ │ │ └── THOUnicodeHelper.m │ │ ├── IRC │ │ │ ├── IRCAddressBook.m │ │ │ ├── IRCAddressBookMatchCache.m │ │ │ ├── IRCAddressBookUserTracking.m │ │ │ ├── IRCChannel.m │ │ │ ├── IRCChannelConfig.m │ │ │ ├── IRCChannelMemberList.m │ │ │ ├── IRCChannelMemberListController.m │ │ │ ├── IRCChannelMode.m │ │ │ ├── IRCClient.m │ │ │ ├── IRCClientConfig.m │ │ │ ├── IRCClientRequestedCommands.m │ │ │ ├── IRCCommandIndex.m │ │ │ ├── IRCConnection.m │ │ │ ├── IRCExtras.m │ │ │ ├── IRCHighlightLogEntry.m │ │ │ ├── IRCHighlightMatchCondition.m │ │ │ ├── IRCISupportInfo.m │ │ │ ├── IRCMessage.m │ │ │ ├── IRCMessageBatch.m │ │ │ ├── IRCModeInfo.m │ │ │ ├── IRCNetworkList.m │ │ │ ├── IRCPrefix.m │ │ │ ├── IRCSendingMessage.m │ │ │ ├── IRCServer.m │ │ │ ├── IRCTimerCommand.m │ │ │ ├── IRCTreeItem.m │ │ │ ├── IRCWorld.m │ │ │ └── Users │ │ │ │ ├── IRCChannelUser.m │ │ │ │ ├── IRCUser.m │ │ │ │ ├── IRCUserNicknameColorStyleGenerator.m │ │ │ │ ├── IRCUserPersistentStore.m │ │ │ │ └── IRCUserRelations.m │ │ ├── Library │ │ │ ├── Color Formatting │ │ │ │ └── IRCColorFormat.m │ │ │ ├── External Libraries │ │ │ │ └── Sockets │ │ │ │ │ └── OELReachability.m │ │ │ ├── License Manager │ │ │ │ └── Standalone │ │ │ │ │ ├── TLOLicenseManager.m │ │ │ │ │ ├── TLOLicenseManagerDownloader.m │ │ │ │ │ └── TLOLicenseManagerLastGen.m │ │ │ ├── TLOEncryptionManager.m │ │ │ ├── TLOFileLogger.m │ │ │ ├── TLOInputHistory.m │ │ │ ├── TLOInternetAddressLookup.m │ │ │ ├── TLOKeyEventHandler.m │ │ │ ├── TLOLinkParser.swift │ │ │ ├── TLONicknameCompletionStatus.m │ │ │ ├── TLONotificationConfiguration.m │ │ │ ├── TLONotificationController.m │ │ │ ├── TLOSoundPlayer.m │ │ │ ├── TLOSpeechSynthesizer.m │ │ │ ├── TLOSpokenNotification.m │ │ │ └── TLOpenLink.swift │ │ ├── Others │ │ │ └── main.m │ │ ├── Preferences │ │ │ ├── TPCApplicationInfo.m │ │ │ ├── TPCPathInfo.m │ │ │ ├── TPCPreferencesImportExport.m │ │ │ ├── TPCPreferencesLocal.m │ │ │ ├── TPCPreferencesReload.m │ │ │ ├── TPCPreferencesUserDefaultsLocal.m │ │ │ ├── TPCResourceManager.m │ │ │ ├── TPCSandboxMigration.m │ │ │ └── Themes │ │ │ │ ├── TPCTheme.m │ │ │ │ └── TPCThemeController.m │ │ ├── Services │ │ │ └── ICLPayloadLocal.m │ │ └── Views │ │ │ ├── Channel Selection Table │ │ │ ├── TVCChannelSelectionOutlineCellView.m │ │ │ └── TVCChannelSelectionViewController.m │ │ │ ├── Channel View │ │ │ ├── Extras │ │ │ │ ├── TVCLogControllerHistoricLogFile.m │ │ │ │ ├── TVCLogControllerInlineMediaService.m │ │ │ │ └── TVCLogControllerOperationQueue.m │ │ │ ├── TVCLogController.m │ │ │ ├── TVCLogLine.m │ │ │ ├── TVCLogPolicy.m │ │ │ ├── TVCLogRenderer.m │ │ │ ├── TVCLogScriptEventSink.m │ │ │ ├── TVCLogView.m │ │ │ ├── TVCLogViewInternalWK1.m │ │ │ ├── TVCLogViewInternalWK2.m │ │ │ └── TVCWK1AutoScroller.m │ │ │ ├── Errors │ │ │ ├── TVCAlert.m │ │ │ ├── TVCErrorMessagePopover.m │ │ │ └── TVCErrorMessagePopoverController.m │ │ │ ├── Input Text Field │ │ │ ├── TVCAutoExpandingTextField.m │ │ │ ├── TVCAutoExpandingTokenField.m │ │ │ ├── TVCTextFormatterMenu.m │ │ │ ├── TVCTextViewWithIRCFormatter.m │ │ │ ├── TVCValidatedComboBox.m │ │ │ └── TVCValidatedTextField.m │ │ │ ├── Main Window │ │ │ ├── TVCMainWindow.m │ │ │ ├── TVCMainWindowAppearance.m │ │ │ ├── TVCMainWindowChannelView.m │ │ │ ├── TVCMainWindowLoadingScreen.m │ │ │ ├── TVCMainWindowSegmentedControl.m │ │ │ ├── TVCMainWindowSplitView.m │ │ │ ├── TVCMainWindowTextView.m │ │ │ ├── TVCMainWindowTextViewAppearance.m │ │ │ └── TVCMainWindowTitlebarAccessoryView.m │ │ │ ├── Preferences │ │ │ └── TVCNotificationConfigurationViewController.m │ │ │ ├── Server List │ │ │ ├── TVCServerList.m │ │ │ ├── TVCServerListAppearance.m │ │ │ └── TVCServerListCell.m │ │ │ ├── TVCAppearance.m │ │ │ ├── TVCBasicTableView.m │ │ │ ├── TVCContentNavigationOutlineView.m │ │ │ ├── TVCDockIcon.m │ │ │ └── User List │ │ │ ├── TVCMemberList.m │ │ │ ├── TVCMemberListAppearance.m │ │ │ ├── TVCMemberListCell.m │ │ │ └── TVCMemberListUserInfoPopover.m │ ├── Configurations │ │ └── Sandbox │ │ │ ├── Debug.entitlements │ │ │ ├── Sandbox Disabled.entitlements │ │ │ └── Standard Release.entitlements │ ├── Resources │ │ ├── Images │ │ │ ├── Application │ │ │ │ ├── applicationIcon.icns │ │ │ │ ├── applicationIcon.iconset │ │ │ │ │ ├── icon_128x128.png │ │ │ │ │ ├── icon_128x128@2x.png │ │ │ │ │ ├── icon_16x16.png │ │ │ │ │ ├── icon_16x16@2x.png │ │ │ │ │ ├── icon_256x256.png │ │ │ │ │ ├── icon_256x256@2x.png │ │ │ │ │ ├── icon_32x32.png │ │ │ │ │ ├── icon_32x32@2x.png │ │ │ │ │ ├── icon_512x512.png │ │ │ │ │ └── icon_512x512@2x.png │ │ │ │ ├── applicationIcon.psd │ │ │ │ └── applicationIconBirthday.icns │ │ │ ├── Copyright Information for Images.txt │ │ │ ├── DMG Canvas │ │ │ │ └── background.png │ │ │ ├── Dock Icon Badges │ │ │ │ ├── Green │ │ │ │ │ ├── DIGreenBadgeCenter.png │ │ │ │ │ ├── DIGreenBadgeLeft.png │ │ │ │ │ └── DIGreenBadgeRight.png │ │ │ │ ├── Photoshop │ │ │ │ │ ├── Mavericks │ │ │ │ │ │ ├── blueDockBadge.psd │ │ │ │ │ │ ├── blueDockBadgeWithShadow.psd │ │ │ │ │ │ ├── redDockBadge.psd │ │ │ │ │ │ └── redDockBadgeWithShadow.psd │ │ │ │ │ └── Yosemite │ │ │ │ │ │ └── redDockBadge.psd │ │ │ │ └── Red │ │ │ │ │ ├── DIRedBadgeCenter.png │ │ │ │ │ ├── DIRedBadgeLeft.png │ │ │ │ │ └── DIRedBadgeRight.png │ │ │ ├── Encryption Badges │ │ │ │ ├── encryptionLockIconDark.tif │ │ │ │ ├── encryptionLockIconDark@2x.tif │ │ │ │ ├── encryptionLockIconLight.tif │ │ │ │ └── encryptionLockIconLight@2x.tif │ │ │ ├── IRC Formatting Colors │ │ │ │ ├── FormattingColor_0.png │ │ │ │ ├── FormattingColor_1.png │ │ │ │ ├── FormattingColor_10.png │ │ │ │ ├── FormattingColor_11.png │ │ │ │ ├── FormattingColor_12.png │ │ │ │ ├── FormattingColor_13.png │ │ │ │ ├── FormattingColor_14.png │ │ │ │ ├── FormattingColor_15.png │ │ │ │ ├── FormattingColor_2.png │ │ │ │ ├── FormattingColor_3.png │ │ │ │ ├── FormattingColor_4.png │ │ │ │ ├── FormattingColor_5.png │ │ │ │ ├── FormattingColor_6.png │ │ │ │ ├── FormattingColor_7.png │ │ │ │ ├── FormattingColor_8.png │ │ │ │ ├── FormattingColor_9.png │ │ │ │ ├── FormattingColor_Rainbow.tif │ │ │ │ └── FormattingColor_Rainbow@2x.tif │ │ │ ├── Preferences │ │ │ │ ├── TPWTB_Addons.png │ │ │ │ ├── TPWTB_Addons@2x.png │ │ │ │ ├── TPWTB_Advanced.png │ │ │ │ ├── TPWTB_Advanced@2x.png │ │ │ │ ├── TPWTB_Controls.png │ │ │ │ ├── TPWTB_Controls@2x.png │ │ │ │ ├── TPWTB_General.png │ │ │ │ ├── TPWTB_General@2x.png │ │ │ │ ├── TPWTB_Highlights.png │ │ │ │ ├── TPWTB_Highlights@2x.png │ │ │ │ ├── TPWTB_Interface.png │ │ │ │ ├── TPWTB_Interface@2x.png │ │ │ │ ├── TPWTB_Notifications.png │ │ │ │ ├── TPWTB_Notifications@2x.png │ │ │ │ ├── TPWTB_Style.png │ │ │ │ └── TPWTB_Style@2x.png │ │ │ ├── Status Badges │ │ │ │ ├── channelRoomStatusIconDarkActive.tif │ │ │ │ ├── channelRoomStatusIconDarkActive@2x.tif │ │ │ │ ├── channelRoomStatusIconDarkInactive.tif │ │ │ │ ├── channelRoomStatusIconDarkInactive@2x.tif │ │ │ │ ├── channelRoomStatusIconLightActive.tif │ │ │ │ ├── channelRoomStatusIconLightActive@2x.tif │ │ │ │ ├── channelRoomStatusIconLightInactive.tif │ │ │ │ ├── channelRoomStatusIconLightInactive@2x.tif │ │ │ │ ├── channelRoomStatusIconMavericksDark.psd │ │ │ │ └── channelRoomStatusIconMavericksLight.psd │ │ │ └── User Interface │ │ │ │ ├── MainWindowSegmentedControlUserTemplate.pdf │ │ │ │ ├── MainWindowSpotlightIconTemplate.pdf │ │ │ │ ├── Miscellaneous │ │ │ │ └── ErroneousTextFieldValueIndicator.tif │ │ │ │ └── Server List │ │ │ │ └── Glass │ │ │ │ ├── VibrantDarkServerListViewPrivateMessageUserIconActive.tif │ │ │ │ ├── VibrantDarkServerListViewPrivateMessageUserIconActive@2x.tif │ │ │ │ ├── VibrantDarkServerListViewPrivateMessageUserIconInactive.tif │ │ │ │ ├── VibrantDarkServerListViewPrivateMessageUserIconInactive@2x.tif │ │ │ │ ├── VibrantLightServerListViewPrivateMessageUserIconActive.tif │ │ │ │ ├── VibrantLightServerListViewPrivateMessageUserIconActive@2x.tif │ │ │ │ ├── VibrantLightServerListViewPrivateMessageUserIconInactive.tif │ │ │ │ └── VibrantLightServerListViewPrivateMessageUserIconInactive@2x.tif │ │ ├── Language Files │ │ │ ├── _randomToken │ │ │ └── en.lproj │ │ │ │ ├── Accessibility.strings │ │ │ │ ├── BasicLanguage.strings │ │ │ │ ├── CommonErrors.strings │ │ │ │ ├── IRC.strings │ │ │ │ ├── Notifications.strings │ │ │ │ ├── OffTheRecord.strings │ │ │ │ ├── Prompts.strings │ │ │ │ ├── TDCAboutDialog.strings │ │ │ │ ├── TDCAddressBookSheet.strings │ │ │ │ ├── TDCChannelBanListSheet.strings │ │ │ │ ├── TDCChannelInviteSheet.strings │ │ │ │ ├── TDCChannelModifyModesSheet.strings │ │ │ │ ├── TDCChannelModifyTopicSheet.strings │ │ │ │ ├── TDCChannelPropertiesSheet.strings │ │ │ │ ├── TDCChannelSpotlightController.strings │ │ │ │ ├── TDCFileTransferDialog.strings │ │ │ │ ├── TDCLicenseUpgradeEligibilitySheet.strings │ │ │ │ ├── TDCPreferencesController.strings │ │ │ │ ├── TDCPreferencesUserStyleSheet.strings │ │ │ │ ├── TDCServerChannelListDialog.strings │ │ │ │ ├── TDCServerEndpointListSheet.strings │ │ │ │ ├── TDCServerPropertiesSheet.strings │ │ │ │ ├── TLOLicenseManager.strings │ │ │ │ ├── TVCMainWindow.strings │ │ │ │ └── TVCNotificationConfigurationView.strings │ │ ├── License Manager │ │ │ └── RemoteLicenseSystemPublicKey.pub │ │ ├── Property Lists │ │ │ ├── Application Properties │ │ │ │ └── Info.plist │ │ │ ├── IRCCommandIndexLocalData.plist │ │ │ ├── IRCCommandIndexRemoteData.plist │ │ │ ├── IRCNetworks.plist │ │ │ ├── Preferences │ │ │ │ ├── KeysExcludedFromContainer.plist │ │ │ │ ├── KeysExcludedFromExport.plist │ │ │ │ ├── KeysExcludedFromMigrate.plist │ │ │ │ ├── PreferenceKeyMasterList.plist │ │ │ │ ├── RegisteredUserDefaults.plist │ │ │ │ └── RegisteredUserDefaultsInContainer.plist │ │ │ ├── StaticStore.plist │ │ │ └── TemplateLineTypes.plist │ │ ├── Scripting │ │ │ └── Script Files │ │ │ │ ├── Bundled Scripts │ │ │ │ ├── Installing Custom Scripts.txt │ │ │ │ ├── date.scpt │ │ │ │ └── moti.scpt │ │ │ │ └── Textual Extras Installer │ │ │ │ ├── Create-Installers │ │ │ │ ├── Installation Files │ │ │ │ └── Scripts │ │ │ │ │ ├── apps.scpt │ │ │ │ │ ├── banhammer.scpt │ │ │ │ │ ├── ffuu.scpt │ │ │ │ │ ├── flip.scpt │ │ │ │ │ ├── hermes.scpt │ │ │ │ │ ├── music.scpt │ │ │ │ │ ├── np.scpt │ │ │ │ │ ├── o_o.scpt │ │ │ │ │ ├── page.scpt │ │ │ │ │ ├── qt.scpt │ │ │ │ │ ├── radium.scpt │ │ │ │ │ ├── reverse.scpt │ │ │ │ │ ├── shell.scpt │ │ │ │ │ ├── slap.scpt │ │ │ │ │ ├── spotify.scpt │ │ │ │ │ └── vlc.scpt │ │ │ │ ├── Installer Helpers │ │ │ │ ├── Build-Extension-Package │ │ │ │ ├── Build-Final-Package │ │ │ │ └── Build-Scripts-Package │ │ │ │ ├── Installer Resources │ │ │ │ ├── InstallerBackground.png │ │ │ │ └── en.lproj │ │ │ │ │ ├── Localizable.strings │ │ │ │ │ └── Welcome.rtf │ │ │ │ ├── Packages │ │ │ │ └── Textual-Extras.pkg │ │ │ │ └── distribution.plist │ │ ├── Styling │ │ │ ├── Bundled Styles │ │ │ │ ├── Astria │ │ │ │ │ ├── Templates │ │ │ │ │ │ └── encryptedMessageLock.mustache │ │ │ │ │ ├── copyright.txt │ │ │ │ │ ├── design.css │ │ │ │ │ ├── inlineMedia.css │ │ │ │ │ ├── scripts.js │ │ │ │ │ └── settings.plist │ │ │ │ ├── Equinox │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── lockIconResource.svg │ │ │ │ │ ├── Templates │ │ │ │ │ │ └── encryptedMessageLock.mustache │ │ │ │ │ ├── design.css │ │ │ │ │ ├── inlineMedia.css │ │ │ │ │ ├── scripts.js │ │ │ │ │ └── settings.plist │ │ │ │ ├── Sapientia │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Documentation │ │ │ │ │ │ │ └── changelog.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ └── encryptedMessageLock.mustache │ │ │ │ │ ├── copyright.txt │ │ │ │ │ ├── design.css │ │ │ │ │ ├── inlineMedia.css │ │ │ │ │ ├── scripts.js │ │ │ │ │ └── settings.plist │ │ │ │ ├── Simplified │ │ │ │ │ ├── Varieties │ │ │ │ │ │ ├── Dark │ │ │ │ │ │ │ ├── Templates │ │ │ │ │ │ │ │ └── encryptedMessageLock.mustache │ │ │ │ │ │ │ ├── design.css │ │ │ │ │ │ │ ├── inlineMedia.css │ │ │ │ │ │ │ └── settings.plist │ │ │ │ │ │ └── Light │ │ │ │ │ │ │ ├── Templates │ │ │ │ │ │ │ └── encryptedMessageLock.mustache │ │ │ │ │ │ │ ├── design.css │ │ │ │ │ │ │ ├── inlineMedia.css │ │ │ │ │ │ │ └── settings.plist │ │ │ │ │ ├── copyright.txt │ │ │ │ │ ├── scripts.js │ │ │ │ │ └── settings.plist │ │ │ │ ├── Sulaco │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── Templates │ │ │ │ │ │ ├── newMessagePostedWithSender.mustache │ │ │ │ │ │ └── newMessagePostedWithoutSender.mustache │ │ │ │ │ ├── design.css │ │ │ │ │ ├── inlineMedia.css │ │ │ │ │ ├── scripts.js │ │ │ │ │ └── settings.plist │ │ │ │ ├── Tomorrow │ │ │ │ │ ├── Varieties │ │ │ │ │ │ ├── Dark │ │ │ │ │ │ │ ├── Templates │ │ │ │ │ │ │ │ └── encryptedMessageLock.mustache │ │ │ │ │ │ │ ├── design.css │ │ │ │ │ │ │ ├── inlineMedia.css │ │ │ │ │ │ │ └── settings.plist │ │ │ │ │ │ └── Light │ │ │ │ │ │ │ ├── Templates │ │ │ │ │ │ │ └── encryptedMessageLock.mustache │ │ │ │ │ │ │ ├── design.css │ │ │ │ │ │ │ ├── inlineMedia.css │ │ │ │ │ │ │ └── settings.plist │ │ │ │ │ ├── copyright.txt │ │ │ │ │ ├── scripts.js │ │ │ │ │ └── settings.plist │ │ │ │ └── Total Sublime │ │ │ │ │ ├── Templates │ │ │ │ │ └── encryptedMessageLock.mustache │ │ │ │ │ ├── copyright.txt │ │ │ │ │ ├── design.css │ │ │ │ │ ├── inlineMedia.css │ │ │ │ │ ├── scripts.js │ │ │ │ │ └── settings.plist │ │ │ ├── JavaScript │ │ │ │ └── API │ │ │ │ │ ├── core.js │ │ │ │ │ ├── corePrivate.js │ │ │ │ │ └── private │ │ │ │ │ ├── conversationTracking.js │ │ │ │ │ ├── core │ │ │ │ │ ├── clickMenuSelection.js │ │ │ │ │ ├── documentBody.js │ │ │ │ │ ├── events.js │ │ │ │ │ ├── inlineMedia.js │ │ │ │ │ ├── messageBuffer.js │ │ │ │ │ └── scrollTo.js │ │ │ │ │ ├── scriptSink.js │ │ │ │ │ └── scroller │ │ │ │ │ ├── automatic.js │ │ │ │ │ ├── automaticEmpty.js │ │ │ │ │ └── state.js │ │ │ └── Style Default Templates │ │ │ │ └── Version 4 │ │ │ │ ├── baseLayout.css │ │ │ │ ├── baseLayout.mustache │ │ │ │ ├── dateIndicator.mustache │ │ │ │ ├── encryptedMessageLock.mustache │ │ │ │ ├── formattedMessageFragment.mustache │ │ │ │ ├── historyIndicator.mustache │ │ │ │ ├── messageBufferLoadingIndicator.mustache │ │ │ │ ├── messageBufferSessionIndicator.mustache │ │ │ │ ├── newMessagePostedWithSender.mustache │ │ │ │ ├── newMessagePostedWithoutSender.mustache │ │ │ │ ├── renderedChannelNameLinkResource.mustache │ │ │ │ ├── renderedStandardAnchorLinkResource.mustache │ │ │ │ └── sessionIndicator.mustache │ │ └── User Interface │ │ │ ├── Appearance │ │ │ ├── TDCChannelSpotlightAppearance.plist │ │ │ ├── TDCChannelSpotlightAppearanceTemplate.plist │ │ │ ├── TVCMainWindowAppearance.plist │ │ │ ├── TVCMainWindowAppearanceTemplate.plist │ │ │ ├── TVCMainWindowTextViewAppearance.plist │ │ │ ├── TVCMainWindowTextViewAppearanceTemplate.plist │ │ │ ├── TVCMemberListAppearance.plist │ │ │ ├── TVCMemberListAppearanceTemplate.plist │ │ │ ├── TVCServerListAppearance.plist │ │ │ └── TVCServerListAppearanceTemplate.plist │ │ │ └── en.lproj │ │ │ ├── TDCAboutDialog.xib │ │ │ ├── TDCAddressBookSheet.xib │ │ │ ├── TDCChannelBanListSheet.xib │ │ │ ├── TDCChannelInviteSheet.xib │ │ │ ├── TDCChannelModifyModesSheet.xib │ │ │ ├── TDCChannelModifyTopicSheet.xib │ │ │ ├── TDCChannelPropertiesSheet.xib │ │ │ ├── TDCChannelSpotlightController.xib │ │ │ ├── TDCFileTransferDialog.xib │ │ │ ├── TDCHighlightEntrySheet.xib │ │ │ ├── TDCLicenseManagerDialog.xib │ │ │ ├── TDCLicenseManagerMigrateAppStoreSheet.xib │ │ │ ├── TDCLicenseManagerRecoverLostLicenseSheet.xib │ │ │ ├── TDCLicenseUpgradeActivateSheet.xib │ │ │ ├── TDCLicenseUpgradeDialog.xib │ │ │ ├── TDCLicenseUpgradeEligibilitySheet.xib │ │ │ ├── TDCNicknameColorSheet.xib │ │ │ ├── TDCPreferences.xib │ │ │ ├── TDCPreferencesUserStyleSheet.xib │ │ │ ├── TDCProgressIndicatorSheet.xib │ │ │ ├── TDCServerChangeNicknameSheet.xib │ │ │ ├── TDCServerChannelListDialog.xib │ │ │ ├── TDCServerEndpointListSheet.xib │ │ │ ├── TDCServerHighlightListSheet.xib │ │ │ ├── TDCServerPropertiesSheet.xib │ │ │ ├── TDCWelcomeSheet.xib │ │ │ ├── TVCAlert.xib │ │ │ ├── TVCChannelSelectionView.xib │ │ │ ├── TVCMainWindow.xib │ │ │ ├── TVCNotificationConfigurationView.xib │ │ │ └── TXCMainMenu.xib │ └── Textual App.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ └── xcschemes │ │ ├── Textual (App Store).xcscheme │ │ ├── Textual (Debug).xcscheme │ │ ├── Textual (Standard Release Sandboxed).xcscheme │ │ └── Textual (Standard Release).xcscheme ├── Plugins │ ├── Blowfish Encryption │ │ ├── ACKNOWLEDGEMENT.txt │ │ ├── Blowfish Encryption Extension.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Blowfish Encryption Extension.xcscheme │ │ ├── Classes │ │ │ ├── BlowfishEncryption.h │ │ │ ├── BlowfishEncryption.m │ │ │ ├── BlowfishEncryptionBase.h │ │ │ ├── BlowfishEncryptionBase.m │ │ │ ├── BlowfishEncryptionKeyExchange.h │ │ │ ├── BlowfishEncryptionKeyExchange.mm │ │ │ ├── BlowfishEncryptionKeyExchangeBase.h │ │ │ ├── BlowfishEncryptionKeyExchangeBase.mm │ │ │ ├── NSDataHelper.h │ │ │ ├── NSDataHelper.m │ │ │ ├── TPIBlowfishEncryption.h │ │ │ ├── TPIBlowfishEncryption.m │ │ │ ├── TPIBlowfishEncryptionSwizzledClasses.h │ │ │ └── TPIBlowfishEncryptionSwizzledClasses.m │ │ ├── LICENSE-GPLv2.txt │ │ ├── LICENSE.txt │ │ └── Resources │ │ │ ├── Language Files │ │ │ └── en.lproj │ │ │ │ └── BasicLanguage.strings │ │ │ ├── Property Lists │ │ │ └── Info.plist │ │ │ └── User Interface │ │ │ └── en.lproj │ │ │ └── TPIBlowfishEncryption.xib │ ├── Caffeine │ │ ├── Caffeine Extension.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Caffeine Extension.xcscheme │ │ ├── Classes │ │ │ ├── TPI_Caffeine.h │ │ │ └── TPI_Caffeine.m │ │ └── Resources │ │ │ ├── Language Files │ │ │ └── en.lproj │ │ │ │ └── BasicLanguage.strings │ │ │ ├── Property Lists │ │ │ └── Info.plist │ │ │ └── User Interface │ │ │ └── en.lproj │ │ │ └── TPI_Caffeine.xib │ ├── Chat Filter │ │ ├── Chat Filter Extension.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Classes │ │ │ ├── TPI_ChatFilter.h │ │ │ ├── TPI_ChatFilter.m │ │ │ ├── TPI_ChatFilterEditFilterSheet.h │ │ │ ├── TPI_ChatFilterEditFilterSheet.m │ │ │ ├── TPI_ChatFilterExtension.h │ │ │ ├── TPI_ChatFilterExtension.m │ │ │ ├── TPI_ChatFilterInternal.h │ │ │ ├── TPI_ChatFilterLogic.h │ │ │ ├── TPI_ChatFilterLogic.m │ │ │ ├── TPI_NumberOnlyTextFieldFormatter.h │ │ │ └── TPI_NumberOnlyTextFieldFormatter.m │ │ └── Resources │ │ │ ├── Language Files │ │ │ └── en.lproj │ │ │ │ ├── TPI_ChatFilterEditFilterSheet.strings │ │ │ │ ├── TPI_ChatFilterExtension.strings │ │ │ │ └── TPI_ChatFilterLogic.strings │ │ │ ├── Property Lists │ │ │ └── Info.plist │ │ │ └── User Interface │ │ │ └── en.lproj │ │ │ ├── TPI_ChatFilterEditFilterSheet.xib │ │ │ └── TPI_ChatFilterExtension.xib │ ├── Sample Code │ │ └── Preference Pane │ │ │ ├── Classes │ │ │ ├── TPI_PreferencePaneExample.h │ │ │ └── TPI_PreferencePaneExample.m │ │ │ ├── PreferencePaneExample.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── Resources │ │ │ ├── Property Lists │ │ │ └── Info.plist │ │ │ └── User Interface │ │ │ └── PreferencePane.xib │ ├── Smiley Converter │ │ ├── Classes │ │ │ ├── TPISmileyConverter.h │ │ │ └── TPISmileyConverter.m │ │ ├── Resources │ │ │ ├── Language Files │ │ │ │ └── en.lproj │ │ │ │ │ └── BasicLanguage.strings │ │ │ ├── Property Lists │ │ │ │ ├── Info.plist │ │ │ │ ├── conversionTable.plist │ │ │ │ └── conversionTable2.plist │ │ │ └── User Interface │ │ │ │ └── en.lproj │ │ │ │ └── TPISmileyConverter.xib │ │ └── Smiley Converter Extension.xcodeproj │ │ │ └── project.pbxproj │ ├── System Profiler │ │ ├── Classes │ │ │ ├── SystemProfiler.h │ │ │ ├── TPISystemProfiler.h │ │ │ ├── TPISystemProfiler.m │ │ │ ├── TPI_SP_SysInfo.h │ │ │ └── TPI_SP_SysInfo.m │ │ ├── Resources │ │ │ ├── Language Files │ │ │ │ └── en.lproj │ │ │ │ │ └── BasicLanguage.strings │ │ │ ├── Property Lists │ │ │ │ ├── Info.plist │ │ │ │ └── MacintoshModels.plist │ │ │ └── User Interface │ │ │ │ └── en.lproj │ │ │ │ └── TPISystemProfiler.xib │ │ └── System Profiler Extension.xcodeproj │ │ │ └── project.pbxproj │ ├── User Insights │ │ ├── Classes │ │ │ ├── TPIUserInsights.h │ │ │ └── TPIUserInsights.m │ │ ├── Resources │ │ │ ├── Language Files │ │ │ │ └── en.lproj │ │ │ │ │ └── BasicLanguage.strings │ │ │ └── Property Lists │ │ │ │ └── Info.plist │ │ └── User Insights Extension.xcodeproj │ │ │ └── project.pbxproj │ ├── Wiki Link Parser │ │ ├── Classes │ │ │ ├── TPIWikiStyleLinkParser.h │ │ │ └── TPIWikiStyleLinkParser.m │ │ ├── Resources │ │ │ ├── Language Files │ │ │ │ └── en.lproj │ │ │ │ │ └── BasicLanguage.strings │ │ │ ├── Property Lists │ │ │ │ └── Info.plist │ │ │ └── User Interface │ │ │ │ └── en.lproj │ │ │ │ └── TPIWikiStyleLinkParser.xib │ │ └── Wiki-style Link Parser Extension.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Wiki-style Link Parser Extension.xcscheme │ └── ZNC Additions │ │ ├── Classes │ │ ├── TPI_ZNCAdditions.h │ │ └── TPI_ZNCAdditions.m │ │ ├── Resources │ │ ├── Language Files │ │ │ └── en.lproj │ │ │ │ └── BasicLanguage.strings │ │ └── Property Lists │ │ │ └── Info.plist │ │ └── ZNC Additions Extension.xcodeproj │ │ └── project.pbxproj └── Shared │ ├── Headers │ ├── External Libraries │ │ ├── GCDAsyncSocket.h │ │ └── GCDAsyncSocketExtensions.h │ ├── ICLPayload.h │ ├── IRCConnectionConfig.h │ ├── IRCConnectionErrors.h │ ├── Internal │ │ ├── ICLPayloadInternal.h │ │ └── IRCConnectionConfigInternal.h │ ├── Private │ │ ├── NSObjectHelperPrivate.h │ │ ├── TPCPreferencesPrivate.h │ │ ├── TPCPreferencesUserDefaultsPrivate.h │ │ └── TVCLogLineXPCPrivate.h │ ├── Services │ │ ├── HLSHistoricLogProtocol.h │ │ ├── ICLInlineContentProtocol.h │ │ └── RCMConnectionManagerProtocol.h │ ├── StaticDefinitions.h │ ├── TLOLocalization.h │ ├── TLOTimer.h │ ├── TPCPreferences.h │ └── TPCPreferencesUserDefaults.h │ ├── Helpers │ └── Cocoa (Objective-C) │ │ └── NSObjectHelper.m │ ├── IRC │ ├── IRCConnectionConfig.m │ └── IRCConnectionErrors.m │ ├── Library │ ├── External Libraries │ │ └── Sockets │ │ │ ├── GCDAsyncSocket-patch.txt │ │ │ ├── GCDAsyncSocket.m │ │ │ └── GCDAsyncSocketExtensions.m │ ├── TLOLocalization.m │ ├── TLOLocalization.swift │ └── TLOTimer.m │ ├── Preferences │ ├── TPCPreferences.m │ └── TPCPreferencesUserDefaults.m │ ├── Services │ └── ICLPayload.m │ └── Views │ └── Channel View │ └── TVCLogLineXPC.m ├── Textual.xcworkspace └── contents.xcworkspacedata └── XPC Services ├── Historic Log File Manager ├── Classes │ ├── HLSHistoricLogLineEntityMigration.m │ ├── HLSHistoricLogProcessMain.m │ ├── HLSHistoricLogViewContext.m │ ├── HSLHistoricLogProcessDelegate.m │ ├── Headers │ │ └── Private │ │ │ ├── HLSHistoricLogLineEntityMigrationPrivate.h │ │ │ ├── HLSHistoricLogProcessMainPrivate.h │ │ │ ├── HLSHistoricLogProtocol.h │ │ │ ├── HLSHistoricLogViewContextPrivate.h │ │ │ ├── HSLHistoricLogPCHPrivate.h │ │ │ └── HSLHistoricLogProcessDelegatePrivate.h │ └── main.m ├── Configurations │ └── Sandbox │ │ └── Release.entitlements ├── Historic Log File Manager.xcodeproj │ └── project.pbxproj └── Resources │ ├── Data Models │ ├── HistoricLogFileStorageModel.xcdatamodeld │ │ ├── .xccurrentversion │ │ ├── LogControllerStorageModel (model 2).xcdatamodel │ │ │ └── contents │ │ └── LogControllerStorageModel (model 3).xcdatamodel │ │ │ └── contents │ └── HistoricLogFileStorageModel.xcmappingmodel │ │ └── xcmapping.xml │ └── Property Lists │ └── Info.plist ├── IRC Remote Connection Manager ├── Classes │ ├── Headers │ │ └── Private │ │ │ ├── IRCConnectionPrivate.h │ │ │ ├── RCMConnectionManagerProtocol.h │ │ │ ├── RCMProcessDelegatePrivate.h │ │ │ ├── RCMProcessMainPrivate.h │ │ │ ├── RCMProcessPCHPrivate.h │ │ │ └── SwiftBridgingHeaderPrivate.h │ ├── IRC │ │ ├── IRCConnection.swift │ │ ├── IRCConnectionSocket.swift │ │ ├── IRCConnectionSocketClassic.swift │ │ └── IRCConnectionSocketNWF.swift │ └── Service │ │ ├── RCMProcessDelegate.m │ │ ├── RCMProcessMain.m │ │ └── main.m ├── Configurations │ └── Sandbox │ │ └── Release.entitlements ├── IRC Remote Connection Manager.xcodeproj │ └── project.pbxproj └── Resources │ ├── Language Files │ └── en.lproj │ │ └── ConnectionErrors.strings │ └── Property Lists │ └── Info.plist └── Inline Content Loader ├── Build Scripts └── BuildExtensions.sh ├── Classes ├── Headers │ ├── ICLHelpers.h │ ├── ICLInlineContentModule.h │ ├── ICLMediaAssessment.h │ ├── ICLMediaAssessor.h │ ├── ICLMediaType.h │ ├── ICLPayload.h │ ├── ICLPluginProtocol.h │ ├── Internal │ │ ├── ICLInlineContentModuleInternal.h │ │ ├── ICLMediaAssessmentInternal.h │ │ └── ICLPayloadInternal.h │ └── Private │ │ ├── CoreModulesImportsPrivate.h │ │ ├── ICLInlineContentModulePrivate.h │ │ ├── ICLInlineContentProtocol.h │ │ ├── ICLPayloadPrivate.h │ │ ├── ICLPluginManagerPrivate.h │ │ ├── ICLProcessDelegatePrivate.h │ │ ├── ICLProcessMainPrivate.h │ │ └── ICLProcessPCHPrivate.h ├── Modules │ ├── Assessed Media │ │ ├── ICMAssessedMedia.h │ │ └── ICMAssessedMedia.m │ └── Root Classes │ │ ├── ICMInlineHTML.h │ │ ├── ICMInlineHTML.m │ │ ├── ICMInlineImage.h │ │ ├── ICMInlineImage.m │ │ ├── ICMInlineVideo.h │ │ └── ICMInlineVideo.m └── Service │ ├── ICLHelpers.m │ ├── ICLInlineContentModule.m │ ├── ICLMediaAssessment.m │ ├── ICLMediaAssessor.m │ ├── ICLPayloadLocal.m │ ├── ICLPayloadShared.m │ ├── ICLPluginManager.m │ ├── ICLProcessDelegate.m │ ├── ICLProcessMain.m │ └── main.m ├── Configurations └── Sandbox │ └── Release.entitlements ├── Extensions └── Core Media │ ├── Classes │ ├── Headers │ │ └── Private │ │ │ ├── ICPCoreMediaPCHPrivate.h │ │ │ └── ICPCoreMediaPrivate.h │ ├── ICPCoreMedia.m │ └── Modules │ │ ├── Common Images │ │ ├── ICMCommonInlineImages.h │ │ └── ICMCommonInlineImages.m │ │ ├── Common Videos │ │ ├── ICMCommonInlineVideos.h │ │ └── ICMCommonInlineVideos.m │ │ ├── Dailymotion │ │ ├── ICMDailymotion.h │ │ └── ICMDailymotion.m │ │ ├── Gyazo │ │ ├── ICMGyazo.h │ │ └── ICMGyazo.m │ │ ├── Imgur .gifv │ │ ├── ICMImgurGifv.h │ │ └── ICMImgurGifv.m │ │ ├── Pornhub │ │ ├── ICMPornhub.h │ │ └── ICMPornhub.m │ │ ├── Streamable │ │ ├── ICMStreamable.h │ │ └── ICMStreamable.m │ │ ├── Twitch Clips │ │ ├── ICMTwitchClips.h │ │ └── ICMTwitchClips.m │ │ ├── Twitch Live │ │ ├── ICMTwitchLive.h │ │ └── ICMTwitchLive.m │ │ ├── Twitter │ │ ├── ICMTweet.h │ │ └── ICMTweet.m │ │ ├── Vimeo │ │ ├── ICMVimeo.h │ │ └── ICMVimeo.m │ │ ├── YouTube │ │ ├── ICMYouTube.h │ │ └── ICMYouTube.m │ │ └── xkcd │ │ ├── ICMXkcd.h │ │ └── ICMXkcd.m │ ├── Inline Content Loader Core Media.xcodeproj │ └── project.pbxproj │ └── Resources │ ├── Modules │ ├── Dailymotion │ │ └── ICMDailymotion.mustache │ ├── Pornhub │ │ └── ICMPornhub.mustache │ ├── Twitch Clips │ │ └── ICMTwitchClips.mustache │ ├── Twitch Live │ │ └── ICMTwitchLive.mustache │ ├── Twitter │ │ └── ICMTweet.js │ ├── Vimeo │ │ └── ICMVimeo.mustache │ └── YouTube │ │ └── ICMYouTube.mustache │ └── Property Lists │ └── Info.plist ├── Inline Content Loader.xcodeproj └── project.pbxproj └── Resources ├── Modules ├── ICMInlineHTML.css ├── ICMInlineHTML.js ├── ICMInlineHTML.mustache ├── ICMInlineImage.css ├── ICMInlineImage.js ├── ICMInlineImage.mustache ├── ICMInlineVideo.css ├── ICMInlineVideo.js ├── ICMInlineVideo.mustache └── InlineImageLiveResize.js └── Property Lists └── Info.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/.gitmodules -------------------------------------------------------------------------------- /Acknowledgements.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Acknowledgements.pdf -------------------------------------------------------------------------------- /Common/Documents/Acknowledgements.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Common/Documents/Acknowledgements.docx -------------------------------------------------------------------------------- /Common/Release DMG.dmgCanvas/Disk Image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Common/Release DMG.dmgCanvas/Disk Image -------------------------------------------------------------------------------- /Common/Release DMG.dmgCanvas/QuickLook/Preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Common/Release DMG.dmgCanvas/QuickLook/Preview.jpg -------------------------------------------------------------------------------- /Configurations/Build/Code Signing Identity.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Code Signing Identity.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Common/Foundation Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Common/Foundation Debug.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Common/Foundation.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Common/Foundation.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Common/Preserve Symbols.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Common/Preserve Symbols.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Common/Textual App.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Common/Textual App.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Common/Textual Extensions.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Common/Textual Extensions.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Common/Textual.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Common/Textual.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Common/XPC Service - ICL Extensions.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Common/XPC Service - ICL Extensions.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Common/XPC Service - ICL.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Common/XPC Service - ICL.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Common/XPC Services.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Common/XPC Services.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Debug/Enabled Features.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Debug/Enabled Features.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Debug/Textual App.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Debug/Textual App.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Debug/Textual Extensions.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Debug/Textual Extensions.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Debug/Textual.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Debug/Textual.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Debug/XPC Service - ICL Extensions.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Debug/XPC Service - ICL Extensions.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Debug/XPC Service - ICL.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Debug/XPC Service - ICL.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Debug/XPC Services.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Debug/XPC Services.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/README.md: -------------------------------------------------------------------------------- 1 | 2 | TODO: Write a README 3 | -------------------------------------------------------------------------------- /Configurations/Build/Standard Release/Enabled Features.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Standard Release/Enabled Features.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Standard Release/Textual App.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Standard Release/Textual App.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Standard Release/Textual Extensions.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Standard Release/Textual Extensions.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Standard Release/Textual.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Standard Release/Textual.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Standard Release/XPC Service - ICL Extensions.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Standard Release/XPC Service - ICL Extensions.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Standard Release/XPC Service - ICL.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Standard Release/XPC Service - ICL.xcconfig -------------------------------------------------------------------------------- /Configurations/Build/Standard Release/XPC Services.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Build/Standard Release/XPC Services.xcconfig -------------------------------------------------------------------------------- /Configurations/ExportArchiveConfiguration.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/ExportArchiveConfiguration.plist -------------------------------------------------------------------------------- /Configurations/Sandbox/Inherited.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Configurations/Sandbox/Inherited.entitlements -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/README.md -------------------------------------------------------------------------------- /Sources/App/Build Scripts/BuildExtensions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Build Scripts/BuildExtensions.sh -------------------------------------------------------------------------------- /Sources/App/Build Scripts/BuildFrameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Build Scripts/BuildFrameworks.sh -------------------------------------------------------------------------------- /Sources/App/Build Scripts/BuildServices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Build Scripts/BuildServices.sh -------------------------------------------------------------------------------- /Sources/App/Build Scripts/ExportArchive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Build Scripts/ExportArchive.sh -------------------------------------------------------------------------------- /Sources/App/Build Scripts/MergeSwift.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Build Scripts/MergeSwift.sh -------------------------------------------------------------------------------- /Sources/App/Build Scripts/PostprocessSparkle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Build Scripts/PostprocessSparkle.sh -------------------------------------------------------------------------------- /Sources/App/Build Scripts/UpdateFeatureFlags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Build Scripts/UpdateFeatureFlags.sh -------------------------------------------------------------------------------- /Sources/App/Build Scripts/UpdateVersionInfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Build Scripts/UpdateVersionInfo.sh -------------------------------------------------------------------------------- /Sources/App/Classes/Controllers/TXAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Controllers/TXAppearance.m -------------------------------------------------------------------------------- /Sources/App/Classes/Controllers/TXApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Controllers/TXApplication.m -------------------------------------------------------------------------------- /Sources/App/Classes/Controllers/TXGlobalModels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Controllers/TXGlobalModels.m -------------------------------------------------------------------------------- /Sources/App/Classes/Controllers/TXMasterController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Controllers/TXMasterController.m -------------------------------------------------------------------------------- /Sources/App/Classes/Controllers/TXMenuController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Controllers/TXMenuController.m -------------------------------------------------------------------------------- /Sources/App/Classes/Controllers/TXSharedApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Controllers/TXSharedApplication.m -------------------------------------------------------------------------------- /Sources/App/Classes/Controllers/TXWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Controllers/TXWindowController.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/Channel Spotlight/TDCChannelSpotlightAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/Channel Spotlight/TDCChannelSpotlightAppearance.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/Channel Spotlight/TDCChannelSpotlightController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/Channel Spotlight/TDCChannelSpotlightController.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/Channel Spotlight/TDCChannelSpotlightControls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/Channel Spotlight/TDCChannelSpotlightControls.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/Channel Spotlight/TDCChannelSpotlightSearchResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/Channel Spotlight/TDCChannelSpotlightSearchResult.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/File Transfers/TDCFileTransferDialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/File Transfers/TDCFileTransferDialog.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/File Transfers/TDCFileTransferDialogTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/File Transfers/TDCFileTransferDialogTableCell.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/Preferences/TDCPreferencesController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/Preferences/TDCPreferencesController.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/Preferences/TDCPreferencesUserStyleSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/Preferences/TDCPreferencesUserStyleSheet.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/Server Endpoint/TDCServerEndpointListSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/Server Endpoint/TDCServerEndpointListSheet.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/Server Endpoint/TDCServerEndpointListSheetTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/Server Endpoint/TDCServerEndpointListSheetTable.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCAboutDialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCAboutDialog.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCAddressBookSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCAddressBookSheet.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCAlert.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCChannelBanListSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCChannelBanListSheet.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCChannelInviteSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCChannelInviteSheet.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCChannelModifyModesSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCChannelModifyModesSheet.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCChannelModifyTopicSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCChannelModifyTopicSheet.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCChannelPropertiesNotificationConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCChannelPropertiesNotificationConfiguration.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCChannelPropertiesSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCChannelPropertiesSheet.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCHighlightEntrySheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCHighlightEntrySheet.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCInputPrompt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCInputPrompt.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCNicknameColorSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCNicknameColorSheet.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCProgressIndicatorSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCProgressIndicatorSheet.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCServerChangeNicknameSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCServerChangeNicknameSheet.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCServerChannelListDialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCServerChannelListDialog.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCServerHighlightListSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCServerHighlightListSheet.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCServerPropertiesSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCServerPropertiesSheet.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCSheetBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCSheetBase.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCWelcomeSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCWelcomeSheet.m -------------------------------------------------------------------------------- /Sources/App/Classes/Dialogs/TDCWindowBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Dialogs/TDCWindowBase.m -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/External Libraries/GTMEncodeHTML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/External Libraries/GTMEncodeHTML.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/External Libraries/OELReachability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/External Libraries/OELReachability.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRC.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCAddressBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCAddressBook.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCAddressBookUserTracking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCAddressBookUserTracking.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCChannel.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCChannelConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCChannelConfig.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCChannelMemberList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCChannelMemberList.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCChannelMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCChannelMode.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCChannelUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCChannelUser.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCClient.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCClientConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCClientConfig.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCColorFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCColorFormat.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCCommandIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCCommandIndex.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCConnection.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCHighlightLogEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCHighlightLogEntry.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCHighlightMatchCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCHighlightMatchCondition.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCISupportInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCISupportInfo.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCMessage.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCModeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCModeInfo.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCNetworkList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCNetworkList.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCNumerics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCNumerics.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCPrefix.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCSendingMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCSendingMessage.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCServer.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCTreeItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCTreeItem.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCUser.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCUserRelations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCUserRelations.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/IRCWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/IRCWorld.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/IRCAddressBookInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/IRCAddressBookInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/IRCChannelConfigInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/IRCChannelConfigInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/IRCChannelUserInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/IRCChannelUserInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/IRCClientConfigInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/IRCClientConfigInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/IRCHighlightLogEntryInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/IRCHighlightLogEntryInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/IRCHighlightMatchConditionInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/IRCHighlightMatchConditionInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/IRCMessageInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/IRCMessageInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/IRCModeInfoInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/IRCModeInfoInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/IRCPrefixInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/IRCPrefixInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/IRCServerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/IRCServerInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/IRCUserInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/IRCUserInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/TDCChannelPropertiesSheetInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/TDCChannelPropertiesSheetInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/TDCChannelSpotlightAppearanceInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/TDCChannelSpotlightAppearanceInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/TDCChannelSpotlightControllerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/TDCChannelSpotlightControllerInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/TDCFileTransferDialogInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/TDCFileTransferDialogInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Internal/TVCLogLineInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Internal/TVCLogLineInternal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/NSColorHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/NSColorHelper.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/NSStringHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/NSStringHelper.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/NSViewHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/NSViewHelper.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/ICLPayloadLocalPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/ICLPayloadLocalPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCAddressBookMatchCachePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCAddressBookMatchCachePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCAddressBookUserTrackingPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCAddressBookUserTrackingPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCChannelConfigPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCChannelConfigPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCChannelMemberListControllerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCChannelMemberListControllerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCChannelMemberListPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCChannelMemberListPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCChannelModePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCChannelModePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCChannelPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCChannelPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCChannelUserPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCChannelUserPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCClientConfigPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCClientConfigPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCClientPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCClientPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCClientRequestedCommandsPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCClientRequestedCommandsPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCColorFormatPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCColorFormatPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCCommandIndexPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCCommandIndexPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCConnectionPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCConnectionPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCExtrasPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCExtrasPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCHighlightLogEntryPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCHighlightLogEntryPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCISupportInfoPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCISupportInfoPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCMessageBatchPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCMessageBatchPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCMessagePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCMessagePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCServerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCServerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCTimerCommandPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCTimerCommandPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCTreeItemPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCTreeItemPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCUserNicknameColorStyleGeneratorPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCUserNicknameColorStyleGeneratorPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCUserPersistentStorePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCUserPersistentStorePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCUserPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCUserPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCUserRelationsPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCUserRelationsPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/IRCWorldPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/IRCWorldPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/NSTableVIewHelperPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/NSTableVIewHelperPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/NSViewHelperPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/NSViewHelperPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/SwiftBridgingHeaderPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/SwiftBridgingHeaderPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCAboutDialogPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCAboutDialogPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCAddressBookSheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCAddressBookSheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCChannelBanListSheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCChannelBanListSheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCChannelInviteSheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCChannelInviteSheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCChannelModifyModesSheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCChannelModifyModesSheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCChannelModifyTopicSheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCChannelModifyTopicSheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCChannelPropertiesSheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCChannelPropertiesSheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCChannelSpotlightAppearancePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCChannelSpotlightAppearancePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCChannelSpotlightControllerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCChannelSpotlightControllerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCChannelSpotlightControlsPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCChannelSpotlightControlsPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCChannelSpotlightSearchResultPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCChannelSpotlightSearchResultPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCFileTransferDialogPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCFileTransferDialogPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCFileTransferDialogTableCellPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCFileTransferDialogTableCellPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCHighlightEntrySheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCHighlightEntrySheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCLicenseManagerDialogPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCLicenseManagerDialogPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCLicenseUpgradeActivateSheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCLicenseUpgradeActivateSheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCLicenseUpgradeCommonActionsPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCLicenseUpgradeCommonActionsPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCLicenseUpgradeDialogPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCLicenseUpgradeDialogPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCLicenseUpgradeEligibilitySheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCLicenseUpgradeEligibilitySheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCNicknameColorSheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCNicknameColorSheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCPreferencesControllerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCPreferencesControllerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCPreferencesUserStyleSheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCPreferencesUserStyleSheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCProgressIndicatorSheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCProgressIndicatorSheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCServerChangeNicknameSheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCServerChangeNicknameSheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCServerChannelListDialogPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCServerChannelListDialogPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCServerEndpointListSheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCServerEndpointListSheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCServerEndpointListSheetTablePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCServerEndpointListSheetTablePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCServerHighlightListSheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCServerHighlightListSheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCServerPropertiesSheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCServerPropertiesSheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCSharedProtocolDefinitionsPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCSharedProtocolDefinitionsPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TDCWelcomeSheetPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TDCWelcomeSheetPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/THOPluginDispatcherPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/THOPluginDispatcherPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/THOPluginItemPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/THOPluginItemPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/THOPluginManagerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/THOPluginManagerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/THOPluginProtocolPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/THOPluginProtocolPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TLOEncryptionManagerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TLOEncryptionManagerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TLOFileLoggerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TLOFileLoggerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TLOInputHistoryPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TLOInputHistoryPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TLOLicenseManagerDownloaderPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TLOLicenseManagerDownloaderPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TLOLicenseManagerLastGenPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TLOLicenseManagerLastGenPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TLOLicenseManagerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TLOLicenseManagerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TLONicknameCompletionStatusPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TLONicknameCompletionStatusPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TLONotificationConfigurationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TLONotificationConfigurationPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TLONotificationControllerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TLONotificationControllerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TLOSpeechSynthesizerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TLOSpeechSynthesizerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TLOSpokenNotificationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TLOSpokenNotificationPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TPCApplicationInfoPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TPCApplicationInfoPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TPCPathInfoPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TPCPathInfoPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TPCPreferencesImportExportPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TPCPreferencesImportExportPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TPCPreferencesLocalPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TPCPreferencesLocalPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TPCResourceManagerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TPCResourceManagerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TPCSandboxMigrationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TPCSandboxMigrationPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TPCThemeControllerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TPCThemeControllerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TPCThemePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TPCThemePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCAppearancePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCAppearancePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCChannelSelectionOutlineViewCellPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCChannelSelectionOutlineViewCellPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCChannelSelectionViewControllerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCChannelSelectionViewControllerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCContentNavigationOutlineViewPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCContentNavigationOutlineViewPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCDockIconPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCDockIconPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCErrorMessagePopoverControllerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCErrorMessagePopoverControllerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCErrorMessagePopoverPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCErrorMessagePopoverPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCLogControllerHistoricLogFilePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCLogControllerHistoricLogFilePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCLogControllerInlineMediaServicePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCLogControllerInlineMediaServicePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCLogControllerOperationQueuePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCLogControllerOperationQueuePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCLogControllerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCLogControllerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCLogLinePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCLogLinePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCLogPolicyPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCLogPolicyPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCLogScriptEventSinkPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCLogScriptEventSinkPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCLogViewInternalWK1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCLogViewInternalWK1.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCLogViewInternalWK2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCLogViewInternalWK2.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCLogViewPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCLogViewPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCMainWindowAppearancePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCMainWindowAppearancePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCMainWindowChannelViewPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCMainWindowChannelViewPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCMainWindowLoadingScreenPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCMainWindowLoadingScreenPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCMainWindowPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCMainWindowPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCMainWindowSegmentedControlPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCMainWindowSegmentedControlPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCMainWindowSplitViewPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCMainWindowSplitViewPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCMainWindowTextViewAppearancePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCMainWindowTextViewAppearancePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCMainWindowTextViewPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCMainWindowTextViewPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCMainWindowTitlebarAccessoryViewPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCMainWindowTitlebarAccessoryViewPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCMemberListAppearancePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCMemberListAppearancePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCMemberListCellPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCMemberListCellPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCMemberListPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCMemberListPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCMemberListUserInfoPopoverPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCMemberListUserInfoPopoverPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCServerListAppearancePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCServerListAppearancePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCServerListCellPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCServerListCellPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCServerListPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCServerListPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCTextFormatterMenuPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCTextFormatterMenuPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCTextViewWithIRCFormatterPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCTextViewWithIRCFormatterPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TVCWK1AutoScrollerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TVCWK1AutoScrollerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TXAppearancePrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TXAppearancePrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TXApplicationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TXApplicationPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TXGlobalModelsPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TXGlobalModelsPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TXMasterControllerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TXMasterControllerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TXMenuControllerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TXMenuControllerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TXSharedApplicationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TXSharedApplicationPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TXWindowControllerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TXWindowControllerPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/TextualPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/TextualPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/WKWebViewPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/WKWebViewPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Private/WebScriptObjectHelperPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Private/WebScriptObjectHelperPrivate.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TDCAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TDCAlert.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TDCInputPrompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TDCInputPrompt.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TDCSheetBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TDCSheetBase.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TDCWindowBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TDCWindowBase.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/THOPluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/THOPluginManager.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/THOPluginProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/THOPluginProtocol.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/THOUnicodeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/THOUnicodeHelper.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TLOEncryptionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TLOEncryptionManager.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TLOInternetAddressLookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TLOInternetAddressLookup.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TLOKeyEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TLOKeyEventHandler.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TLOLinkParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TLOLinkParser.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TLONotificationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TLONotificationController.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TLOSoundPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TLOSoundPlayer.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TLOpenLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TLOpenLink.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TPCApplicationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TPCApplicationInfo.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TPCPathInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TPCPathInfo.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TPCPreferencesImportExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TPCPreferencesImportExport.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TPCPreferencesLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TPCPreferencesLocal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TPCPreferencesReload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TPCPreferencesReload.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TPCPreferencesUserDefaultsLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TPCPreferencesUserDefaultsLocal.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TPCResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TPCResourceManager.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TPCTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TPCTheme.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TPCThemeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TPCThemeController.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCAlert.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCAppearance.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCAutoExpandingTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCAutoExpandingTextField.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCAutoExpandingTokenField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCAutoExpandingTokenField.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCBasicTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCBasicTableView.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCChannelSelectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCChannelSelectionViewController.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCLogController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCLogController.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCLogLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCLogLine.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCLogRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCLogRenderer.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCLogView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCLogView.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCMainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCMainWindow.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCMainWindowAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCMainWindowAppearance.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCMainWindowLoadingScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCMainWindowLoadingScreen.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCMainWindowSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCMainWindowSplitView.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCMainWindowTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCMainWindowTextView.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCMainWindowTextViewAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCMainWindowTextViewAppearance.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCMemberList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCMemberList.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCMemberListAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCMemberListAppearance.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCServerList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCServerList.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCServerListAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCServerListAppearance.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCTextViewWithIRCFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCTextViewWithIRCFormatter.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCValidatedComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCValidatedComboBox.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TVCValidatedTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TVCValidatedTextField.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TXAppearance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TXAppearance.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TXAppearanceHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TXAppearanceHelper.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TXGlobalModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TXGlobalModels.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TXMasterController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TXMasterController.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TXMenuController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TXMenuController.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TXSharedApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TXSharedApplication.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/Textual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/Textual.h -------------------------------------------------------------------------------- /Sources/App/Classes/Headers/TextualApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Headers/TextualApplication.h -------------------------------------------------------------------------------- /Sources/App/Classes/Helpers/Cocoa (Objective-C)/NSColorHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Helpers/Cocoa (Objective-C)/NSColorHelper.m -------------------------------------------------------------------------------- /Sources/App/Classes/Helpers/Cocoa (Objective-C)/NSStringHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Helpers/Cocoa (Objective-C)/NSStringHelper.m -------------------------------------------------------------------------------- /Sources/App/Classes/Helpers/Cocoa (Objective-C)/NSTableViewHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Helpers/Cocoa (Objective-C)/NSTableViewHelper.m -------------------------------------------------------------------------------- /Sources/App/Classes/Helpers/Cocoa (Objective-C)/NSViewHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Helpers/Cocoa (Objective-C)/NSViewHelper.m -------------------------------------------------------------------------------- /Sources/App/Classes/Helpers/Cocoa (Objective-C)/TXAppearanceHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Helpers/Cocoa (Objective-C)/TXAppearanceHelper.m -------------------------------------------------------------------------------- /Sources/App/Classes/Helpers/External Libraries/Google/GTMEncodeHTML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Helpers/External Libraries/Google/GTMEncodeHTML.m -------------------------------------------------------------------------------- /Sources/App/Classes/Helpers/External Libraries/WebKit/WebScriptObjectHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Helpers/External Libraries/WebKit/WebScriptObjectHelper.m -------------------------------------------------------------------------------- /Sources/App/Classes/Helpers/Plugin Architecture/THOPluginDispatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Helpers/Plugin Architecture/THOPluginDispatcher.m -------------------------------------------------------------------------------- /Sources/App/Classes/Helpers/Plugin Architecture/THOPluginItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Helpers/Plugin Architecture/THOPluginItem.m -------------------------------------------------------------------------------- /Sources/App/Classes/Helpers/Plugin Architecture/THOPluginItemLogging.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Helpers/Plugin Architecture/THOPluginItemLogging.m -------------------------------------------------------------------------------- /Sources/App/Classes/Helpers/Plugin Architecture/THOPluginManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Helpers/Plugin Architecture/THOPluginManager.m -------------------------------------------------------------------------------- /Sources/App/Classes/Helpers/THOUnicodeHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Helpers/THOUnicodeHelper.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCAddressBook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCAddressBook.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCAddressBookMatchCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCAddressBookMatchCache.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCAddressBookUserTracking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCAddressBookUserTracking.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCChannel.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCChannelConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCChannelConfig.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCChannelMemberList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCChannelMemberList.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCChannelMemberListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCChannelMemberListController.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCChannelMode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCChannelMode.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCClient.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCClientConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCClientConfig.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCClientRequestedCommands.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCClientRequestedCommands.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCCommandIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCCommandIndex.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCConnection.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCExtras.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCExtras.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCHighlightLogEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCHighlightLogEntry.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCHighlightMatchCondition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCHighlightMatchCondition.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCISupportInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCISupportInfo.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCMessage.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCMessageBatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCMessageBatch.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCModeInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCModeInfo.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCNetworkList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCNetworkList.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCPrefix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCPrefix.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCSendingMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCSendingMessage.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCServer.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCTimerCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCTimerCommand.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCTreeItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCTreeItem.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/IRCWorld.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/IRCWorld.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/Users/IRCChannelUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/Users/IRCChannelUser.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/Users/IRCUser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/Users/IRCUser.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/Users/IRCUserNicknameColorStyleGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/Users/IRCUserNicknameColorStyleGenerator.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/Users/IRCUserPersistentStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/Users/IRCUserPersistentStore.m -------------------------------------------------------------------------------- /Sources/App/Classes/IRC/Users/IRCUserRelations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/IRC/Users/IRCUserRelations.m -------------------------------------------------------------------------------- /Sources/App/Classes/Library/Color Formatting/IRCColorFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/Color Formatting/IRCColorFormat.m -------------------------------------------------------------------------------- /Sources/App/Classes/Library/External Libraries/Sockets/OELReachability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/External Libraries/Sockets/OELReachability.m -------------------------------------------------------------------------------- /Sources/App/Classes/Library/License Manager/Standalone/TLOLicenseManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/License Manager/Standalone/TLOLicenseManager.m -------------------------------------------------------------------------------- /Sources/App/Classes/Library/TLOEncryptionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/TLOEncryptionManager.m -------------------------------------------------------------------------------- /Sources/App/Classes/Library/TLOFileLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/TLOFileLogger.m -------------------------------------------------------------------------------- /Sources/App/Classes/Library/TLOInputHistory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/TLOInputHistory.m -------------------------------------------------------------------------------- /Sources/App/Classes/Library/TLOInternetAddressLookup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/TLOInternetAddressLookup.m -------------------------------------------------------------------------------- /Sources/App/Classes/Library/TLOKeyEventHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/TLOKeyEventHandler.m -------------------------------------------------------------------------------- /Sources/App/Classes/Library/TLOLinkParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/TLOLinkParser.swift -------------------------------------------------------------------------------- /Sources/App/Classes/Library/TLONicknameCompletionStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/TLONicknameCompletionStatus.m -------------------------------------------------------------------------------- /Sources/App/Classes/Library/TLONotificationConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/TLONotificationConfiguration.m -------------------------------------------------------------------------------- /Sources/App/Classes/Library/TLONotificationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/TLONotificationController.m -------------------------------------------------------------------------------- /Sources/App/Classes/Library/TLOSoundPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/TLOSoundPlayer.m -------------------------------------------------------------------------------- /Sources/App/Classes/Library/TLOSpeechSynthesizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/TLOSpeechSynthesizer.m -------------------------------------------------------------------------------- /Sources/App/Classes/Library/TLOSpokenNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/TLOSpokenNotification.m -------------------------------------------------------------------------------- /Sources/App/Classes/Library/TLOpenLink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Library/TLOpenLink.swift -------------------------------------------------------------------------------- /Sources/App/Classes/Others/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Others/main.m -------------------------------------------------------------------------------- /Sources/App/Classes/Preferences/TPCApplicationInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Preferences/TPCApplicationInfo.m -------------------------------------------------------------------------------- /Sources/App/Classes/Preferences/TPCPathInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Preferences/TPCPathInfo.m -------------------------------------------------------------------------------- /Sources/App/Classes/Preferences/TPCPreferencesImportExport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Preferences/TPCPreferencesImportExport.m -------------------------------------------------------------------------------- /Sources/App/Classes/Preferences/TPCPreferencesLocal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Preferences/TPCPreferencesLocal.m -------------------------------------------------------------------------------- /Sources/App/Classes/Preferences/TPCPreferencesReload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Preferences/TPCPreferencesReload.m -------------------------------------------------------------------------------- /Sources/App/Classes/Preferences/TPCPreferencesUserDefaultsLocal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Preferences/TPCPreferencesUserDefaultsLocal.m -------------------------------------------------------------------------------- /Sources/App/Classes/Preferences/TPCResourceManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Preferences/TPCResourceManager.m -------------------------------------------------------------------------------- /Sources/App/Classes/Preferences/TPCSandboxMigration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Preferences/TPCSandboxMigration.m -------------------------------------------------------------------------------- /Sources/App/Classes/Preferences/Themes/TPCTheme.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Preferences/Themes/TPCTheme.m -------------------------------------------------------------------------------- /Sources/App/Classes/Preferences/Themes/TPCThemeController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Preferences/Themes/TPCThemeController.m -------------------------------------------------------------------------------- /Sources/App/Classes/Services/ICLPayloadLocal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Services/ICLPayloadLocal.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Channel View/Extras/TVCLogControllerHistoricLogFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Channel View/Extras/TVCLogControllerHistoricLogFile.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Channel View/Extras/TVCLogControllerOperationQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Channel View/Extras/TVCLogControllerOperationQueue.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Channel View/TVCLogController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Channel View/TVCLogController.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Channel View/TVCLogLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Channel View/TVCLogLine.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Channel View/TVCLogPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Channel View/TVCLogPolicy.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Channel View/TVCLogRenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Channel View/TVCLogRenderer.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Channel View/TVCLogScriptEventSink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Channel View/TVCLogScriptEventSink.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Channel View/TVCLogView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Channel View/TVCLogView.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Channel View/TVCLogViewInternalWK1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Channel View/TVCLogViewInternalWK1.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Channel View/TVCLogViewInternalWK2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Channel View/TVCLogViewInternalWK2.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Channel View/TVCWK1AutoScroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Channel View/TVCWK1AutoScroller.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Errors/TVCAlert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Errors/TVCAlert.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Errors/TVCErrorMessagePopover.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Errors/TVCErrorMessagePopover.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Errors/TVCErrorMessagePopoverController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Errors/TVCErrorMessagePopoverController.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Input Text Field/TVCAutoExpandingTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Input Text Field/TVCAutoExpandingTextField.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Input Text Field/TVCAutoExpandingTokenField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Input Text Field/TVCAutoExpandingTokenField.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Input Text Field/TVCTextFormatterMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Input Text Field/TVCTextFormatterMenu.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Input Text Field/TVCTextViewWithIRCFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Input Text Field/TVCTextViewWithIRCFormatter.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Input Text Field/TVCValidatedComboBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Input Text Field/TVCValidatedComboBox.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Input Text Field/TVCValidatedTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Input Text Field/TVCValidatedTextField.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Main Window/TVCMainWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Main Window/TVCMainWindow.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Main Window/TVCMainWindowAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Main Window/TVCMainWindowAppearance.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Main Window/TVCMainWindowChannelView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Main Window/TVCMainWindowChannelView.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Main Window/TVCMainWindowLoadingScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Main Window/TVCMainWindowLoadingScreen.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Main Window/TVCMainWindowSegmentedControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Main Window/TVCMainWindowSegmentedControl.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Main Window/TVCMainWindowSplitView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Main Window/TVCMainWindowSplitView.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Main Window/TVCMainWindowTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Main Window/TVCMainWindowTextView.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Main Window/TVCMainWindowTextViewAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Main Window/TVCMainWindowTextViewAppearance.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Main Window/TVCMainWindowTitlebarAccessoryView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Main Window/TVCMainWindowTitlebarAccessoryView.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Server List/TVCServerList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Server List/TVCServerList.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Server List/TVCServerListAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Server List/TVCServerListAppearance.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/Server List/TVCServerListCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/Server List/TVCServerListCell.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/TVCAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/TVCAppearance.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/TVCBasicTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/TVCBasicTableView.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/TVCContentNavigationOutlineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/TVCContentNavigationOutlineView.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/TVCDockIcon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/TVCDockIcon.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/User List/TVCMemberList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/User List/TVCMemberList.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/User List/TVCMemberListAppearance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/User List/TVCMemberListAppearance.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/User List/TVCMemberListCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/User List/TVCMemberListCell.m -------------------------------------------------------------------------------- /Sources/App/Classes/Views/User List/TVCMemberListUserInfoPopover.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Classes/Views/User List/TVCMemberListUserInfoPopover.m -------------------------------------------------------------------------------- /Sources/App/Configurations/Sandbox/Debug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Configurations/Sandbox/Debug.entitlements -------------------------------------------------------------------------------- /Sources/App/Configurations/Sandbox/Sandbox Disabled.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Configurations/Sandbox/Sandbox Disabled.entitlements -------------------------------------------------------------------------------- /Sources/App/Configurations/Sandbox/Standard Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Configurations/Sandbox/Standard Release.entitlements -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Application/applicationIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Application/applicationIcon.icns -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Application/applicationIcon.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Application/applicationIcon.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Application/applicationIcon.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Application/applicationIcon.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Application/applicationIcon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Application/applicationIcon.psd -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Application/applicationIconBirthday.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Application/applicationIconBirthday.icns -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Copyright Information for Images.txt: -------------------------------------------------------------------------------- 1 | Please see acknowledgements.pdf for copyright information -------------------------------------------------------------------------------- /Sources/App/Resources/Images/DMG Canvas/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/DMG Canvas/background.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Dock Icon Badges/Green/DIGreenBadgeCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Dock Icon Badges/Green/DIGreenBadgeCenter.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Dock Icon Badges/Green/DIGreenBadgeLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Dock Icon Badges/Green/DIGreenBadgeLeft.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Dock Icon Badges/Green/DIGreenBadgeRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Dock Icon Badges/Green/DIGreenBadgeRight.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Dock Icon Badges/Red/DIRedBadgeCenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Dock Icon Badges/Red/DIRedBadgeCenter.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Dock Icon Badges/Red/DIRedBadgeLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Dock Icon Badges/Red/DIRedBadgeLeft.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Dock Icon Badges/Red/DIRedBadgeRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Dock Icon Badges/Red/DIRedBadgeRight.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Encryption Badges/encryptionLockIconDark.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Encryption Badges/encryptionLockIconDark.tif -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Encryption Badges/encryptionLockIconDark@2x.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Encryption Badges/encryptionLockIconDark@2x.tif -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Encryption Badges/encryptionLockIconLight.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Encryption Badges/encryptionLockIconLight.tif -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Encryption Badges/encryptionLockIconLight@2x.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Encryption Badges/encryptionLockIconLight@2x.tif -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_0.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_1.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_10.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_11.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_12.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_13.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_14.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_15.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_2.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_3.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_4.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_5.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_6.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_7.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_8.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_9.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_Rainbow.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/IRC Formatting Colors/FormattingColor_Rainbow.tif -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_Addons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_Addons.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_Addons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_Addons@2x.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_Advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_Advanced.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_Advanced@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_Advanced@2x.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_Controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_Controls.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_Controls@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_Controls@2x.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_General.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_General.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_General@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_General@2x.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_Highlights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_Highlights.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_Highlights@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_Highlights@2x.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_Interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_Interface.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_Interface@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_Interface@2x.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_Notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_Notifications.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_Notifications@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_Notifications@2x.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_Style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_Style.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Preferences/TPWTB_Style@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Preferences/TPWTB_Style@2x.png -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Status Badges/channelRoomStatusIconDarkActive.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Status Badges/channelRoomStatusIconDarkActive.tif -------------------------------------------------------------------------------- /Sources/App/Resources/Images/Status Badges/channelRoomStatusIconLightActive.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/Status Badges/channelRoomStatusIconLightActive.tif -------------------------------------------------------------------------------- /Sources/App/Resources/Images/User Interface/MainWindowSpotlightIconTemplate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Images/User Interface/MainWindowSpotlightIconTemplate.pdf -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/_randomToken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/_randomToken -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/Accessibility.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/Accessibility.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/BasicLanguage.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/BasicLanguage.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/CommonErrors.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/CommonErrors.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/IRC.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/IRC.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/Notifications.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/Notifications.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/OffTheRecord.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/OffTheRecord.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/Prompts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/Prompts.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/TDCAboutDialog.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/TDCAboutDialog.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/TDCAddressBookSheet.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/TDCAddressBookSheet.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/TDCChannelBanListSheet.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/TDCChannelBanListSheet.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/TDCChannelInviteSheet.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/TDCChannelInviteSheet.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/TDCChannelPropertiesSheet.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/TDCChannelPropertiesSheet.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/TDCFileTransferDialog.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/TDCFileTransferDialog.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/TDCPreferencesController.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/TDCPreferencesController.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/TDCServerPropertiesSheet.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/TDCServerPropertiesSheet.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/TLOLicenseManager.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/TLOLicenseManager.strings -------------------------------------------------------------------------------- /Sources/App/Resources/Language Files/en.lproj/TVCMainWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Language Files/en.lproj/TVCMainWindow.strings -------------------------------------------------------------------------------- /Sources/App/Resources/License Manager/RemoteLicenseSystemPublicKey.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/License Manager/RemoteLicenseSystemPublicKey.pub -------------------------------------------------------------------------------- /Sources/App/Resources/Property Lists/Application Properties/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Property Lists/Application Properties/Info.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Property Lists/IRCCommandIndexLocalData.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Property Lists/IRCCommandIndexLocalData.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Property Lists/IRCCommandIndexRemoteData.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Property Lists/IRCCommandIndexRemoteData.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Property Lists/IRCNetworks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Property Lists/IRCNetworks.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Property Lists/Preferences/KeysExcludedFromExport.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Property Lists/Preferences/KeysExcludedFromExport.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Property Lists/Preferences/KeysExcludedFromMigrate.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Property Lists/Preferences/KeysExcludedFromMigrate.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Property Lists/Preferences/PreferenceKeyMasterList.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Property Lists/Preferences/PreferenceKeyMasterList.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Property Lists/Preferences/RegisteredUserDefaults.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Property Lists/Preferences/RegisteredUserDefaults.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Property Lists/StaticStore.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Property Lists/StaticStore.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Property Lists/TemplateLineTypes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Property Lists/TemplateLineTypes.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Scripting/Script Files/Bundled Scripts/date.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Scripting/Script Files/Bundled Scripts/date.scpt -------------------------------------------------------------------------------- /Sources/App/Resources/Scripting/Script Files/Bundled Scripts/moti.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Scripting/Script Files/Bundled Scripts/moti.scpt -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Astria/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Astria/copyright.txt -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Astria/design.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Astria/design.css -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Astria/inlineMedia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Astria/inlineMedia.css -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Astria/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Astria/scripts.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Astria/settings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Astria/settings.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Equinox/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Equinox/LICENSE.txt -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Equinox/design.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Equinox/design.css -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Equinox/inlineMedia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Equinox/inlineMedia.css -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Equinox/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Equinox/scripts.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Equinox/settings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Equinox/settings.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Sapientia/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Sapientia/copyright.txt -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Sapientia/design.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Sapientia/design.css -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Sapientia/inlineMedia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Sapientia/inlineMedia.css -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Sapientia/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Sapientia/scripts.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Sapientia/settings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Sapientia/settings.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Simplified/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Simplified/copyright.txt -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Simplified/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Simplified/scripts.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Simplified/settings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Simplified/settings.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Sulaco/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Sulaco/LICENSE.txt -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Sulaco/design.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Sulaco/design.css -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Sulaco/inlineMedia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Sulaco/inlineMedia.css -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Sulaco/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Sulaco/scripts.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Sulaco/settings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Sulaco/settings.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Tomorrow/Varieties/Dark/design.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Tomorrow/Varieties/Dark/design.css -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Tomorrow/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Tomorrow/copyright.txt -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Tomorrow/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Tomorrow/scripts.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Tomorrow/settings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Tomorrow/settings.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Total Sublime/copyright.txt: -------------------------------------------------------------------------------- 1 | Developed by Daniel Bird -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Total Sublime/design.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Total Sublime/design.css -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Total Sublime/inlineMedia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Total Sublime/inlineMedia.css -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Total Sublime/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Total Sublime/scripts.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Bundled Styles/Total Sublime/settings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Bundled Styles/Total Sublime/settings.plist -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/JavaScript/API/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/JavaScript/API/core.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/JavaScript/API/corePrivate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/JavaScript/API/corePrivate.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/JavaScript/API/private/conversationTracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/JavaScript/API/private/conversationTracking.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/JavaScript/API/private/core/clickMenuSelection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/JavaScript/API/private/core/clickMenuSelection.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/JavaScript/API/private/core/documentBody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/JavaScript/API/private/core/documentBody.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/JavaScript/API/private/core/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/JavaScript/API/private/core/events.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/JavaScript/API/private/core/inlineMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/JavaScript/API/private/core/inlineMedia.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/JavaScript/API/private/core/messageBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/JavaScript/API/private/core/messageBuffer.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/JavaScript/API/private/core/scrollTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/JavaScript/API/private/core/scrollTo.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/JavaScript/API/private/scriptSink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/JavaScript/API/private/scriptSink.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/JavaScript/API/private/scroller/automatic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/JavaScript/API/private/scroller/automatic.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/JavaScript/API/private/scroller/automaticEmpty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/JavaScript/API/private/scroller/automaticEmpty.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/JavaScript/API/private/scroller/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/JavaScript/API/private/scroller/state.js -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Style Default Templates/Version 4/baseLayout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/Styling/Style Default Templates/Version 4/baseLayout.css -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Style Default Templates/Version 4/encryptedMessageLock.mustache: -------------------------------------------------------------------------------- 1 | 2 | {{! Not handled by default. }} 3 | -------------------------------------------------------------------------------- /Sources/App/Resources/Styling/Style Default Templates/Version 4/historyIndicator.mustache: -------------------------------------------------------------------------------- 1 | 2 |
3 | -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/Appearance/TVCMainWindowAppearance.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/Appearance/TVCMainWindowAppearance.plist -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/Appearance/TVCMemberListAppearance.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/Appearance/TVCMemberListAppearance.plist -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/Appearance/TVCServerListAppearance.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/Appearance/TVCServerListAppearance.plist -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCAboutDialog.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCAboutDialog.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCAddressBookSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCAddressBookSheet.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCChannelBanListSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCChannelBanListSheet.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCChannelInviteSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCChannelInviteSheet.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCChannelModifyModesSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCChannelModifyModesSheet.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCChannelModifyTopicSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCChannelModifyTopicSheet.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCChannelPropertiesSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCChannelPropertiesSheet.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCChannelSpotlightController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCChannelSpotlightController.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCFileTransferDialog.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCFileTransferDialog.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCHighlightEntrySheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCHighlightEntrySheet.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCLicenseManagerDialog.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCLicenseManagerDialog.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCLicenseUpgradeDialog.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCLicenseUpgradeDialog.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCNicknameColorSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCNicknameColorSheet.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCPreferences.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCPreferences.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCPreferencesUserStyleSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCPreferencesUserStyleSheet.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCProgressIndicatorSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCProgressIndicatorSheet.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCServerChangeNicknameSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCServerChangeNicknameSheet.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCServerChannelListDialog.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCServerChannelListDialog.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCServerEndpointListSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCServerEndpointListSheet.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCServerHighlightListSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCServerHighlightListSheet.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCServerPropertiesSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCServerPropertiesSheet.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TDCWelcomeSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TDCWelcomeSheet.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TVCAlert.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TVCAlert.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TVCChannelSelectionView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TVCChannelSelectionView.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TVCMainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TVCMainWindow.xib -------------------------------------------------------------------------------- /Sources/App/Resources/User Interface/en.lproj/TXCMainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Resources/User Interface/en.lproj/TXCMainMenu.xib -------------------------------------------------------------------------------- /Sources/App/Textual App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/App/Textual App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sources/Plugins/Blowfish Encryption/ACKNOWLEDGEMENT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Blowfish Encryption/ACKNOWLEDGEMENT.txt -------------------------------------------------------------------------------- /Sources/Plugins/Blowfish Encryption/Classes/BlowfishEncryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Blowfish Encryption/Classes/BlowfishEncryption.h -------------------------------------------------------------------------------- /Sources/Plugins/Blowfish Encryption/Classes/BlowfishEncryption.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Blowfish Encryption/Classes/BlowfishEncryption.m -------------------------------------------------------------------------------- /Sources/Plugins/Blowfish Encryption/Classes/BlowfishEncryptionBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Blowfish Encryption/Classes/BlowfishEncryptionBase.h -------------------------------------------------------------------------------- /Sources/Plugins/Blowfish Encryption/Classes/BlowfishEncryptionBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Blowfish Encryption/Classes/BlowfishEncryptionBase.m -------------------------------------------------------------------------------- /Sources/Plugins/Blowfish Encryption/Classes/BlowfishEncryptionKeyExchange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Blowfish Encryption/Classes/BlowfishEncryptionKeyExchange.h -------------------------------------------------------------------------------- /Sources/Plugins/Blowfish Encryption/Classes/BlowfishEncryptionKeyExchange.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Blowfish Encryption/Classes/BlowfishEncryptionKeyExchange.mm -------------------------------------------------------------------------------- /Sources/Plugins/Blowfish Encryption/Classes/BlowfishEncryptionKeyExchangeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Blowfish Encryption/Classes/BlowfishEncryptionKeyExchangeBase.h -------------------------------------------------------------------------------- /Sources/Plugins/Blowfish Encryption/Classes/NSDataHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Blowfish Encryption/Classes/NSDataHelper.h -------------------------------------------------------------------------------- /Sources/Plugins/Blowfish Encryption/Classes/NSDataHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Blowfish Encryption/Classes/NSDataHelper.m -------------------------------------------------------------------------------- /Sources/Plugins/Blowfish Encryption/Classes/TPIBlowfishEncryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Blowfish Encryption/Classes/TPIBlowfishEncryption.h -------------------------------------------------------------------------------- /Sources/Plugins/Blowfish Encryption/Classes/TPIBlowfishEncryption.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Blowfish Encryption/Classes/TPIBlowfishEncryption.m -------------------------------------------------------------------------------- /Sources/Plugins/Blowfish Encryption/LICENSE-GPLv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Blowfish Encryption/LICENSE-GPLv2.txt -------------------------------------------------------------------------------- /Sources/Plugins/Blowfish Encryption/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Blowfish Encryption/LICENSE.txt -------------------------------------------------------------------------------- /Sources/Plugins/Blowfish Encryption/Resources/Property Lists/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Blowfish Encryption/Resources/Property Lists/Info.plist -------------------------------------------------------------------------------- /Sources/Plugins/Caffeine/Caffeine Extension.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Caffeine/Caffeine Extension.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sources/Plugins/Caffeine/Classes/TPI_Caffeine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Caffeine/Classes/TPI_Caffeine.h -------------------------------------------------------------------------------- /Sources/Plugins/Caffeine/Classes/TPI_Caffeine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Caffeine/Classes/TPI_Caffeine.m -------------------------------------------------------------------------------- /Sources/Plugins/Caffeine/Resources/Property Lists/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Caffeine/Resources/Property Lists/Info.plist -------------------------------------------------------------------------------- /Sources/Plugins/Caffeine/Resources/User Interface/en.lproj/TPI_Caffeine.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Caffeine/Resources/User Interface/en.lproj/TPI_Caffeine.xib -------------------------------------------------------------------------------- /Sources/Plugins/Chat Filter/Chat Filter Extension.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Chat Filter/Chat Filter Extension.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sources/Plugins/Chat Filter/Classes/TPI_ChatFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Chat Filter/Classes/TPI_ChatFilter.h -------------------------------------------------------------------------------- /Sources/Plugins/Chat Filter/Classes/TPI_ChatFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Chat Filter/Classes/TPI_ChatFilter.m -------------------------------------------------------------------------------- /Sources/Plugins/Chat Filter/Classes/TPI_ChatFilterEditFilterSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Chat Filter/Classes/TPI_ChatFilterEditFilterSheet.h -------------------------------------------------------------------------------- /Sources/Plugins/Chat Filter/Classes/TPI_ChatFilterEditFilterSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Chat Filter/Classes/TPI_ChatFilterEditFilterSheet.m -------------------------------------------------------------------------------- /Sources/Plugins/Chat Filter/Classes/TPI_ChatFilterExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Chat Filter/Classes/TPI_ChatFilterExtension.h -------------------------------------------------------------------------------- /Sources/Plugins/Chat Filter/Classes/TPI_ChatFilterExtension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Chat Filter/Classes/TPI_ChatFilterExtension.m -------------------------------------------------------------------------------- /Sources/Plugins/Chat Filter/Classes/TPI_ChatFilterInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Chat Filter/Classes/TPI_ChatFilterInternal.h -------------------------------------------------------------------------------- /Sources/Plugins/Chat Filter/Classes/TPI_ChatFilterLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Chat Filter/Classes/TPI_ChatFilterLogic.h -------------------------------------------------------------------------------- /Sources/Plugins/Chat Filter/Classes/TPI_ChatFilterLogic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Chat Filter/Classes/TPI_ChatFilterLogic.m -------------------------------------------------------------------------------- /Sources/Plugins/Chat Filter/Classes/TPI_NumberOnlyTextFieldFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Chat Filter/Classes/TPI_NumberOnlyTextFieldFormatter.h -------------------------------------------------------------------------------- /Sources/Plugins/Chat Filter/Classes/TPI_NumberOnlyTextFieldFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Chat Filter/Classes/TPI_NumberOnlyTextFieldFormatter.m -------------------------------------------------------------------------------- /Sources/Plugins/Chat Filter/Resources/Property Lists/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Chat Filter/Resources/Property Lists/Info.plist -------------------------------------------------------------------------------- /Sources/Plugins/Sample Code/Preference Pane/Classes/TPI_PreferencePaneExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Sample Code/Preference Pane/Classes/TPI_PreferencePaneExample.h -------------------------------------------------------------------------------- /Sources/Plugins/Smiley Converter/Classes/TPISmileyConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Smiley Converter/Classes/TPISmileyConverter.h -------------------------------------------------------------------------------- /Sources/Plugins/Smiley Converter/Classes/TPISmileyConverter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Smiley Converter/Classes/TPISmileyConverter.m -------------------------------------------------------------------------------- /Sources/Plugins/Smiley Converter/Resources/Property Lists/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Smiley Converter/Resources/Property Lists/Info.plist -------------------------------------------------------------------------------- /Sources/Plugins/System Profiler/Classes/SystemProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/System Profiler/Classes/SystemProfiler.h -------------------------------------------------------------------------------- /Sources/Plugins/System Profiler/Classes/TPISystemProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/System Profiler/Classes/TPISystemProfiler.h -------------------------------------------------------------------------------- /Sources/Plugins/System Profiler/Classes/TPISystemProfiler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/System Profiler/Classes/TPISystemProfiler.m -------------------------------------------------------------------------------- /Sources/Plugins/System Profiler/Classes/TPI_SP_SysInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/System Profiler/Classes/TPI_SP_SysInfo.h -------------------------------------------------------------------------------- /Sources/Plugins/System Profiler/Classes/TPI_SP_SysInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/System Profiler/Classes/TPI_SP_SysInfo.m -------------------------------------------------------------------------------- /Sources/Plugins/System Profiler/Resources/Property Lists/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/System Profiler/Resources/Property Lists/Info.plist -------------------------------------------------------------------------------- /Sources/Plugins/User Insights/Classes/TPIUserInsights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/User Insights/Classes/TPIUserInsights.h -------------------------------------------------------------------------------- /Sources/Plugins/User Insights/Classes/TPIUserInsights.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/User Insights/Classes/TPIUserInsights.m -------------------------------------------------------------------------------- /Sources/Plugins/User Insights/Resources/Property Lists/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/User Insights/Resources/Property Lists/Info.plist -------------------------------------------------------------------------------- /Sources/Plugins/Wiki Link Parser/Classes/TPIWikiStyleLinkParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Wiki Link Parser/Classes/TPIWikiStyleLinkParser.h -------------------------------------------------------------------------------- /Sources/Plugins/Wiki Link Parser/Classes/TPIWikiStyleLinkParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Wiki Link Parser/Classes/TPIWikiStyleLinkParser.m -------------------------------------------------------------------------------- /Sources/Plugins/Wiki Link Parser/Resources/Property Lists/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/Wiki Link Parser/Resources/Property Lists/Info.plist -------------------------------------------------------------------------------- /Sources/Plugins/ZNC Additions/Classes/TPI_ZNCAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/ZNC Additions/Classes/TPI_ZNCAdditions.h -------------------------------------------------------------------------------- /Sources/Plugins/ZNC Additions/Classes/TPI_ZNCAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/ZNC Additions/Classes/TPI_ZNCAdditions.m -------------------------------------------------------------------------------- /Sources/Plugins/ZNC Additions/Resources/Property Lists/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Plugins/ZNC Additions/Resources/Property Lists/Info.plist -------------------------------------------------------------------------------- /Sources/Shared/Headers/External Libraries/GCDAsyncSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Headers/External Libraries/GCDAsyncSocket.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/External Libraries/GCDAsyncSocketExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Headers/External Libraries/GCDAsyncSocketExtensions.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/ICLPayload.h: -------------------------------------------------------------------------------- 1 | ../../../XPC Services/Inline Content Loader/Classes/Headers/ICLPayload.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/IRCConnectionConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Headers/IRCConnectionConfig.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/IRCConnectionErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Headers/IRCConnectionErrors.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/Internal/ICLPayloadInternal.h: -------------------------------------------------------------------------------- 1 | ../../../../XPC Services/Inline Content Loader/Classes/Headers/Internal/ICLPayloadInternal.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/Internal/IRCConnectionConfigInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Headers/Internal/IRCConnectionConfigInternal.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/Private/NSObjectHelperPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Headers/Private/NSObjectHelperPrivate.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/Private/TPCPreferencesPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Headers/Private/TPCPreferencesPrivate.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/Private/TPCPreferencesUserDefaultsPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Headers/Private/TPCPreferencesUserDefaultsPrivate.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/Private/TVCLogLineXPCPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Headers/Private/TVCLogLineXPCPrivate.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/Services/HLSHistoricLogProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../XPC Services/Historic Log File Manager/Classes/Headers/Private/HLSHistoricLogProtocol.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/Services/ICLInlineContentProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../XPC Services/Inline Content Loader/Classes/Headers/Private/ICLInlineContentProtocol.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/Services/RCMConnectionManagerProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../XPC Services/IRC Remote Connection Manager/Classes/Headers/Private/RCMConnectionManagerProtocol.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/StaticDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Headers/StaticDefinitions.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/TLOLocalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Headers/TLOLocalization.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/TLOTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Headers/TLOTimer.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/TPCPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Headers/TPCPreferences.h -------------------------------------------------------------------------------- /Sources/Shared/Headers/TPCPreferencesUserDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Headers/TPCPreferencesUserDefaults.h -------------------------------------------------------------------------------- /Sources/Shared/Helpers/Cocoa (Objective-C)/NSObjectHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Helpers/Cocoa (Objective-C)/NSObjectHelper.m -------------------------------------------------------------------------------- /Sources/Shared/IRC/IRCConnectionConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/IRC/IRCConnectionConfig.m -------------------------------------------------------------------------------- /Sources/Shared/IRC/IRCConnectionErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/IRC/IRCConnectionErrors.m -------------------------------------------------------------------------------- /Sources/Shared/Library/External Libraries/Sockets/GCDAsyncSocket-patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Library/External Libraries/Sockets/GCDAsyncSocket-patch.txt -------------------------------------------------------------------------------- /Sources/Shared/Library/External Libraries/Sockets/GCDAsyncSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Library/External Libraries/Sockets/GCDAsyncSocket.m -------------------------------------------------------------------------------- /Sources/Shared/Library/External Libraries/Sockets/GCDAsyncSocketExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Library/External Libraries/Sockets/GCDAsyncSocketExtensions.m -------------------------------------------------------------------------------- /Sources/Shared/Library/TLOLocalization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Library/TLOLocalization.m -------------------------------------------------------------------------------- /Sources/Shared/Library/TLOLocalization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Library/TLOLocalization.swift -------------------------------------------------------------------------------- /Sources/Shared/Library/TLOTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Library/TLOTimer.m -------------------------------------------------------------------------------- /Sources/Shared/Preferences/TPCPreferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Preferences/TPCPreferences.m -------------------------------------------------------------------------------- /Sources/Shared/Preferences/TPCPreferencesUserDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Preferences/TPCPreferencesUserDefaults.m -------------------------------------------------------------------------------- /Sources/Shared/Services/ICLPayload.m: -------------------------------------------------------------------------------- 1 | ../../../XPC Services/Inline Content Loader/Classes/Service/ICLPayloadShared.m -------------------------------------------------------------------------------- /Sources/Shared/Views/Channel View/TVCLogLineXPC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Sources/Shared/Views/Channel View/TVCLogLineXPC.m -------------------------------------------------------------------------------- /Textual.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/Textual.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XPC Services/Historic Log File Manager/Classes/HLSHistoricLogProcessMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Historic Log File Manager/Classes/HLSHistoricLogProcessMain.m -------------------------------------------------------------------------------- /XPC Services/Historic Log File Manager/Classes/HLSHistoricLogViewContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Historic Log File Manager/Classes/HLSHistoricLogViewContext.m -------------------------------------------------------------------------------- /XPC Services/Historic Log File Manager/Classes/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Historic Log File Manager/Classes/main.m -------------------------------------------------------------------------------- /XPC Services/Historic Log File Manager/Resources/Property Lists/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Historic Log File Manager/Resources/Property Lists/Info.plist -------------------------------------------------------------------------------- /XPC Services/IRC Remote Connection Manager/Classes/IRC/IRCConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/IRC Remote Connection Manager/Classes/IRC/IRCConnection.swift -------------------------------------------------------------------------------- /XPC Services/IRC Remote Connection Manager/Classes/Service/RCMProcessMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/IRC Remote Connection Manager/Classes/Service/RCMProcessMain.m -------------------------------------------------------------------------------- /XPC Services/IRC Remote Connection Manager/Classes/Service/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/IRC Remote Connection Manager/Classes/Service/main.m -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Build Scripts/BuildExtensions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Build Scripts/BuildExtensions.sh -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Headers/ICLHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Headers/ICLHelpers.h -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Headers/ICLInlineContentModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Headers/ICLInlineContentModule.h -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Headers/ICLMediaAssessment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Headers/ICLMediaAssessment.h -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Headers/ICLMediaAssessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Headers/ICLMediaAssessor.h -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Headers/ICLMediaType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Headers/ICLMediaType.h -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Headers/ICLPayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Headers/ICLPayload.h -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Headers/ICLPluginProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Headers/ICLPluginProtocol.h -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Service/ICLHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Service/ICLHelpers.m -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Service/ICLInlineContentModule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Service/ICLInlineContentModule.m -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Service/ICLMediaAssessment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Service/ICLMediaAssessment.m -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Service/ICLMediaAssessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Service/ICLMediaAssessor.m -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Service/ICLPayloadLocal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Service/ICLPayloadLocal.m -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Service/ICLPayloadShared.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Service/ICLPayloadShared.m -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Service/ICLPluginManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Service/ICLPluginManager.m -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Service/ICLProcessDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Service/ICLProcessDelegate.m -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Service/ICLProcessMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Service/ICLProcessMain.m -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Classes/Service/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Classes/Service/main.m -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Resources/Modules/ICMInlineHTML.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Resources/Modules/ICMInlineHTML.css -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Resources/Modules/ICMInlineHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Resources/Modules/ICMInlineHTML.js -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Resources/Modules/ICMInlineHTML.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Resources/Modules/ICMInlineHTML.mustache -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Resources/Modules/ICMInlineImage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Resources/Modules/ICMInlineImage.css -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Resources/Modules/ICMInlineImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Resources/Modules/ICMInlineImage.js -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Resources/Modules/ICMInlineImage.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Resources/Modules/ICMInlineImage.mustache -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Resources/Modules/ICMInlineVideo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Resources/Modules/ICMInlineVideo.css -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Resources/Modules/ICMInlineVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Resources/Modules/ICMInlineVideo.js -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Resources/Modules/ICMInlineVideo.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Resources/Modules/ICMInlineVideo.mustache -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Resources/Modules/InlineImageLiveResize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Resources/Modules/InlineImageLiveResize.js -------------------------------------------------------------------------------- /XPC Services/Inline Content Loader/Resources/Property Lists/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codeux-Software/Textual/HEAD/XPC Services/Inline Content Loader/Resources/Property Lists/Info.plist --------------------------------------------------------------------------------