├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── TypeStatusPlus.plist ├── TypeStatusPlusAssertiond.plist ├── TypeStatusPlusClient.plist ├── TypeStatusPlusMessages.plist ├── app ├── Makefile ├── Resources │ ├── AppIcon29x29.png │ ├── AppIcon29x29@2x.png │ ├── AppIcon29x29@3x.png │ ├── AppIcon40x40.png │ ├── AppIcon40x40@2x.png │ ├── AppIcon40x40@3x.png │ ├── AppIcon60x60.png │ ├── AppIcon60x60@2x.png │ ├── AppIcon60x60@3x.png │ └── Info.plist └── main.m ├── assertionhax └── Tweak.x ├── client ├── Client.x ├── HBTSPlusClient.h ├── HBTSPlusClient.x ├── HBTSPlusPreferences.h ├── HBTSPlusPreferences.x ├── HBTSProvider+TypeStatusPlusAdditions.h ├── HBTSProvider+TypeStatusPlusAdditions.x ├── HBTSStatusBarUnreadItemView.h └── HBTSStatusBarUnreadItemView.x ├── global ├── Global.h ├── HBTSPlusPreferences.h └── HBTSProvider+TypeStatusPlusAdditions.h ├── layout ├── DEBIAN │ └── control ├── Library │ └── TypeStatus │ │ └── Providers │ │ ├── Messenger.bundle │ │ ├── Info.plist │ │ └── Messenger │ │ ├── Music.bundle │ │ ├── Info.plist │ │ └── Music │ │ ├── Snapchat.bundle │ │ ├── Info.plist │ │ ├── Snapchat │ │ ├── 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 │ │ ├── nl.lproj │ │ │ └── Localizable.strings │ │ ├── no.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 │ │ ├── uk.lproj │ │ │ └── Localizable.strings │ │ ├── vi.lproj │ │ │ └── Localizable.strings │ │ ├── zh_CN.lproj │ │ │ └── Localizable.strings │ │ └── zh_HK.lproj │ │ │ └── Localizable.strings │ │ ├── Telegram.bundle │ │ ├── Info.plist │ │ └── Telegram │ │ └── WhatsApp.bundle │ │ ├── Info.plist │ │ └── WhatsApp └── System │ └── Library │ └── Frameworks │ └── UIKit.framework │ ├── Black_TypeStatusPlusMessenger.png │ ├── Black_TypeStatusPlusMessenger@2x.png │ ├── Black_TypeStatusPlusMessenger@3x.png │ ├── Black_TypeStatusPlusMusic.png │ ├── Black_TypeStatusPlusMusic@2x.png │ ├── Black_TypeStatusPlusMusic@3x.png │ ├── Black_TypeStatusPlusSnapchat.png │ ├── Black_TypeStatusPlusSnapchat@2x.png │ ├── Black_TypeStatusPlusSnapchat@3x.png │ ├── Black_TypeStatusPlusTelegram.png │ ├── Black_TypeStatusPlusTelegram@2x.png │ ├── Black_TypeStatusPlusTelegram@3x.png │ ├── Black_TypeStatusPlusWhatsApp.png │ ├── Black_TypeStatusPlusWhatsApp@2x.png │ ├── Black_TypeStatusPlusWhatsApp@3x.png │ ├── LockScreen_TypeStatusPlusMessenger.png │ ├── LockScreen_TypeStatusPlusMessenger@2x.png │ ├── LockScreen_TypeStatusPlusMessenger@3x.png │ ├── LockScreen_TypeStatusPlusMusic.png │ ├── LockScreen_TypeStatusPlusMusic@2x.png │ ├── LockScreen_TypeStatusPlusMusic@3x.png │ ├── LockScreen_TypeStatusPlusSnapchat.png │ ├── LockScreen_TypeStatusPlusSnapchat@2x.png │ ├── LockScreen_TypeStatusPlusSnapchat@3x.png │ ├── LockScreen_TypeStatusPlusTelegram.png │ ├── LockScreen_TypeStatusPlusTelegram@2x.png │ ├── LockScreen_TypeStatusPlusTelegram@3x.png │ ├── LockScreen_TypeStatusPlusWhatsApp.png │ ├── LockScreen_TypeStatusPlusWhatsApp@2x.png │ └── LockScreen_TypeStatusPlusWhatsApp@3x.png ├── messages ├── FailedBubble.x ├── HBTSPlusMessagesTypingManager.h ├── HBTSPlusMessagesTypingManager.x └── Messages.x ├── postinst ├── postrm ├── prefs ├── AlertsListController.x ├── Global.h ├── HBTSPlusAboutListController.h ├── HBTSPlusAboutListController.m ├── HBTSPlusGeneralListController.h ├── HBTSPlusGeneralListController.m ├── HBTSPlusProviderLinkTableCell.h ├── HBTSPlusProviderLinkTableCell.m ├── HBTSPlusProviderSwitchTableCell.h ├── HBTSPlusProviderSwitchTableCell.m ├── HBTSPlusProvidersListController.h ├── HBTSPlusProvidersListController.m ├── HBTSPlusRootListController.h ├── HBTSPlusRootListController.x ├── HBTSPlusTwitterCell.h ├── HBTSPlusTwitterCell.m ├── Makefile ├── Resources │ ├── About.plist │ ├── Alerts.plist │ ├── General.plist │ ├── Info.plist │ ├── Providers.plist │ ├── Root.plist │ ├── advanced.png │ ├── advanced@2x.png │ ├── advanced@3x.png │ ├── ar.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── bannericon.png │ ├── bannericon@2x.png │ ├── bannericon@3x.png │ ├── ca.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── cs.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── da.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── de.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── el.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── en.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── en_AU.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── en_GB.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── enable.png │ ├── enable@2x.png │ ├── enable@3x.png │ ├── es.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── es_MX.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── fi.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── footerlogo.png │ ├── footerlogo@2x.png │ ├── footerlogo@3x.png │ ├── fr.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── fr_CA.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── hbangheader.png │ ├── hbangheader@2x.png │ ├── hbangheader@3x.png │ ├── he.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── header.png │ ├── header@2x.png │ ├── header@3x.png │ ├── headerlogo.png │ ├── headerlogo@2x.png │ ├── headerlogo@3x.png │ ├── hi.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── hr.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── hu.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── icon.png │ ├── icon@2x.png │ ├── icon@3x.png │ ├── id.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── it.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── ja.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── ko.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── makers.png │ ├── makers@2x.png │ ├── makers@3x.png │ ├── ms.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── nb.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── nl.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── notif.png │ ├── notif@2x.png │ ├── notif@3x.png │ ├── pl.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── providers.png │ ├── providers@2x.png │ ├── providers@3x.png │ ├── pt.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── pt_PT.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── ro.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── ru.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── sk.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── support.png │ ├── support@2x.png │ ├── support@3x.png │ ├── sv.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── th.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── tr.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── uk.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── vi.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── zh_CN.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ ├── zh_HK.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings │ └── zh_TW.lproj │ │ ├── Alerts.strings │ │ ├── General.strings │ │ ├── Providers.strings │ │ └── Root.strings └── entry.plist ├── providers ├── HBTSPlusMessengerNameFetcher.h ├── HBTSPlusMessengerNameFetcher.x ├── HBTSPlusMessengerProvider.h ├── HBTSPlusMessengerProvider.m ├── HBTSPlusMusicProvider.h ├── HBTSPlusMusicProvider.x ├── HBTSPlusSnapchatProvider.h ├── HBTSPlusSnapchatProvider.m ├── HBTSPlusTelegramProvider.h ├── HBTSPlusTelegramProvider.m ├── HBTSPlusWhatsAppProvider.h ├── HBTSPlusWhatsAppProvider.m ├── Messenger.h ├── MessengerHooks.x ├── SnapchatHooks.x ├── Telegram.h ├── TelegramHooks.x ├── WhatsApp.h └── WhatsAppHooks.x ├── springboard ├── HBTSPlusBulletinProvider.h ├── HBTSPlusBulletinProvider.x ├── HBTSPlusServer.h ├── HBTSPlusServer.x ├── HBTSPlusStateHelper.h ├── HBTSPlusStateHelper.x ├── HBTSPlusTapToOpenController.h ├── HBTSPlusTapToOpenController.x ├── Loading.x └── SpringBoard.x └── typestatus-private ├── HBTSProviderController+Private.h ├── HBTSStatusBarAlertServer.h ├── HBTSStatusBarForegroundView.h └── HBTSStatusBarIconController.h /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .theos 3 | packages 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/README.md -------------------------------------------------------------------------------- /TypeStatusPlus.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/TypeStatusPlus.plist -------------------------------------------------------------------------------- /TypeStatusPlusAssertiond.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/TypeStatusPlusAssertiond.plist -------------------------------------------------------------------------------- /TypeStatusPlusClient.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/TypeStatusPlusClient.plist -------------------------------------------------------------------------------- /TypeStatusPlusMessages.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/TypeStatusPlusMessages.plist -------------------------------------------------------------------------------- /app/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/app/Makefile -------------------------------------------------------------------------------- /app/Resources/AppIcon29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/app/Resources/AppIcon29x29.png -------------------------------------------------------------------------------- /app/Resources/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/app/Resources/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /app/Resources/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/app/Resources/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /app/Resources/AppIcon40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/app/Resources/AppIcon40x40.png -------------------------------------------------------------------------------- /app/Resources/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/app/Resources/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /app/Resources/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/app/Resources/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /app/Resources/AppIcon60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/app/Resources/AppIcon60x60.png -------------------------------------------------------------------------------- /app/Resources/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/app/Resources/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /app/Resources/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/app/Resources/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /app/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/app/Resources/Info.plist -------------------------------------------------------------------------------- /app/main.m: -------------------------------------------------------------------------------- 1 | int main() { 2 | return 0; 3 | } 4 | -------------------------------------------------------------------------------- /assertionhax/Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/assertionhax/Tweak.x -------------------------------------------------------------------------------- /client/Client.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/client/Client.x -------------------------------------------------------------------------------- /client/HBTSPlusClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/client/HBTSPlusClient.h -------------------------------------------------------------------------------- /client/HBTSPlusClient.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/client/HBTSPlusClient.x -------------------------------------------------------------------------------- /client/HBTSPlusPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/client/HBTSPlusPreferences.h -------------------------------------------------------------------------------- /client/HBTSPlusPreferences.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/client/HBTSPlusPreferences.x -------------------------------------------------------------------------------- /client/HBTSProvider+TypeStatusPlusAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/client/HBTSProvider+TypeStatusPlusAdditions.h -------------------------------------------------------------------------------- /client/HBTSProvider+TypeStatusPlusAdditions.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/client/HBTSProvider+TypeStatusPlusAdditions.x -------------------------------------------------------------------------------- /client/HBTSStatusBarUnreadItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/client/HBTSStatusBarUnreadItemView.h -------------------------------------------------------------------------------- /client/HBTSStatusBarUnreadItemView.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/client/HBTSStatusBarUnreadItemView.x -------------------------------------------------------------------------------- /global/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/global/Global.h -------------------------------------------------------------------------------- /global/HBTSPlusPreferences.h: -------------------------------------------------------------------------------- 1 | ../client/HBTSPlusPreferences.h -------------------------------------------------------------------------------- /global/HBTSProvider+TypeStatusPlusAdditions.h: -------------------------------------------------------------------------------- 1 | ../client/HBTSProvider+TypeStatusPlusAdditions.h -------------------------------------------------------------------------------- /layout/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/DEBIAN/control -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Messenger.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Messenger.bundle/Info.plist -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Messenger.bundle/Messenger: -------------------------------------------------------------------------------- 1 | ../TypeStatusPlusBuiltIn.dylib -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Music.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Music.bundle/Info.plist -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Music.bundle/Music: -------------------------------------------------------------------------------- 1 | ../TypeStatusPlusBuiltIn.dylib -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/Info.plist -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/Snapchat: -------------------------------------------------------------------------------- 1 | ../TypeStatusPlusBuiltIn.dylib -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/da.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/da.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/el.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/el.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/en_AU.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/en_AU.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/en_GB.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/en_GB.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/es_MX.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/es_MX.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/fi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/fi.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/fr_CA.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/fr_CA.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/he.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/he.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/hi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/hi.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/hr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/hr.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/hu.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/hu.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/ms.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/ms.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/nl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/nl.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/no.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/no.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/pl.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/pl.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/pt.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/pt.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/pt_PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/pt_PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/ro.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/ro.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/sk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/sk.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/th.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/th.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/vi.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/zh_CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/zh_CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Snapchat.bundle/zh_HK.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Snapchat.bundle/zh_HK.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Telegram.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/Telegram.bundle/Info.plist -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/Telegram.bundle/Telegram: -------------------------------------------------------------------------------- 1 | ../TypeStatusPlusBuiltIn.dylib -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/WhatsApp.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/Library/TypeStatus/Providers/WhatsApp.bundle/Info.plist -------------------------------------------------------------------------------- /layout/Library/TypeStatus/Providers/WhatsApp.bundle/WhatsApp: -------------------------------------------------------------------------------- 1 | ../TypeStatusPlusBuiltIn.dylib -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusMessenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusMessenger.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusMessenger@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusMessenger@2x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusMessenger@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusMessenger@3x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusMusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusMusic.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusMusic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusMusic@2x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusMusic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusMusic@3x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusSnapchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusSnapchat.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusSnapchat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusSnapchat@2x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusSnapchat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusSnapchat@3x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusTelegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusTelegram.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusTelegram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusTelegram@2x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusTelegram@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusTelegram@3x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusWhatsApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusWhatsApp.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusWhatsApp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusWhatsApp@2x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusWhatsApp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/Black_TypeStatusPlusWhatsApp@3x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusMessenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusMessenger.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusMessenger@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusMessenger@2x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusMessenger@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusMessenger@3x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusMusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusMusic.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusMusic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusMusic@2x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusMusic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusMusic@3x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusSnapchat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusSnapchat.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusSnapchat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusSnapchat@2x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusSnapchat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusSnapchat@3x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusTelegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusTelegram.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusTelegram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusTelegram@2x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusTelegram@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusTelegram@3x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusWhatsApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusWhatsApp.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusWhatsApp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusWhatsApp@2x.png -------------------------------------------------------------------------------- /layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusWhatsApp@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/layout/System/Library/Frameworks/UIKit.framework/LockScreen_TypeStatusPlusWhatsApp@3x.png -------------------------------------------------------------------------------- /messages/FailedBubble.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/messages/FailedBubble.x -------------------------------------------------------------------------------- /messages/HBTSPlusMessagesTypingManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/messages/HBTSPlusMessagesTypingManager.h -------------------------------------------------------------------------------- /messages/HBTSPlusMessagesTypingManager.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/messages/HBTSPlusMessagesTypingManager.x -------------------------------------------------------------------------------- /messages/Messages.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/messages/Messages.x -------------------------------------------------------------------------------- /postinst: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | launchctl stop com.apple.assertiond 5 | -------------------------------------------------------------------------------- /postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/postrm -------------------------------------------------------------------------------- /prefs/AlertsListController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/AlertsListController.x -------------------------------------------------------------------------------- /prefs/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Global.h -------------------------------------------------------------------------------- /prefs/HBTSPlusAboutListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/HBTSPlusAboutListController.h -------------------------------------------------------------------------------- /prefs/HBTSPlusAboutListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/HBTSPlusAboutListController.m -------------------------------------------------------------------------------- /prefs/HBTSPlusGeneralListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/HBTSPlusGeneralListController.h -------------------------------------------------------------------------------- /prefs/HBTSPlusGeneralListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/HBTSPlusGeneralListController.m -------------------------------------------------------------------------------- /prefs/HBTSPlusProviderLinkTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/HBTSPlusProviderLinkTableCell.h -------------------------------------------------------------------------------- /prefs/HBTSPlusProviderLinkTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/HBTSPlusProviderLinkTableCell.m -------------------------------------------------------------------------------- /prefs/HBTSPlusProviderSwitchTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/HBTSPlusProviderSwitchTableCell.h -------------------------------------------------------------------------------- /prefs/HBTSPlusProviderSwitchTableCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/HBTSPlusProviderSwitchTableCell.m -------------------------------------------------------------------------------- /prefs/HBTSPlusProvidersListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/HBTSPlusProvidersListController.h -------------------------------------------------------------------------------- /prefs/HBTSPlusProvidersListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/HBTSPlusProvidersListController.m -------------------------------------------------------------------------------- /prefs/HBTSPlusRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/HBTSPlusRootListController.h -------------------------------------------------------------------------------- /prefs/HBTSPlusRootListController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/HBTSPlusRootListController.x -------------------------------------------------------------------------------- /prefs/HBTSPlusTwitterCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/HBTSPlusTwitterCell.h -------------------------------------------------------------------------------- /prefs/HBTSPlusTwitterCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/HBTSPlusTwitterCell.m -------------------------------------------------------------------------------- /prefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Makefile -------------------------------------------------------------------------------- /prefs/Resources/About.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/About.plist -------------------------------------------------------------------------------- /prefs/Resources/Alerts.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/Alerts.plist -------------------------------------------------------------------------------- /prefs/Resources/General.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/General.plist -------------------------------------------------------------------------------- /prefs/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/Info.plist -------------------------------------------------------------------------------- /prefs/Resources/Providers.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/Providers.plist -------------------------------------------------------------------------------- /prefs/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/Root.plist -------------------------------------------------------------------------------- /prefs/Resources/advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/advanced.png -------------------------------------------------------------------------------- /prefs/Resources/advanced@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/advanced@2x.png -------------------------------------------------------------------------------- /prefs/Resources/advanced@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/advanced@3x.png -------------------------------------------------------------------------------- /prefs/Resources/ar.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ar.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/ar.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ar.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/ar.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ar.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/ar.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ar.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/bannericon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/bannericon.png -------------------------------------------------------------------------------- /prefs/Resources/bannericon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/bannericon@2x.png -------------------------------------------------------------------------------- /prefs/Resources/bannericon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/bannericon@3x.png -------------------------------------------------------------------------------- /prefs/Resources/ca.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ca.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/ca.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ca.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/ca.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ca.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/ca.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ca.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/cs.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/cs.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/cs.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/cs.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/cs.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/cs.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/cs.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/cs.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/da.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/da.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/da.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/da.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/da.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/da.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/da.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/da.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/de.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/de.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/de.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/de.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/de.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/de.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/de.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/de.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/el.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/el.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/el.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/el.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/el.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/el.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/el.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/el.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/en.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/en.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/en.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/en.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/en.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/en.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/en.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/en_AU.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/en_AU.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/en_AU.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/en_AU.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/en_AU.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/en_AU.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/en_AU.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/en_AU.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/en_GB.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/en_GB.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/en_GB.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/en_GB.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/en_GB.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/en_GB.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/en_GB.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/en_GB.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/enable.png -------------------------------------------------------------------------------- /prefs/Resources/enable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/enable@2x.png -------------------------------------------------------------------------------- /prefs/Resources/enable@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/enable@3x.png -------------------------------------------------------------------------------- /prefs/Resources/es.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/es.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/es.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/es.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/es.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/es.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/es.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/es.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/es_MX.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/es_MX.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/es_MX.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/es_MX.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/es_MX.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/es_MX.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/es_MX.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/es_MX.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/fi.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/fi.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/fi.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/fi.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/fi.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/fi.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/fi.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/fi.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/footerlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/footerlogo.png -------------------------------------------------------------------------------- /prefs/Resources/footerlogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/footerlogo@2x.png -------------------------------------------------------------------------------- /prefs/Resources/footerlogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/footerlogo@3x.png -------------------------------------------------------------------------------- /prefs/Resources/fr.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/fr.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/fr.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/fr.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/fr.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/fr.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/fr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/fr.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/fr_CA.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/fr_CA.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/fr_CA.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/fr_CA.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/fr_CA.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/fr_CA.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/fr_CA.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/fr_CA.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/hbangheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/hbangheader.png -------------------------------------------------------------------------------- /prefs/Resources/hbangheader@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/hbangheader@2x.png -------------------------------------------------------------------------------- /prefs/Resources/hbangheader@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/hbangheader@3x.png -------------------------------------------------------------------------------- /prefs/Resources/he.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/he.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/he.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/he.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/he.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/he.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/he.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/he.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/header.png -------------------------------------------------------------------------------- /prefs/Resources/header@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/header@2x.png -------------------------------------------------------------------------------- /prefs/Resources/header@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/header@3x.png -------------------------------------------------------------------------------- /prefs/Resources/headerlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/headerlogo.png -------------------------------------------------------------------------------- /prefs/Resources/headerlogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/headerlogo@2x.png -------------------------------------------------------------------------------- /prefs/Resources/headerlogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/headerlogo@3x.png -------------------------------------------------------------------------------- /prefs/Resources/hi.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/hi.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/hi.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/hi.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/hi.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/hi.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/hi.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/hi.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/hr.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/hr.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/hr.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/hr.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/hr.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/hr.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/hr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/hr.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/hu.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/hu.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/hu.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/hu.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/hu.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/hu.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/hu.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/hu.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/icon.png -------------------------------------------------------------------------------- /prefs/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/icon@2x.png -------------------------------------------------------------------------------- /prefs/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/icon@3x.png -------------------------------------------------------------------------------- /prefs/Resources/id.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/id.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/id.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/id.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/id.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/id.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/id.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/id.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/it.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/it.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/it.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/it.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/it.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/it.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/it.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/it.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/ja.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ja.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/ja.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ja.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/ja.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ja.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/ja.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ja.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/ko.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ko.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/ko.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ko.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/ko.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ko.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/ko.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ko.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/makers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/makers.png -------------------------------------------------------------------------------- /prefs/Resources/makers@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/makers@2x.png -------------------------------------------------------------------------------- /prefs/Resources/makers@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/makers@3x.png -------------------------------------------------------------------------------- /prefs/Resources/ms.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ms.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/ms.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ms.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/ms.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ms.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/ms.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ms.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/nb.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/nb.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/nb.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/nb.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/nb.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/nb.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/nb.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/nb.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/nl.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/nl.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/nl.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/nl.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/nl.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/nl.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/nl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/nl.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/notif.png -------------------------------------------------------------------------------- /prefs/Resources/notif@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/notif@2x.png -------------------------------------------------------------------------------- /prefs/Resources/notif@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/notif@3x.png -------------------------------------------------------------------------------- /prefs/Resources/pl.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/pl.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/pl.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/pl.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/pl.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/pl.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/pl.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/pl.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/providers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/providers.png -------------------------------------------------------------------------------- /prefs/Resources/providers@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/providers@2x.png -------------------------------------------------------------------------------- /prefs/Resources/providers@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/providers@3x.png -------------------------------------------------------------------------------- /prefs/Resources/pt.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/pt.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/pt.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/pt.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/pt.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/pt.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/pt.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/pt.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/pt_PT.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/pt_PT.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/pt_PT.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/pt_PT.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/pt_PT.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/pt_PT.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/pt_PT.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/pt_PT.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/ro.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ro.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/ro.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ro.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/ro.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ro.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/ro.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ro.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/ru.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ru.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/ru.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ru.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/ru.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ru.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/ru.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/ru.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/sk.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/sk.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/sk.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/sk.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/sk.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/sk.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/sk.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/sk.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/support.png -------------------------------------------------------------------------------- /prefs/Resources/support@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/support@2x.png -------------------------------------------------------------------------------- /prefs/Resources/support@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/support@3x.png -------------------------------------------------------------------------------- /prefs/Resources/sv.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/sv.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/sv.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/sv.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/sv.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/sv.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/sv.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/sv.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/th.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/th.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/th.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/th.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/th.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/th.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/th.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/th.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/tr.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/tr.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/tr.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/tr.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/tr.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/tr.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/tr.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/tr.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/uk.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/uk.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/uk.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/uk.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/uk.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/uk.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/uk.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/uk.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/vi.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/vi.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/vi.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/vi.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/vi.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/vi.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/vi.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/vi.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_CN.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/zh_CN.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_CN.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/zh_CN.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_CN.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/zh_CN.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_CN.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/zh_CN.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_HK.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/zh_HK.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_HK.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/zh_HK.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_HK.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/zh_HK.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_HK.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/zh_HK.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_TW.lproj/Alerts.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/zh_TW.lproj/Alerts.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_TW.lproj/General.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/zh_TW.lproj/General.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_TW.lproj/Providers.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/zh_TW.lproj/Providers.strings -------------------------------------------------------------------------------- /prefs/Resources/zh_TW.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/Resources/zh_TW.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/prefs/entry.plist -------------------------------------------------------------------------------- /providers/HBTSPlusMessengerNameFetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/HBTSPlusMessengerNameFetcher.h -------------------------------------------------------------------------------- /providers/HBTSPlusMessengerNameFetcher.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/HBTSPlusMessengerNameFetcher.x -------------------------------------------------------------------------------- /providers/HBTSPlusMessengerProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/HBTSPlusMessengerProvider.h -------------------------------------------------------------------------------- /providers/HBTSPlusMessengerProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/HBTSPlusMessengerProvider.m -------------------------------------------------------------------------------- /providers/HBTSPlusMusicProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/HBTSPlusMusicProvider.h -------------------------------------------------------------------------------- /providers/HBTSPlusMusicProvider.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/HBTSPlusMusicProvider.x -------------------------------------------------------------------------------- /providers/HBTSPlusSnapchatProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/HBTSPlusSnapchatProvider.h -------------------------------------------------------------------------------- /providers/HBTSPlusSnapchatProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/HBTSPlusSnapchatProvider.m -------------------------------------------------------------------------------- /providers/HBTSPlusTelegramProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/HBTSPlusTelegramProvider.h -------------------------------------------------------------------------------- /providers/HBTSPlusTelegramProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/HBTSPlusTelegramProvider.m -------------------------------------------------------------------------------- /providers/HBTSPlusWhatsAppProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/HBTSPlusWhatsAppProvider.h -------------------------------------------------------------------------------- /providers/HBTSPlusWhatsAppProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/HBTSPlusWhatsAppProvider.m -------------------------------------------------------------------------------- /providers/Messenger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/Messenger.h -------------------------------------------------------------------------------- /providers/MessengerHooks.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/MessengerHooks.x -------------------------------------------------------------------------------- /providers/SnapchatHooks.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/SnapchatHooks.x -------------------------------------------------------------------------------- /providers/Telegram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/Telegram.h -------------------------------------------------------------------------------- /providers/TelegramHooks.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/TelegramHooks.x -------------------------------------------------------------------------------- /providers/WhatsApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/WhatsApp.h -------------------------------------------------------------------------------- /providers/WhatsAppHooks.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/providers/WhatsAppHooks.x -------------------------------------------------------------------------------- /springboard/HBTSPlusBulletinProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/springboard/HBTSPlusBulletinProvider.h -------------------------------------------------------------------------------- /springboard/HBTSPlusBulletinProvider.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/springboard/HBTSPlusBulletinProvider.x -------------------------------------------------------------------------------- /springboard/HBTSPlusServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/springboard/HBTSPlusServer.h -------------------------------------------------------------------------------- /springboard/HBTSPlusServer.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/springboard/HBTSPlusServer.x -------------------------------------------------------------------------------- /springboard/HBTSPlusStateHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/springboard/HBTSPlusStateHelper.h -------------------------------------------------------------------------------- /springboard/HBTSPlusStateHelper.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/springboard/HBTSPlusStateHelper.x -------------------------------------------------------------------------------- /springboard/HBTSPlusTapToOpenController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/springboard/HBTSPlusTapToOpenController.h -------------------------------------------------------------------------------- /springboard/HBTSPlusTapToOpenController.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/springboard/HBTSPlusTapToOpenController.x -------------------------------------------------------------------------------- /springboard/Loading.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/springboard/Loading.x -------------------------------------------------------------------------------- /springboard/SpringBoard.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/springboard/SpringBoard.x -------------------------------------------------------------------------------- /typestatus-private/HBTSProviderController+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/typestatus-private/HBTSProviderController+Private.h -------------------------------------------------------------------------------- /typestatus-private/HBTSStatusBarAlertServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/typestatus-private/HBTSStatusBarAlertServer.h -------------------------------------------------------------------------------- /typestatus-private/HBTSStatusBarForegroundView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/typestatus-private/HBTSStatusBarForegroundView.h -------------------------------------------------------------------------------- /typestatus-private/HBTSStatusBarIconController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/TypeStatus-Plus/HEAD/typestatus-private/HBTSStatusBarIconController.h --------------------------------------------------------------------------------