├── .gitignore ├── ActivityModel.xcdatamodel ├── elements └── layout ├── Chax.icns ├── Chax.xcodeproj └── project.pbxproj ├── ChaxAddition-Info.plist ├── ChaxAddition.r ├── ChaxAddition.sdef ├── ChaxAgentLib-Info.plist ├── ChaxHelperApp-Info.plist ├── ChaxInstaller-Info.plist ├── ChaxLib-Info.plist ├── Chax_Prefix.pch ├── Dutch.lproj ├── ActivityWindow.strings ├── CameraSnapshot.strings ├── Donate.strings ├── Localizable.strings ├── LogViewer.strings └── Preferences.strings ├── English.lproj ├── ActivityWindow.xib ├── CameraSnapshot.xib ├── Donate.xib ├── InfoPlist.strings ├── Localizable.strings ├── LogViewer.xib ├── MainMenu.xib └── Preferences.xib ├── Frameworks ├── Growl.framework │ ├── Growl │ ├── Headers │ ├── Resources │ └── Versions │ │ ├── A │ │ ├── Growl │ │ ├── Headers │ │ │ ├── Growl.h │ │ │ ├── GrowlApplicationBridge-Carbon.h │ │ │ ├── GrowlApplicationBridge.h │ │ │ └── GrowlDefines.h │ │ └── Resources │ │ │ └── Info.plist │ │ └── Current ├── Sparkle.framework │ ├── Headers │ ├── Resources │ ├── Sparkle │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── SUAppcast.h │ │ │ ├── SUAppcastItem.h │ │ │ ├── SUUpdater.h │ │ │ ├── SUVersionComparisonProtocol.h │ │ │ └── Sparkle.h │ │ ├── Resources │ │ │ ├── Info.plist │ │ │ ├── License.txt │ │ │ ├── SUModelTranslation.plist │ │ │ ├── SUStatus.nib │ │ │ ├── cs.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── da.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── de.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── en.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── es.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── fr.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── fr_CA.lproj │ │ │ ├── is.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── it.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── ja.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── nl.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── pl.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── pt.lproj │ │ │ ├── pt_BR.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── relaunch │ │ │ ├── ru.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── sv.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── zh_CN.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ └── zh_TW.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ └── Sparkle │ │ └── Current └── mach_inject_bundle.framework │ ├── Headers │ ├── Resources │ ├── Versions │ ├── A │ │ ├── Headers │ │ │ └── mach_inject_bundle.h │ │ ├── Resources │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Info.plist │ │ │ └── mach_inject_bundle_stub.bundle │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── mach_inject_bundle_stub │ │ │ │ └── Resources │ │ │ │ └── English.lproj │ │ │ │ └── InfoPlist.strings │ │ └── mach_inject_bundle │ └── Current │ └── mach_inject_bundle ├── French.lproj ├── ActivityWindow.strings ├── CameraSnapshot.strings ├── Donate.strings ├── Localizable.strings ├── LogViewer.strings └── Preferences.strings ├── Installer ├── Dutch.lproj │ └── Localizable.strings ├── English.lproj │ └── Localizable.strings ├── French.lproj │ ├── Localizable.strings │ └── MainMenu.strings ├── InstallChax.icns ├── InstallController.h ├── InstallController.m ├── Polish.lproj │ └── Localizable.strings ├── Russian.lproj │ └── Localizable.strings ├── Spanish.lproj │ ├── Localizable.strings │ └── MainMenu.strings └── de.lproj │ ├── Localizable.strings │ └── MainMenu.strings ├── Polish.lproj ├── ActivityWindow.strings ├── CameraSnapshot.strings ├── Donate.strings ├── Localizable.strings ├── LogViewer.strings └── Preferences.strings ├── README.txt ├── RegexKitLite ├── License.rtf ├── RegexKitLite.h ├── RegexKitLite.html ├── RegexKitLite.m └── examples │ ├── NSString-HexConversion.h │ ├── NSString-HexConversion.m │ ├── RKLMatchEnumerator.h │ ├── RKLMatchEnumerator.m │ ├── compiledRegexCache.d │ ├── for_in.m │ ├── link_example.m │ ├── main.m │ └── utf16ConversionCache.d ├── Russian.lproj ├── ActivityWindow.strings ├── CameraSnapshot.strings ├── Donate.strings ├── Localizable.strings ├── LogViewer.strings └── Preferences.strings ├── Sources ├── ActivityDateFormatter.h ├── ActivityDateFormatter.m ├── ActivityStatusCell.h ├── ActivityStatusCell.m ├── ActivityTableView.h ├── ActivityTableView.m ├── ActivityWindowController.h ├── ActivityWindowController.m ├── AutoAcceptPrefsWindowController.h ├── AutoAcceptPrefsWindowController.m ├── AutomaticSwizzle.h ├── AutomaticSwizzle.m ├── BundleUtilities.h ├── BundleUtilities.m ├── CameraSnapshotController.h ├── CameraSnapshotController.m ├── Chax.h ├── Chax.m ├── ChaxAddition.m ├── ChaxAgentInjector.m ├── ChaxAgentPermissionRepair.h ├── ChaxAgentPermissionRepair.m ├── ChaxDefaults.h ├── ChaxDefaults.m ├── ChaxDockView.h ├── ChaxDockView.m ├── ChaxHelperAppUtils.h ├── ChaxHelperAppUtils.m ├── ChaxPrefsView.h ├── ChaxPrefsView.m ├── Chax_AIMServiceSession.h ├── Chax_AIMServiceSession.m ├── Chax_AVChatController.h ├── Chax_AVChatController.m ├── Chax_Account.h ├── Chax_Account.m ├── Chax_ActionsControllerHandler.h ├── Chax_ActionsControllerHandler.m ├── Chax_ActiveChat.h ├── Chax_ActiveChat.m ├── Chax_Chat.h ├── Chax_Chat.m ├── Chax_ChatDOMView.h ├── Chax_ChatDOMView.m ├── Chax_ChatInputLine.h ├── Chax_ChatInputLine.m ├── Chax_ChatWindowController.h ├── Chax_ChatWindowController.m ├── Chax_DaemonListenerStub.h ├── Chax_DaemonListenerStub.m ├── Chax_FezExtendedTableView.h ├── Chax_FezExtendedTableView.m ├── Chax_FezPreferences.h ├── Chax_FezPreferences.m ├── Chax_Fezz.h ├── Chax_Fezz.m ├── Chax_FileTransferCenter.h ├── Chax_FileTransferCenter.m ├── Chax_FileTransferManager.h ├── Chax_FileTransferManager.m ├── Chax_IMPeople.h ├── Chax_IMPeople.m ├── Chax_NSDockTile.h ├── Chax_NSDockTile.m ├── Chax_Notifier.h ├── Chax_Notifier.m ├── Chax_PeopleList.h ├── Chax_PeopleList.m ├── Chax_PeopleListController.h ├── Chax_PeopleListController.m ├── Chax_PeopleListControllerWindow.h ├── Chax_PeopleListControllerWindow.m ├── Chax_PeopleListItem.h ├── Chax_PeopleListItem.m ├── Chax_SecureWindow.h ├── Chax_SecureWindow.m ├── Chax_ServiceErrorDialog.h ├── Chax_ServiceErrorDialog.m ├── Chax_SmileyGrid.h ├── Chax_SmileyGrid.m ├── Chax_SmileyPicker.h ├── Chax_SmileyPicker.m ├── Chax_StatusController.h ├── Chax_StatusController.m ├── Chax_SuperToAIMParserContext.h ├── Chax_SuperToAIMParserContext.m ├── ConversationViewController.h ├── ConversationViewController.m ├── DMLocalizedNibBundle.h ├── DMLocalizedNibBundle.m ├── DockIconController.h ├── DockIconController.m ├── DonateWindowController.h ├── DonateWindowController.m ├── IMCore.h ├── IMFoundation.h ├── IMRenderingFoundation.h ├── LinkButtonCell.h ├── LinkButtonCell.m ├── LinksViewController.h ├── LinksViewController.m ├── LogViewerController.h ├── LogViewerController.m ├── LogViewerHorizontalSplitView.h ├── LogViewerHorizontalSplitView.m ├── LogViewerModeBackgroundView.h ├── LogViewerModeBackgroundView.m ├── LogViewerPreviewItem.h ├── LogViewerPreviewItem.m ├── MethodSwizzle.h ├── MethodSwizzle.m ├── NSArrayAdditions.h ├── NSArrayAdditions.m ├── NSPreferences.h ├── Prefs_Chax.h ├── Prefs_Chax.m ├── StatusChangeController.h ├── StatusChangeController.m ├── TransfersViewController.h ├── TransfersViewController.m ├── URLTextView.h ├── URLTextView.m ├── UnifiedAccount_Provider.h ├── UnifiedAccount_Provider.m ├── UnifiedPeopleListController_Provider.h ├── UnifiedPeopleListController_Provider.m ├── helper_main.m ├── iChat5.h ├── main.m └── xibLocalizationPreprocessor.m ├── Spanish.lproj ├── ActivityWindow.strings ├── CameraSnapshot.strings ├── Donate.strings ├── Localizable.strings ├── LogViewer.strings └── Preferences.strings ├── de.lproj ├── ActivityWindow.strings ├── CameraSnapshot.strings ├── Donate.strings ├── Localizable.strings ├── LogViewer.strings └── Preferences.strings ├── dist ├── build_dmg.py ├── chax_dmg.sh ├── codesign.py └── update_versions.py ├── dsa_pub.pem ├── logviewer.css ├── menu-badge.tiff └── status-offline.tiff /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/.gitignore -------------------------------------------------------------------------------- /ActivityModel.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/ActivityModel.xcdatamodel/elements -------------------------------------------------------------------------------- /ActivityModel.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/ActivityModel.xcdatamodel/layout -------------------------------------------------------------------------------- /Chax.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Chax.icns -------------------------------------------------------------------------------- /Chax.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Chax.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChaxAddition-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/ChaxAddition-Info.plist -------------------------------------------------------------------------------- /ChaxAddition.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/ChaxAddition.r -------------------------------------------------------------------------------- /ChaxAddition.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/ChaxAddition.sdef -------------------------------------------------------------------------------- /ChaxAgentLib-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/ChaxAgentLib-Info.plist -------------------------------------------------------------------------------- /ChaxHelperApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/ChaxHelperApp-Info.plist -------------------------------------------------------------------------------- /ChaxInstaller-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/ChaxInstaller-Info.plist -------------------------------------------------------------------------------- /ChaxLib-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/ChaxLib-Info.plist -------------------------------------------------------------------------------- /Chax_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Chax_Prefix.pch -------------------------------------------------------------------------------- /Dutch.lproj/ActivityWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Dutch.lproj/ActivityWindow.strings -------------------------------------------------------------------------------- /Dutch.lproj/CameraSnapshot.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Dutch.lproj/CameraSnapshot.strings -------------------------------------------------------------------------------- /Dutch.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Dutch.lproj/Donate.strings -------------------------------------------------------------------------------- /Dutch.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Dutch.lproj/Localizable.strings -------------------------------------------------------------------------------- /Dutch.lproj/LogViewer.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Dutch.lproj/LogViewer.strings -------------------------------------------------------------------------------- /Dutch.lproj/Preferences.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Dutch.lproj/Preferences.strings -------------------------------------------------------------------------------- /English.lproj/ActivityWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/English.lproj/ActivityWindow.xib -------------------------------------------------------------------------------- /English.lproj/CameraSnapshot.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/English.lproj/CameraSnapshot.xib -------------------------------------------------------------------------------- /English.lproj/Donate.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/English.lproj/Donate.xib -------------------------------------------------------------------------------- /English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /English.lproj/LogViewer.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/English.lproj/LogViewer.xib -------------------------------------------------------------------------------- /English.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/English.lproj/MainMenu.xib -------------------------------------------------------------------------------- /English.lproj/Preferences.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/English.lproj/Preferences.xib -------------------------------------------------------------------------------- /Frameworks/Growl.framework/Growl: -------------------------------------------------------------------------------- 1 | Versions/Current/Growl -------------------------------------------------------------------------------- /Frameworks/Growl.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Frameworks/Growl.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Frameworks/Growl.framework/Versions/A/Growl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Growl.framework/Versions/A/Growl -------------------------------------------------------------------------------- /Frameworks/Growl.framework/Versions/A/Headers/Growl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Growl.framework/Versions/A/Headers/Growl.h -------------------------------------------------------------------------------- /Frameworks/Growl.framework/Versions/A/Headers/GrowlApplicationBridge-Carbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Growl.framework/Versions/A/Headers/GrowlApplicationBridge-Carbon.h -------------------------------------------------------------------------------- /Frameworks/Growl.framework/Versions/A/Headers/GrowlApplicationBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Growl.framework/Versions/A/Headers/GrowlApplicationBridge.h -------------------------------------------------------------------------------- /Frameworks/Growl.framework/Versions/A/Headers/GrowlDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Growl.framework/Versions/A/Headers/GrowlDefines.h -------------------------------------------------------------------------------- /Frameworks/Growl.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Growl.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Frameworks/Growl.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcast.h -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Headers/SUUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Headers/SUUpdater.h -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Headers/Sparkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Headers/Sparkle.h -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/License.txt -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/fr_CA.lproj: -------------------------------------------------------------------------------- 1 | fr.lproj -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/pt.lproj: -------------------------------------------------------------------------------- 1 | pt_BR.lproj -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/relaunch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/relaunch -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /Frameworks/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Frameworks/mach_inject_bundle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Frameworks/mach_inject_bundle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Frameworks/mach_inject_bundle.framework/Versions/A/Headers/mach_inject_bundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/mach_inject_bundle.framework/Versions/A/Headers/mach_inject_bundle.h -------------------------------------------------------------------------------- /Frameworks/mach_inject_bundle.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/mach_inject_bundle.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Frameworks/mach_inject_bundle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/mach_inject_bundle.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Frameworks/mach_inject_bundle.framework/Versions/A/Resources/mach_inject_bundle_stub.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/mach_inject_bundle.framework/Versions/A/Resources/mach_inject_bundle_stub.bundle/Contents/Info.plist -------------------------------------------------------------------------------- /Frameworks/mach_inject_bundle.framework/Versions/A/Resources/mach_inject_bundle_stub.bundle/Contents/MacOS/mach_inject_bundle_stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/mach_inject_bundle.framework/Versions/A/Resources/mach_inject_bundle_stub.bundle/Contents/MacOS/mach_inject_bundle_stub -------------------------------------------------------------------------------- /Frameworks/mach_inject_bundle.framework/Versions/A/Resources/mach_inject_bundle_stub.bundle/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/mach_inject_bundle.framework/Versions/A/Resources/mach_inject_bundle_stub.bundle/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Frameworks/mach_inject_bundle.framework/Versions/A/mach_inject_bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Frameworks/mach_inject_bundle.framework/Versions/A/mach_inject_bundle -------------------------------------------------------------------------------- /Frameworks/mach_inject_bundle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Frameworks/mach_inject_bundle.framework/mach_inject_bundle: -------------------------------------------------------------------------------- 1 | Versions/Current/mach_inject_bundle -------------------------------------------------------------------------------- /French.lproj/ActivityWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/French.lproj/ActivityWindow.strings -------------------------------------------------------------------------------- /French.lproj/CameraSnapshot.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/French.lproj/CameraSnapshot.strings -------------------------------------------------------------------------------- /French.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/French.lproj/Donate.strings -------------------------------------------------------------------------------- /French.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/French.lproj/Localizable.strings -------------------------------------------------------------------------------- /French.lproj/LogViewer.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/French.lproj/LogViewer.strings -------------------------------------------------------------------------------- /French.lproj/Preferences.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/French.lproj/Preferences.strings -------------------------------------------------------------------------------- /Installer/Dutch.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Installer/Dutch.lproj/Localizable.strings -------------------------------------------------------------------------------- /Installer/English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Installer/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /Installer/French.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Installer/French.lproj/Localizable.strings -------------------------------------------------------------------------------- /Installer/French.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Installer/French.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Installer/InstallChax.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Installer/InstallChax.icns -------------------------------------------------------------------------------- /Installer/InstallController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Installer/InstallController.h -------------------------------------------------------------------------------- /Installer/InstallController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Installer/InstallController.m -------------------------------------------------------------------------------- /Installer/Polish.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Installer/Polish.lproj/Localizable.strings -------------------------------------------------------------------------------- /Installer/Russian.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Installer/Russian.lproj/Localizable.strings -------------------------------------------------------------------------------- /Installer/Spanish.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Installer/Spanish.lproj/Localizable.strings -------------------------------------------------------------------------------- /Installer/Spanish.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Installer/Spanish.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Installer/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Installer/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Installer/de.lproj/MainMenu.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Installer/de.lproj/MainMenu.strings -------------------------------------------------------------------------------- /Polish.lproj/ActivityWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Polish.lproj/ActivityWindow.strings -------------------------------------------------------------------------------- /Polish.lproj/CameraSnapshot.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Polish.lproj/CameraSnapshot.strings -------------------------------------------------------------------------------- /Polish.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Polish.lproj/Donate.strings -------------------------------------------------------------------------------- /Polish.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Polish.lproj/Localizable.strings -------------------------------------------------------------------------------- /Polish.lproj/LogViewer.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Polish.lproj/LogViewer.strings -------------------------------------------------------------------------------- /Polish.lproj/Preferences.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Polish.lproj/Preferences.strings -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/README.txt -------------------------------------------------------------------------------- /RegexKitLite/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/RegexKitLite/License.rtf -------------------------------------------------------------------------------- /RegexKitLite/RegexKitLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/RegexKitLite/RegexKitLite.h -------------------------------------------------------------------------------- /RegexKitLite/RegexKitLite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/RegexKitLite/RegexKitLite.html -------------------------------------------------------------------------------- /RegexKitLite/RegexKitLite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/RegexKitLite/RegexKitLite.m -------------------------------------------------------------------------------- /RegexKitLite/examples/NSString-HexConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/RegexKitLite/examples/NSString-HexConversion.h -------------------------------------------------------------------------------- /RegexKitLite/examples/NSString-HexConversion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/RegexKitLite/examples/NSString-HexConversion.m -------------------------------------------------------------------------------- /RegexKitLite/examples/RKLMatchEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/RegexKitLite/examples/RKLMatchEnumerator.h -------------------------------------------------------------------------------- /RegexKitLite/examples/RKLMatchEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/RegexKitLite/examples/RKLMatchEnumerator.m -------------------------------------------------------------------------------- /RegexKitLite/examples/compiledRegexCache.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/RegexKitLite/examples/compiledRegexCache.d -------------------------------------------------------------------------------- /RegexKitLite/examples/for_in.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/RegexKitLite/examples/for_in.m -------------------------------------------------------------------------------- /RegexKitLite/examples/link_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/RegexKitLite/examples/link_example.m -------------------------------------------------------------------------------- /RegexKitLite/examples/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/RegexKitLite/examples/main.m -------------------------------------------------------------------------------- /RegexKitLite/examples/utf16ConversionCache.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/RegexKitLite/examples/utf16ConversionCache.d -------------------------------------------------------------------------------- /Russian.lproj/ActivityWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Russian.lproj/ActivityWindow.strings -------------------------------------------------------------------------------- /Russian.lproj/CameraSnapshot.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Russian.lproj/CameraSnapshot.strings -------------------------------------------------------------------------------- /Russian.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Russian.lproj/Donate.strings -------------------------------------------------------------------------------- /Russian.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Russian.lproj/Localizable.strings -------------------------------------------------------------------------------- /Russian.lproj/LogViewer.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Russian.lproj/LogViewer.strings -------------------------------------------------------------------------------- /Russian.lproj/Preferences.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Russian.lproj/Preferences.strings -------------------------------------------------------------------------------- /Sources/ActivityDateFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ActivityDateFormatter.h -------------------------------------------------------------------------------- /Sources/ActivityDateFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ActivityDateFormatter.m -------------------------------------------------------------------------------- /Sources/ActivityStatusCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ActivityStatusCell.h -------------------------------------------------------------------------------- /Sources/ActivityStatusCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ActivityStatusCell.m -------------------------------------------------------------------------------- /Sources/ActivityTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ActivityTableView.h -------------------------------------------------------------------------------- /Sources/ActivityTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ActivityTableView.m -------------------------------------------------------------------------------- /Sources/ActivityWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ActivityWindowController.h -------------------------------------------------------------------------------- /Sources/ActivityWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ActivityWindowController.m -------------------------------------------------------------------------------- /Sources/AutoAcceptPrefsWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/AutoAcceptPrefsWindowController.h -------------------------------------------------------------------------------- /Sources/AutoAcceptPrefsWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/AutoAcceptPrefsWindowController.m -------------------------------------------------------------------------------- /Sources/AutomaticSwizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/AutomaticSwizzle.h -------------------------------------------------------------------------------- /Sources/AutomaticSwizzle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/AutomaticSwizzle.m -------------------------------------------------------------------------------- /Sources/BundleUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/BundleUtilities.h -------------------------------------------------------------------------------- /Sources/BundleUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/BundleUtilities.m -------------------------------------------------------------------------------- /Sources/CameraSnapshotController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/CameraSnapshotController.h -------------------------------------------------------------------------------- /Sources/CameraSnapshotController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/CameraSnapshotController.m -------------------------------------------------------------------------------- /Sources/Chax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax.h -------------------------------------------------------------------------------- /Sources/Chax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax.m -------------------------------------------------------------------------------- /Sources/ChaxAddition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ChaxAddition.m -------------------------------------------------------------------------------- /Sources/ChaxAgentInjector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ChaxAgentInjector.m -------------------------------------------------------------------------------- /Sources/ChaxAgentPermissionRepair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ChaxAgentPermissionRepair.h -------------------------------------------------------------------------------- /Sources/ChaxAgentPermissionRepair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ChaxAgentPermissionRepair.m -------------------------------------------------------------------------------- /Sources/ChaxDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ChaxDefaults.h -------------------------------------------------------------------------------- /Sources/ChaxDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ChaxDefaults.m -------------------------------------------------------------------------------- /Sources/ChaxDockView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ChaxDockView.h -------------------------------------------------------------------------------- /Sources/ChaxDockView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ChaxDockView.m -------------------------------------------------------------------------------- /Sources/ChaxHelperAppUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ChaxHelperAppUtils.h -------------------------------------------------------------------------------- /Sources/ChaxHelperAppUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ChaxHelperAppUtils.m -------------------------------------------------------------------------------- /Sources/ChaxPrefsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ChaxPrefsView.h -------------------------------------------------------------------------------- /Sources/ChaxPrefsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ChaxPrefsView.m -------------------------------------------------------------------------------- /Sources/Chax_AIMServiceSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_AIMServiceSession.h -------------------------------------------------------------------------------- /Sources/Chax_AIMServiceSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_AIMServiceSession.m -------------------------------------------------------------------------------- /Sources/Chax_AVChatController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_AVChatController.h -------------------------------------------------------------------------------- /Sources/Chax_AVChatController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_AVChatController.m -------------------------------------------------------------------------------- /Sources/Chax_Account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_Account.h -------------------------------------------------------------------------------- /Sources/Chax_Account.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_Account.m -------------------------------------------------------------------------------- /Sources/Chax_ActionsControllerHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_ActionsControllerHandler.h -------------------------------------------------------------------------------- /Sources/Chax_ActionsControllerHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_ActionsControllerHandler.m -------------------------------------------------------------------------------- /Sources/Chax_ActiveChat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_ActiveChat.h -------------------------------------------------------------------------------- /Sources/Chax_ActiveChat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_ActiveChat.m -------------------------------------------------------------------------------- /Sources/Chax_Chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_Chat.h -------------------------------------------------------------------------------- /Sources/Chax_Chat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_Chat.m -------------------------------------------------------------------------------- /Sources/Chax_ChatDOMView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_ChatDOMView.h -------------------------------------------------------------------------------- /Sources/Chax_ChatDOMView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_ChatDOMView.m -------------------------------------------------------------------------------- /Sources/Chax_ChatInputLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_ChatInputLine.h -------------------------------------------------------------------------------- /Sources/Chax_ChatInputLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_ChatInputLine.m -------------------------------------------------------------------------------- /Sources/Chax_ChatWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_ChatWindowController.h -------------------------------------------------------------------------------- /Sources/Chax_ChatWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_ChatWindowController.m -------------------------------------------------------------------------------- /Sources/Chax_DaemonListenerStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_DaemonListenerStub.h -------------------------------------------------------------------------------- /Sources/Chax_DaemonListenerStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_DaemonListenerStub.m -------------------------------------------------------------------------------- /Sources/Chax_FezExtendedTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_FezExtendedTableView.h -------------------------------------------------------------------------------- /Sources/Chax_FezExtendedTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_FezExtendedTableView.m -------------------------------------------------------------------------------- /Sources/Chax_FezPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_FezPreferences.h -------------------------------------------------------------------------------- /Sources/Chax_FezPreferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_FezPreferences.m -------------------------------------------------------------------------------- /Sources/Chax_Fezz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_Fezz.h -------------------------------------------------------------------------------- /Sources/Chax_Fezz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_Fezz.m -------------------------------------------------------------------------------- /Sources/Chax_FileTransferCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_FileTransferCenter.h -------------------------------------------------------------------------------- /Sources/Chax_FileTransferCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_FileTransferCenter.m -------------------------------------------------------------------------------- /Sources/Chax_FileTransferManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_FileTransferManager.h -------------------------------------------------------------------------------- /Sources/Chax_FileTransferManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_FileTransferManager.m -------------------------------------------------------------------------------- /Sources/Chax_IMPeople.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_IMPeople.h -------------------------------------------------------------------------------- /Sources/Chax_IMPeople.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_IMPeople.m -------------------------------------------------------------------------------- /Sources/Chax_NSDockTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_NSDockTile.h -------------------------------------------------------------------------------- /Sources/Chax_NSDockTile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_NSDockTile.m -------------------------------------------------------------------------------- /Sources/Chax_Notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_Notifier.h -------------------------------------------------------------------------------- /Sources/Chax_Notifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_Notifier.m -------------------------------------------------------------------------------- /Sources/Chax_PeopleList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_PeopleList.h -------------------------------------------------------------------------------- /Sources/Chax_PeopleList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_PeopleList.m -------------------------------------------------------------------------------- /Sources/Chax_PeopleListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_PeopleListController.h -------------------------------------------------------------------------------- /Sources/Chax_PeopleListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_PeopleListController.m -------------------------------------------------------------------------------- /Sources/Chax_PeopleListControllerWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_PeopleListControllerWindow.h -------------------------------------------------------------------------------- /Sources/Chax_PeopleListControllerWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_PeopleListControllerWindow.m -------------------------------------------------------------------------------- /Sources/Chax_PeopleListItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_PeopleListItem.h -------------------------------------------------------------------------------- /Sources/Chax_PeopleListItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_PeopleListItem.m -------------------------------------------------------------------------------- /Sources/Chax_SecureWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_SecureWindow.h -------------------------------------------------------------------------------- /Sources/Chax_SecureWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_SecureWindow.m -------------------------------------------------------------------------------- /Sources/Chax_ServiceErrorDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_ServiceErrorDialog.h -------------------------------------------------------------------------------- /Sources/Chax_ServiceErrorDialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_ServiceErrorDialog.m -------------------------------------------------------------------------------- /Sources/Chax_SmileyGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_SmileyGrid.h -------------------------------------------------------------------------------- /Sources/Chax_SmileyGrid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_SmileyGrid.m -------------------------------------------------------------------------------- /Sources/Chax_SmileyPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_SmileyPicker.h -------------------------------------------------------------------------------- /Sources/Chax_SmileyPicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_SmileyPicker.m -------------------------------------------------------------------------------- /Sources/Chax_StatusController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_StatusController.h -------------------------------------------------------------------------------- /Sources/Chax_StatusController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_StatusController.m -------------------------------------------------------------------------------- /Sources/Chax_SuperToAIMParserContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_SuperToAIMParserContext.h -------------------------------------------------------------------------------- /Sources/Chax_SuperToAIMParserContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Chax_SuperToAIMParserContext.m -------------------------------------------------------------------------------- /Sources/ConversationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ConversationViewController.h -------------------------------------------------------------------------------- /Sources/ConversationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/ConversationViewController.m -------------------------------------------------------------------------------- /Sources/DMLocalizedNibBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/DMLocalizedNibBundle.h -------------------------------------------------------------------------------- /Sources/DMLocalizedNibBundle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/DMLocalizedNibBundle.m -------------------------------------------------------------------------------- /Sources/DockIconController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/DockIconController.h -------------------------------------------------------------------------------- /Sources/DockIconController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/DockIconController.m -------------------------------------------------------------------------------- /Sources/DonateWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/DonateWindowController.h -------------------------------------------------------------------------------- /Sources/DonateWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/DonateWindowController.m -------------------------------------------------------------------------------- /Sources/IMCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/IMCore.h -------------------------------------------------------------------------------- /Sources/IMFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/IMFoundation.h -------------------------------------------------------------------------------- /Sources/IMRenderingFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/IMRenderingFoundation.h -------------------------------------------------------------------------------- /Sources/LinkButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/LinkButtonCell.h -------------------------------------------------------------------------------- /Sources/LinkButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/LinkButtonCell.m -------------------------------------------------------------------------------- /Sources/LinksViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/LinksViewController.h -------------------------------------------------------------------------------- /Sources/LinksViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/LinksViewController.m -------------------------------------------------------------------------------- /Sources/LogViewerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/LogViewerController.h -------------------------------------------------------------------------------- /Sources/LogViewerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/LogViewerController.m -------------------------------------------------------------------------------- /Sources/LogViewerHorizontalSplitView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/LogViewerHorizontalSplitView.h -------------------------------------------------------------------------------- /Sources/LogViewerHorizontalSplitView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/LogViewerHorizontalSplitView.m -------------------------------------------------------------------------------- /Sources/LogViewerModeBackgroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/LogViewerModeBackgroundView.h -------------------------------------------------------------------------------- /Sources/LogViewerModeBackgroundView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/LogViewerModeBackgroundView.m -------------------------------------------------------------------------------- /Sources/LogViewerPreviewItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/LogViewerPreviewItem.h -------------------------------------------------------------------------------- /Sources/LogViewerPreviewItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/LogViewerPreviewItem.m -------------------------------------------------------------------------------- /Sources/MethodSwizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/MethodSwizzle.h -------------------------------------------------------------------------------- /Sources/MethodSwizzle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/MethodSwizzle.m -------------------------------------------------------------------------------- /Sources/NSArrayAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/NSArrayAdditions.h -------------------------------------------------------------------------------- /Sources/NSArrayAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/NSArrayAdditions.m -------------------------------------------------------------------------------- /Sources/NSPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/NSPreferences.h -------------------------------------------------------------------------------- /Sources/Prefs_Chax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Prefs_Chax.h -------------------------------------------------------------------------------- /Sources/Prefs_Chax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/Prefs_Chax.m -------------------------------------------------------------------------------- /Sources/StatusChangeController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/StatusChangeController.h -------------------------------------------------------------------------------- /Sources/StatusChangeController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/StatusChangeController.m -------------------------------------------------------------------------------- /Sources/TransfersViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/TransfersViewController.h -------------------------------------------------------------------------------- /Sources/TransfersViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/TransfersViewController.m -------------------------------------------------------------------------------- /Sources/URLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/URLTextView.h -------------------------------------------------------------------------------- /Sources/URLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/URLTextView.m -------------------------------------------------------------------------------- /Sources/UnifiedAccount_Provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/UnifiedAccount_Provider.h -------------------------------------------------------------------------------- /Sources/UnifiedAccount_Provider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/UnifiedAccount_Provider.m -------------------------------------------------------------------------------- /Sources/UnifiedPeopleListController_Provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/UnifiedPeopleListController_Provider.h -------------------------------------------------------------------------------- /Sources/UnifiedPeopleListController_Provider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/UnifiedPeopleListController_Provider.m -------------------------------------------------------------------------------- /Sources/helper_main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/helper_main.m -------------------------------------------------------------------------------- /Sources/iChat5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/iChat5.h -------------------------------------------------------------------------------- /Sources/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/main.m -------------------------------------------------------------------------------- /Sources/xibLocalizationPreprocessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Sources/xibLocalizationPreprocessor.m -------------------------------------------------------------------------------- /Spanish.lproj/ActivityWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Spanish.lproj/ActivityWindow.strings -------------------------------------------------------------------------------- /Spanish.lproj/CameraSnapshot.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Spanish.lproj/CameraSnapshot.strings -------------------------------------------------------------------------------- /Spanish.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Spanish.lproj/Donate.strings -------------------------------------------------------------------------------- /Spanish.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Spanish.lproj/Localizable.strings -------------------------------------------------------------------------------- /Spanish.lproj/LogViewer.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Spanish.lproj/LogViewer.strings -------------------------------------------------------------------------------- /Spanish.lproj/Preferences.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/Spanish.lproj/Preferences.strings -------------------------------------------------------------------------------- /de.lproj/ActivityWindow.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/de.lproj/ActivityWindow.strings -------------------------------------------------------------------------------- /de.lproj/CameraSnapshot.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/de.lproj/CameraSnapshot.strings -------------------------------------------------------------------------------- /de.lproj/Donate.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/de.lproj/Donate.strings -------------------------------------------------------------------------------- /de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /de.lproj/LogViewer.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/de.lproj/LogViewer.strings -------------------------------------------------------------------------------- /de.lproj/Preferences.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/de.lproj/Preferences.strings -------------------------------------------------------------------------------- /dist/build_dmg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/dist/build_dmg.py -------------------------------------------------------------------------------- /dist/chax_dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/dist/chax_dmg.sh -------------------------------------------------------------------------------- /dist/codesign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/dist/codesign.py -------------------------------------------------------------------------------- /dist/update_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/dist/update_versions.py -------------------------------------------------------------------------------- /dsa_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/dsa_pub.pem -------------------------------------------------------------------------------- /logviewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/logviewer.css -------------------------------------------------------------------------------- /menu-badge.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/menu-badge.tiff -------------------------------------------------------------------------------- /status-offline.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksuther/Chax/HEAD/status-offline.tiff --------------------------------------------------------------------------------