├── .gitignore ├── Headers ├── FBAnalytics.h ├── LSMediaPickerViewController.h ├── LSStoryOverlayProfileView.h ├── LSTabBarDataSource.h ├── LSVideoPlayerView.h ├── MDSGeneratedImageView.h ├── MDSNavigationController.h ├── MSGCommunityListViewController.h ├── MSGInboxViewController.h ├── MSGModel.h ├── MSGModelClasses.h ├── MSGModelWeakObjectContainer.h ├── MSGNavigationCoordinator_LSNavigationCoordinatorProxy.h ├── MSGTempMessageListItemModel.h └── MSGThreadListDataSource.h ├── LICENSE ├── Makefile ├── README.md ├── SNMessenger.h ├── SNMessenger.plist ├── SNMessenger.xm ├── Settings ├── SNCellModel.h ├── SNCellModel.mm ├── SNSettingsViewController.h ├── SNSettingsViewController.mm ├── SNSubSettingsViewController.h ├── SNSubSettingsViewController.mm ├── SNTableViewCell.h ├── SNTableViewCell.mm ├── TOInsetGroupedTableView.h └── TOInsetGroupedTableView.mm ├── SideloadedFixes.xm ├── Utilities.h ├── control ├── fishhook ├── fishhook.c └── fishhook.h ├── images └── Access_Settings.png └── layout └── Library └── Application Support └── SNMessenger.bundle ├── Author.png ├── GitHub.png ├── PayPal.png ├── Supporter.png ├── en.lproj └── Localizable.strings └── vi.lproj └── Localizable.strings /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | .vscode 3 | packages 4 | -------------------------------------------------------------------------------- /Headers/FBAnalytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Headers/FBAnalytics.h -------------------------------------------------------------------------------- /Headers/LSMediaPickerViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Headers/LSMediaPickerViewController.h -------------------------------------------------------------------------------- /Headers/LSStoryOverlayProfileView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Headers/LSStoryOverlayProfileView.h -------------------------------------------------------------------------------- /Headers/LSTabBarDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Headers/LSTabBarDataSource.h -------------------------------------------------------------------------------- /Headers/LSVideoPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Headers/LSVideoPlayerView.h -------------------------------------------------------------------------------- /Headers/MDSGeneratedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Headers/MDSGeneratedImageView.h -------------------------------------------------------------------------------- /Headers/MDSNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Headers/MDSNavigationController.h -------------------------------------------------------------------------------- /Headers/MSGCommunityListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Headers/MSGCommunityListViewController.h -------------------------------------------------------------------------------- /Headers/MSGInboxViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Headers/MSGInboxViewController.h -------------------------------------------------------------------------------- /Headers/MSGModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Headers/MSGModel.h -------------------------------------------------------------------------------- /Headers/MSGModelClasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Headers/MSGModelClasses.h -------------------------------------------------------------------------------- /Headers/MSGModelWeakObjectContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Headers/MSGModelWeakObjectContainer.h -------------------------------------------------------------------------------- /Headers/MSGNavigationCoordinator_LSNavigationCoordinatorProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Headers/MSGNavigationCoordinator_LSNavigationCoordinatorProxy.h -------------------------------------------------------------------------------- /Headers/MSGTempMessageListItemModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Headers/MSGTempMessageListItemModel.h -------------------------------------------------------------------------------- /Headers/MSGThreadListDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Headers/MSGThreadListDataSource.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/README.md -------------------------------------------------------------------------------- /SNMessenger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/SNMessenger.h -------------------------------------------------------------------------------- /SNMessenger.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/SNMessenger.plist -------------------------------------------------------------------------------- /SNMessenger.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/SNMessenger.xm -------------------------------------------------------------------------------- /Settings/SNCellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Settings/SNCellModel.h -------------------------------------------------------------------------------- /Settings/SNCellModel.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Settings/SNCellModel.mm -------------------------------------------------------------------------------- /Settings/SNSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Settings/SNSettingsViewController.h -------------------------------------------------------------------------------- /Settings/SNSettingsViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Settings/SNSettingsViewController.mm -------------------------------------------------------------------------------- /Settings/SNSubSettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Settings/SNSubSettingsViewController.h -------------------------------------------------------------------------------- /Settings/SNSubSettingsViewController.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Settings/SNSubSettingsViewController.mm -------------------------------------------------------------------------------- /Settings/SNTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Settings/SNTableViewCell.h -------------------------------------------------------------------------------- /Settings/SNTableViewCell.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Settings/SNTableViewCell.mm -------------------------------------------------------------------------------- /Settings/TOInsetGroupedTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Settings/TOInsetGroupedTableView.h -------------------------------------------------------------------------------- /Settings/TOInsetGroupedTableView.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Settings/TOInsetGroupedTableView.mm -------------------------------------------------------------------------------- /SideloadedFixes.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/SideloadedFixes.xm -------------------------------------------------------------------------------- /Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/Utilities.h -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/control -------------------------------------------------------------------------------- /fishhook/fishhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/fishhook/fishhook.c -------------------------------------------------------------------------------- /fishhook/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/fishhook/fishhook.h -------------------------------------------------------------------------------- /images/Access_Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/images/Access_Settings.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SNMessenger.bundle/Author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/layout/Library/Application Support/SNMessenger.bundle/Author.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SNMessenger.bundle/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/layout/Library/Application Support/SNMessenger.bundle/GitHub.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SNMessenger.bundle/PayPal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/layout/Library/Application Support/SNMessenger.bundle/PayPal.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SNMessenger.bundle/Supporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/layout/Library/Application Support/SNMessenger.bundle/Supporter.png -------------------------------------------------------------------------------- /layout/Library/Application Support/SNMessenger.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/layout/Library/Application Support/SNMessenger.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /layout/Library/Application Support/SNMessenger.bundle/vi.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NguyenASang/SNMessenger/HEAD/layout/Library/Application Support/SNMessenger.bundle/vi.lproj/Localizable.strings --------------------------------------------------------------------------------