├── .gitignore ├── .jazzy.yaml ├── LICENSE.md ├── Makefile ├── README.md ├── Resources ├── Black_TypeStatus.png ├── Black_TypeStatus@2x.png ├── Black_TypeStatus@3x.png ├── Black_TypeStatusRead.png ├── Black_TypeStatusRead@2x.png ├── Black_TypeStatusRead@3x.png ├── LockScreen_TypeStatus.png ├── LockScreen_TypeStatus@2x.png ├── LockScreen_TypeStatus@3x.png ├── LockScreen_TypeStatusRead.png ├── LockScreen_TypeStatusRead@2x.png └── LockScreen_TypeStatusRead@3x.png ├── TypeStatus.plist ├── TypeStatus.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── TypeStatusClient.plist ├── TypeStatusMessages.plist ├── TypeStatusRelay.plist ├── api ├── HBTSIMessageProvider.h ├── HBTSIMessageProvider.x ├── HBTSNotification+Private.h ├── HBTSNotification.h ├── HBTSNotification.x ├── HBTSPreferences.h ├── HBTSPreferences.m ├── HBTSProvider.h ├── HBTSProvider.x ├── HBTSProviderController+Private.h ├── HBTSProviderController.h ├── HBTSProviderController.m ├── HBTSStatusBarAlertServer.h ├── HBTSStatusBarAlertServer.m ├── Makefile ├── Resources │ ├── Info.plist │ ├── ar.lproj │ │ └── Localizable.strings │ ├── ca.lproj │ │ └── Localizable.strings │ ├── cs.lproj │ │ └── Localizable.strings │ ├── da.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── el.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── en_AU.lproj │ │ └── Localizable.strings │ ├── en_GB.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── es_MX.lproj │ │ └── Localizable.strings │ ├── fi.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── fr_CA.lproj │ │ └── Localizable.strings │ ├── he.lproj │ │ └── Localizable.strings │ ├── hi.lproj │ │ └── Localizable.strings │ ├── hr.lproj │ │ └── Localizable.strings │ ├── hu.lproj │ │ └── Localizable.strings │ ├── id.lproj │ │ └── Localizable.strings │ ├── it.lproj │ │ └── Localizable.strings │ ├── ja.lproj │ │ └── Localizable.strings │ ├── ko.lproj │ │ └── Localizable.strings │ ├── ms.lproj │ │ └── Localizable.strings │ ├── nb.lproj │ │ └── Localizable.strings │ ├── nl.lproj │ │ └── Localizable.strings │ ├── pl.lproj │ │ └── Localizable.strings │ ├── pt.lproj │ │ └── Localizable.strings │ ├── pt_PT.lproj │ │ └── Localizable.strings │ ├── ro.lproj │ │ └── Localizable.strings │ ├── ru.lproj │ │ └── Localizable.strings │ ├── sk.lproj │ │ └── Localizable.strings │ ├── sv.lproj │ │ └── Localizable.strings │ ├── th.lproj │ │ └── Localizable.strings │ ├── tr.lproj │ │ └── Localizable.strings │ ├── uk.lproj │ │ └── Localizable.strings │ ├── vi.lproj │ │ └── Localizable.strings │ ├── zh_CN.lproj │ │ └── Localizable.strings │ ├── zh_HK.lproj │ │ └── Localizable.strings │ └── zh_TW.lproj │ │ └── Localizable.strings └── TypeStatusProvider.h ├── client ├── Client.x ├── HBTSStatusBarAlertController.h ├── HBTSStatusBarAlertController.x ├── HBTSStatusBarContentItemView.h ├── HBTSStatusBarContentItemView.x ├── HBTSStatusBarForegroundView.h ├── HBTSStatusBarForegroundView.x ├── HBTSStatusBarIconItemView.h └── HBTSStatusBarIconItemView.x ├── control ├── docs ├── Classes.html ├── Classes │ ├── HBTSNotification.html │ ├── HBTSProvider.html │ └── HBTSProviderController.html ├── Constants.html ├── Enums.html ├── Enums │ └── HBTSMessageType.html ├── css │ ├── highlight.css │ └── jazzy.css ├── docsets │ ├── TypeStatus.docset │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Documents │ │ │ ├── Classes.html │ │ │ ├── Classes │ │ │ │ ├── HBTSNotification.html │ │ │ │ ├── HBTSProvider.html │ │ │ │ └── HBTSProviderController.html │ │ │ ├── Constants.html │ │ │ ├── Enums.html │ │ │ ├── Enums │ │ │ │ └── HBTSMessageType.html │ │ │ ├── css │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── img │ │ │ │ ├── carat.png │ │ │ │ ├── dash.png │ │ │ │ ├── gh.png │ │ │ │ └── spinner.gif │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jazzy.js │ │ │ │ ├── jazzy.search.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── lunr.min.js │ │ │ │ └── typeahead.jquery.js │ │ │ └── search.json │ │ │ └── docSet.dsidx │ ├── TypeStatus.tgz │ └── TypeStatus.xml ├── img │ ├── carat.png │ ├── dash.png │ ├── gh.png │ └── spinner.gif ├── index.html ├── js │ ├── jazzy.js │ ├── jazzy.search.js │ ├── jquery.min.js │ ├── lunr.min.js │ └── typeahead.jquery.js └── search.json ├── global ├── Global.h ├── HBTSContactHelper.h ├── HBTSContactHelper.x ├── HBTSConversationPreferences.h ├── HBTSConversationPreferences.x ├── HBTSPreferences.h ├── HBTSPreferences.m └── HBTSStatusBarAlertController.h ├── messages ├── Conversation.x ├── DetailsController.x ├── HBTSConversationPreferences.x ├── HBTSSwitchTableViewCell.h ├── HBTSSwitchTableViewCell.m └── TranscriptRecipientsController.x ├── postinst ├── postrm ├── prefs ├── HBTSAboutListController.h ├── HBTSAboutListController.m ├── HBTSAlertsListController.h ├── HBTSAlertsListController.x ├── HBTSContactHelper.x ├── HBTSConversationPreferences.x ├── HBTSMessagesListController.h ├── HBTSMessagesListController.x ├── HBTSMessagesPersonListController.h ├── HBTSMessagesPersonListController.m ├── HBTSPersonTableCell.h ├── HBTSPersonTableCell.m ├── HBTSRootListController.h ├── HBTSRootListController.m ├── Makefile ├── Resources │ ├── About.plist │ ├── Alerts.plist │ ├── Info.plist │ ├── Messages.plist │ ├── MessagesPerson.plist │ ├── Root.plist │ ├── ar.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── ca.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── cs.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── da.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── de.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── el.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── en.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── en_AU.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── en_GB.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── es.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── es_MX.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── fi.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── fr.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── fr_CA.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── he.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── hi.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── hr.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── hu.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── icon.png │ ├── icon@2x.png │ ├── icon@3x.png │ ├── id.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── it.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── ja.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── ko.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── ms.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── nb.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── nl.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── pl.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── pt.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── pt_PT.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── ro.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── ru.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── sk.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── sv.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── th.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── tr.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── typestatusplus.png │ ├── typestatusplus@2x.png │ ├── uk.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── vi.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── zh_CN.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ ├── zh_HK.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings │ └── zh_TW.lproj │ │ ├── About.strings │ │ ├── Alerts.strings │ │ ├── Messages.strings │ │ ├── MessagesPerson.strings │ │ └── Root.strings └── entry.plist ├── preinst ├── relay ├── Conversation.x ├── HBTSConversationPreferences.x ├── HBTSPreferences.m ├── IMAgentRelay.x └── ReadReceiptMirror.x └── springboard ├── HBTSContactHelper.x ├── HBTSIMessageProvider+SpringBoard.h ├── HBTSIMessageProvider+SpringBoard.m ├── HBTSStatusBarIconController.h ├── HBTSStatusBarIconController.x ├── HomeBar.x └── SpringBoard.x /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .theos 3 | packages 4 | -------------------------------------------------------------------------------- /.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/.jazzy.yaml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Black_TypeStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/Resources/Black_TypeStatus.png -------------------------------------------------------------------------------- /Resources/Black_TypeStatus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/Resources/Black_TypeStatus@2x.png -------------------------------------------------------------------------------- /Resources/Black_TypeStatus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/Resources/Black_TypeStatus@3x.png -------------------------------------------------------------------------------- /Resources/Black_TypeStatusRead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/Resources/Black_TypeStatusRead.png -------------------------------------------------------------------------------- /Resources/Black_TypeStatusRead@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/Resources/Black_TypeStatusRead@2x.png -------------------------------------------------------------------------------- /Resources/Black_TypeStatusRead@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/Resources/Black_TypeStatusRead@3x.png -------------------------------------------------------------------------------- /Resources/LockScreen_TypeStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/Resources/LockScreen_TypeStatus.png -------------------------------------------------------------------------------- /Resources/LockScreen_TypeStatus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/Resources/LockScreen_TypeStatus@2x.png -------------------------------------------------------------------------------- /Resources/LockScreen_TypeStatus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/Resources/LockScreen_TypeStatus@3x.png -------------------------------------------------------------------------------- /Resources/LockScreen_TypeStatusRead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/Resources/LockScreen_TypeStatusRead.png -------------------------------------------------------------------------------- /Resources/LockScreen_TypeStatusRead@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/Resources/LockScreen_TypeStatusRead@2x.png -------------------------------------------------------------------------------- /Resources/LockScreen_TypeStatusRead@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/Resources/LockScreen_TypeStatusRead@3x.png -------------------------------------------------------------------------------- /TypeStatus.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/TypeStatus.plist -------------------------------------------------------------------------------- /TypeStatus.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/TypeStatus.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TypeStatus.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/TypeStatus.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TypeStatusClient.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/TypeStatusClient.plist -------------------------------------------------------------------------------- /TypeStatusMessages.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/TypeStatusMessages.plist -------------------------------------------------------------------------------- /TypeStatusRelay.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/TypeStatusRelay.plist -------------------------------------------------------------------------------- /api/HBTSIMessageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/HBTSIMessageProvider.h -------------------------------------------------------------------------------- /api/HBTSIMessageProvider.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/HBTSIMessageProvider.x -------------------------------------------------------------------------------- /api/HBTSNotification+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/HBTSNotification+Private.h -------------------------------------------------------------------------------- /api/HBTSNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/HBTSNotification.h -------------------------------------------------------------------------------- /api/HBTSNotification.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/HBTSNotification.x -------------------------------------------------------------------------------- /api/HBTSPreferences.h: -------------------------------------------------------------------------------- 1 | ../global/HBTSPreferences.h -------------------------------------------------------------------------------- /api/HBTSPreferences.m: -------------------------------------------------------------------------------- 1 | ../global/HBTSPreferences.m -------------------------------------------------------------------------------- /api/HBTSProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/HBTSProvider.h -------------------------------------------------------------------------------- /api/HBTSProvider.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/HBTSProvider.x -------------------------------------------------------------------------------- /api/HBTSProviderController+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/HBTSProviderController+Private.h -------------------------------------------------------------------------------- /api/HBTSProviderController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/HBTSProviderController.h -------------------------------------------------------------------------------- /api/HBTSProviderController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/HBTSProviderController.m -------------------------------------------------------------------------------- /api/HBTSStatusBarAlertServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/HBTSStatusBarAlertServer.h -------------------------------------------------------------------------------- /api/HBTSStatusBarAlertServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/HBTSStatusBarAlertServer.m -------------------------------------------------------------------------------- /api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Makefile -------------------------------------------------------------------------------- /api/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/Info.plist -------------------------------------------------------------------------------- /api/Resources/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/en_AU.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/en_AU.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/en_GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/en_GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/es_MX.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/es_MX.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/fr_CA.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/fr_CA.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/hr.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/ms.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/nb.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/nb.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/pt_PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/pt_PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/zh_CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/zh_CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/zh_HK.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/zh_HK.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/Resources/zh_TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/Resources/zh_TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /api/TypeStatusProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/api/TypeStatusProvider.h -------------------------------------------------------------------------------- /client/Client.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/client/Client.x -------------------------------------------------------------------------------- /client/HBTSStatusBarAlertController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/client/HBTSStatusBarAlertController.h -------------------------------------------------------------------------------- /client/HBTSStatusBarAlertController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/client/HBTSStatusBarAlertController.x -------------------------------------------------------------------------------- /client/HBTSStatusBarContentItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/client/HBTSStatusBarContentItemView.h -------------------------------------------------------------------------------- /client/HBTSStatusBarContentItemView.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/client/HBTSStatusBarContentItemView.x -------------------------------------------------------------------------------- /client/HBTSStatusBarForegroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/client/HBTSStatusBarForegroundView.h -------------------------------------------------------------------------------- /client/HBTSStatusBarForegroundView.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/client/HBTSStatusBarForegroundView.x -------------------------------------------------------------------------------- /client/HBTSStatusBarIconItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/client/HBTSStatusBarIconItemView.h -------------------------------------------------------------------------------- /client/HBTSStatusBarIconItemView.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/client/HBTSStatusBarIconItemView.x -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/control -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/HBTSNotification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/Classes/HBTSNotification.html -------------------------------------------------------------------------------- /docs/Classes/HBTSProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/Classes/HBTSProvider.html -------------------------------------------------------------------------------- /docs/Classes/HBTSProviderController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/Classes/HBTSProviderController.html -------------------------------------------------------------------------------- /docs/Constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/Constants.html -------------------------------------------------------------------------------- /docs/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/Enums.html -------------------------------------------------------------------------------- /docs/Enums/HBTSMessageType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/Enums/HBTSMessageType.html -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/Classes/HBTSNotification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/Classes/HBTSNotification.html -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/Classes/HBTSProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/Classes/HBTSProvider.html -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/Classes/HBTSProviderController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/Classes/HBTSProviderController.html -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/Constants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/Constants.html -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/Enums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/Enums.html -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/Enums/HBTSMessageType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/Enums/HBTSMessageType.html -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/img/spinner.gif -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/js/lunr.min.js -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/Documents/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/Documents/search.json -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.tgz -------------------------------------------------------------------------------- /docs/docsets/TypeStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/docsets/TypeStatus.xml -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/img/spinner.gif -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jazzy.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/js/jazzy.search.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/js/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/js/lunr.min.js -------------------------------------------------------------------------------- /docs/js/typeahead.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/js/typeahead.jquery.js -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/docs/search.json -------------------------------------------------------------------------------- /global/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/global/Global.h -------------------------------------------------------------------------------- /global/HBTSContactHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/global/HBTSContactHelper.h -------------------------------------------------------------------------------- /global/HBTSContactHelper.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/global/HBTSContactHelper.x -------------------------------------------------------------------------------- /global/HBTSConversationPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/global/HBTSConversationPreferences.h -------------------------------------------------------------------------------- /global/HBTSConversationPreferences.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/global/HBTSConversationPreferences.x -------------------------------------------------------------------------------- /global/HBTSPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/global/HBTSPreferences.h -------------------------------------------------------------------------------- /global/HBTSPreferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/global/HBTSPreferences.m -------------------------------------------------------------------------------- /global/HBTSStatusBarAlertController.h: -------------------------------------------------------------------------------- 1 | ../client/HBTSStatusBarAlertController.h -------------------------------------------------------------------------------- /messages/Conversation.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/messages/Conversation.x -------------------------------------------------------------------------------- /messages/DetailsController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/messages/DetailsController.x -------------------------------------------------------------------------------- /messages/HBTSConversationPreferences.x: -------------------------------------------------------------------------------- 1 | ../global/HBTSConversationPreferences.x -------------------------------------------------------------------------------- /messages/HBTSSwitchTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/messages/HBTSSwitchTableViewCell.h -------------------------------------------------------------------------------- /messages/HBTSSwitchTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/messages/HBTSSwitchTableViewCell.m -------------------------------------------------------------------------------- /messages/TranscriptRecipientsController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/messages/TranscriptRecipientsController.x -------------------------------------------------------------------------------- /postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/postinst -------------------------------------------------------------------------------- /postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/postrm -------------------------------------------------------------------------------- /prefs/HBTSAboutListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/HBTSAboutListController.h -------------------------------------------------------------------------------- /prefs/HBTSAboutListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/HBTSAboutListController.m -------------------------------------------------------------------------------- /prefs/HBTSAlertsListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/HBTSAlertsListController.h -------------------------------------------------------------------------------- /prefs/HBTSAlertsListController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/HBTSAlertsListController.x -------------------------------------------------------------------------------- /prefs/HBTSContactHelper.x: -------------------------------------------------------------------------------- 1 | ../global/HBTSContactHelper.x -------------------------------------------------------------------------------- /prefs/HBTSConversationPreferences.x: -------------------------------------------------------------------------------- 1 | ../global/HBTSConversationPreferences.x -------------------------------------------------------------------------------- /prefs/HBTSMessagesListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/HBTSMessagesListController.h -------------------------------------------------------------------------------- /prefs/HBTSMessagesListController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/HBTSMessagesListController.x -------------------------------------------------------------------------------- /prefs/HBTSMessagesPersonListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/HBTSMessagesPersonListController.h -------------------------------------------------------------------------------- /prefs/HBTSMessagesPersonListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/HBTSMessagesPersonListController.m -------------------------------------------------------------------------------- /prefs/HBTSPersonTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/HBTSPersonTableCell.h -------------------------------------------------------------------------------- /prefs/HBTSPersonTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/HBTSPersonTableCell.m -------------------------------------------------------------------------------- /prefs/HBTSRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/HBTSRootListController.h -------------------------------------------------------------------------------- /prefs/HBTSRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/HBTSRootListController.m -------------------------------------------------------------------------------- /prefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Makefile -------------------------------------------------------------------------------- /prefs/Resources/About.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/About.plist -------------------------------------------------------------------------------- /prefs/Resources/Alerts.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/Alerts.plist -------------------------------------------------------------------------------- /prefs/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/Info.plist -------------------------------------------------------------------------------- /prefs/Resources/Messages.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/Messages.plist -------------------------------------------------------------------------------- /prefs/Resources/MessagesPerson.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/MessagesPerson.plist -------------------------------------------------------------------------------- /prefs/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/Root.plist -------------------------------------------------------------------------------- /prefs/Resources/ar.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ar.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/ar.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ar.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/ar.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ar.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/ar.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/ar.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ar.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/ca.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ca.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/ca.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ca.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/ca.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ca.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/ca.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/ca.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ca.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/cs.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/cs.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/cs.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/cs.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/cs.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/cs.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/cs.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/cs.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/cs.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/da.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/da.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/da.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/da.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/da.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/da.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/da.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/da.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/da.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/de.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/de.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/de.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/de.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/de.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/de.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/de.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/de.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/de.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/el.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/el.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/el.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/el.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/el.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/el.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/el.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/el.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/el.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/en.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/en.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/en.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/en.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/en.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/en.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/en.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/en.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/en_AU.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/en_AU.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/en_AU.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/en_AU.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/en_AU.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/en_AU.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/en_AU.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/en_AU.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/en_AU.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/en_GB.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/en_GB.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/en_GB.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/en_GB.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/en_GB.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/en_GB.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/en_GB.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/en_GB.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/en_GB.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/es.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/es.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/es.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/es.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/es.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/es.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/es.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/es.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/es.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/es_MX.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/es_MX.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/es_MX.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/es_MX.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/es_MX.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/es_MX.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/es_MX.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/es_MX.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/es_MX.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/fi.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/fi.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/fi.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/fi.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/fi.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/fi.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/fi.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/fi.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/fi.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/fr.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/fr.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/fr.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/fr.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/fr.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/fr.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/fr.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/fr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/fr.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/fr_CA.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/fr_CA.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/fr_CA.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/fr_CA.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/fr_CA.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/fr_CA.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/fr_CA.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/fr_CA.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/fr_CA.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/he.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/he.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/he.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/he.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/he.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/he.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/he.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/he.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/he.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/hi.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/hi.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/hi.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/hi.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/hi.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/hi.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/hi.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/hi.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/hi.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/hr.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/hr.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/hr.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/hr.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/hr.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/hr.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/hr.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/hr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/hr.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/hu.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/hu.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/hu.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/hu.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/hu.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/hu.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/hu.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/hu.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/hu.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/icon.png -------------------------------------------------------------------------------- /prefs/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/icon@2x.png -------------------------------------------------------------------------------- /prefs/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/icon@3x.png -------------------------------------------------------------------------------- /prefs/Resources/id.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/id.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/id.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/id.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/id.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/id.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/id.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/id.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/id.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/it.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/it.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/it.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/it.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/it.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/it.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/it.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/it.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/it.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/ja.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ja.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/ja.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ja.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/ja.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ja.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/ja.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/ja.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ja.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/ko.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ko.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/ko.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ko.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/ko.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ko.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/ko.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/ko.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ko.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/ms.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ms.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/ms.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ms.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/ms.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ms.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/ms.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/ms.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ms.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/nb.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/nb.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/nb.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/nb.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/nb.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/nb.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/nb.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/nb.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/nb.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/nl.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/nl.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/nl.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/nl.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/nl.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/nl.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/nl.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/nl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/nl.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/pl.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/pl.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/pl.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/pl.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/pl.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/pl.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/pl.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/pl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/pl.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/pt.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/pt.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/pt.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/pt.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/pt.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/pt.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/pt.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/pt.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/pt.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/pt_PT.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/pt_PT.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/pt_PT.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/pt_PT.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/pt_PT.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/pt_PT.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/pt_PT.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/pt_PT.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/pt_PT.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/ro.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ro.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/ro.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ro.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/ro.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ro.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/ro.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/ro.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ro.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/ru.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ru.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/ru.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ru.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/ru.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ru.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/ru.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/ru.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/ru.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/sk.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/sk.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/sk.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/sk.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/sk.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/sk.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/sk.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/sk.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/sk.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/sv.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/sv.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/sv.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/sv.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/sv.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/sv.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/sv.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/sv.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/sv.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/th.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/th.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/th.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/th.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/th.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/th.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/th.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/th.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/th.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/tr.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/tr.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/tr.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/tr.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/tr.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/tr.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/tr.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/tr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/tr.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/typestatusplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/typestatusplus.png -------------------------------------------------------------------------------- /prefs/Resources/typestatusplus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/typestatusplus@2x.png -------------------------------------------------------------------------------- /prefs/Resources/uk.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/uk.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/uk.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/uk.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/uk.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/uk.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/uk.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/uk.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/uk.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/vi.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/vi.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/vi.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/vi.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/vi.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/vi.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/vi.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/vi.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/vi.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_CN.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/zh_CN.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_CN.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/zh_CN.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_CN.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/zh_CN.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_CN.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_CN.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/zh_CN.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_HK.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/zh_HK.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_HK.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/zh_HK.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_HK.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/zh_HK.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_HK.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_HK.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/zh_HK.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_TW.lproj/About.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/zh_TW.lproj/About.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_TW.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/zh_TW.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_TW.lproj/Messages.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/zh_TW.lproj/Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_TW.lproj/MessagesPerson.strings: -------------------------------------------------------------------------------- 1 | Messages.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_TW.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/Resources/zh_TW.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/prefs/entry.plist -------------------------------------------------------------------------------- /preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/preinst -------------------------------------------------------------------------------- /relay/Conversation.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/relay/Conversation.x -------------------------------------------------------------------------------- /relay/HBTSConversationPreferences.x: -------------------------------------------------------------------------------- 1 | ../global/HBTSConversationPreferences.x -------------------------------------------------------------------------------- /relay/HBTSPreferences.m: -------------------------------------------------------------------------------- 1 | ../global/HBTSPreferences.m -------------------------------------------------------------------------------- /relay/IMAgentRelay.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/relay/IMAgentRelay.x -------------------------------------------------------------------------------- /relay/ReadReceiptMirror.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/relay/ReadReceiptMirror.x -------------------------------------------------------------------------------- /springboard/HBTSContactHelper.x: -------------------------------------------------------------------------------- 1 | ../global/HBTSContactHelper.x -------------------------------------------------------------------------------- /springboard/HBTSIMessageProvider+SpringBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/springboard/HBTSIMessageProvider+SpringBoard.h -------------------------------------------------------------------------------- /springboard/HBTSIMessageProvider+SpringBoard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/springboard/HBTSIMessageProvider+SpringBoard.m -------------------------------------------------------------------------------- /springboard/HBTSStatusBarIconController.h: -------------------------------------------------------------------------------- 1 | @interface HBTSStatusBarIconController : NSObject 2 | 3 | @end 4 | -------------------------------------------------------------------------------- /springboard/HBTSStatusBarIconController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/springboard/HBTSStatusBarIconController.x -------------------------------------------------------------------------------- /springboard/HomeBar.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/springboard/HomeBar.x -------------------------------------------------------------------------------- /springboard/SpringBoard.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus/HEAD/springboard/SpringBoard.x --------------------------------------------------------------------------------