├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── COPYING ├── Makefile ├── Manager ├── Log.h ├── Log.m ├── LogManager.h └── LogManager.m ├── Preferences ├── Cells │ ├── LinkCell.h │ ├── LinkCell.m │ ├── SingleContactCell.h │ └── SingleContactCell.m ├── Controllers │ ├── VeBlockedSendersListController.h │ ├── VeBlockedSendersListController.m │ ├── VeCreditsListController.h │ ├── VeCreditsListController.m │ ├── VeRootListController.h │ └── VeRootListController.m ├── Makefile ├── NotificationKeys.h ├── PreferenceKeys.h ├── Resources │ ├── Credits.plist │ ├── Icon.png │ ├── Icon@2x.png │ ├── Info.plist │ └── Root.plist └── layout │ └── Library │ └── PreferenceLoader │ └── Preferences │ └── VePreferences.plist ├── Preview.png ├── PrivateHeaders.h ├── README.md ├── Tweak ├── Core │ ├── Makefile │ ├── VeCore.h │ ├── VeCore.m │ └── VeCore.plist └── Target │ ├── Controllers │ ├── AbstractListController.h │ ├── AbstractListController.m │ ├── Cells │ │ ├── VeAttachmentCell.h │ │ ├── VeAttachmentCell.m │ │ ├── VeDetailCell.h │ │ ├── VeDetailCell.m │ │ ├── VeFullAttachmentCell.h │ │ ├── VeFullAttachmentCell.m │ │ ├── VeLogCell.h │ │ └── VeLogCell.m │ ├── Sorter │ │ ├── AbstractSorter.h │ │ ├── AbstractSorter.m │ │ ├── ApplicationSorter.h │ │ ├── ApplicationSorter.m │ │ ├── DateSorter.h │ │ ├── DateSorter.m │ │ ├── SearchSorter.h │ │ ├── SearchSorter.m │ │ └── SorterProtocol.h │ ├── VeAttachmentListController.h │ ├── VeAttachmentListController.m │ ├── VeDetailListController.h │ ├── VeDetailListController.m │ ├── VeLogsListController.h │ ├── VeLogsListController.m │ └── Views │ │ ├── BiometricProtectionOverlayView.h │ │ └── BiometricProtectionOverlayView.m │ ├── Makefile │ ├── VeTarget.h │ ├── VeTarget.m │ └── VeTarget.plist ├── Utils ├── DateUtil.h ├── DateUtil.m ├── ImageUtil.h ├── ImageUtil.m ├── StringUtil.h └── StringUtil.m └── control /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .theos/ 3 | .vscode/ 4 | packages/ 5 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Makefile -------------------------------------------------------------------------------- /Manager/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Manager/Log.h -------------------------------------------------------------------------------- /Manager/Log.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Manager/Log.m -------------------------------------------------------------------------------- /Manager/LogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Manager/LogManager.h -------------------------------------------------------------------------------- /Manager/LogManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Manager/LogManager.m -------------------------------------------------------------------------------- /Preferences/Cells/LinkCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Cells/LinkCell.h -------------------------------------------------------------------------------- /Preferences/Cells/LinkCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Cells/LinkCell.m -------------------------------------------------------------------------------- /Preferences/Cells/SingleContactCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Cells/SingleContactCell.h -------------------------------------------------------------------------------- /Preferences/Cells/SingleContactCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Cells/SingleContactCell.m -------------------------------------------------------------------------------- /Preferences/Controllers/VeBlockedSendersListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Controllers/VeBlockedSendersListController.h -------------------------------------------------------------------------------- /Preferences/Controllers/VeBlockedSendersListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Controllers/VeBlockedSendersListController.m -------------------------------------------------------------------------------- /Preferences/Controllers/VeCreditsListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Controllers/VeCreditsListController.h -------------------------------------------------------------------------------- /Preferences/Controllers/VeCreditsListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Controllers/VeCreditsListController.m -------------------------------------------------------------------------------- /Preferences/Controllers/VeRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Controllers/VeRootListController.h -------------------------------------------------------------------------------- /Preferences/Controllers/VeRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Controllers/VeRootListController.m -------------------------------------------------------------------------------- /Preferences/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Makefile -------------------------------------------------------------------------------- /Preferences/NotificationKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/NotificationKeys.h -------------------------------------------------------------------------------- /Preferences/PreferenceKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/PreferenceKeys.h -------------------------------------------------------------------------------- /Preferences/Resources/Credits.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Resources/Credits.plist -------------------------------------------------------------------------------- /Preferences/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Resources/Icon.png -------------------------------------------------------------------------------- /Preferences/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Preferences/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Resources/Info.plist -------------------------------------------------------------------------------- /Preferences/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/Resources/Root.plist -------------------------------------------------------------------------------- /Preferences/layout/Library/PreferenceLoader/Preferences/VePreferences.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preferences/layout/Library/PreferenceLoader/Preferences/VePreferences.plist -------------------------------------------------------------------------------- /Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Preview.png -------------------------------------------------------------------------------- /PrivateHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/PrivateHeaders.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/README.md -------------------------------------------------------------------------------- /Tweak/Core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Core/Makefile -------------------------------------------------------------------------------- /Tweak/Core/VeCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Core/VeCore.h -------------------------------------------------------------------------------- /Tweak/Core/VeCore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Core/VeCore.m -------------------------------------------------------------------------------- /Tweak/Core/VeCore.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Core/VeCore.plist -------------------------------------------------------------------------------- /Tweak/Target/Controllers/AbstractListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/AbstractListController.h -------------------------------------------------------------------------------- /Tweak/Target/Controllers/AbstractListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/AbstractListController.m -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Cells/VeAttachmentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Cells/VeAttachmentCell.h -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Cells/VeAttachmentCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Cells/VeAttachmentCell.m -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Cells/VeDetailCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Cells/VeDetailCell.h -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Cells/VeDetailCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Cells/VeDetailCell.m -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Cells/VeFullAttachmentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Cells/VeFullAttachmentCell.h -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Cells/VeFullAttachmentCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Cells/VeFullAttachmentCell.m -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Cells/VeLogCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Cells/VeLogCell.h -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Cells/VeLogCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Cells/VeLogCell.m -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Sorter/AbstractSorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Sorter/AbstractSorter.h -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Sorter/AbstractSorter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Sorter/AbstractSorter.m -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Sorter/ApplicationSorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Sorter/ApplicationSorter.h -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Sorter/ApplicationSorter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Sorter/ApplicationSorter.m -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Sorter/DateSorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Sorter/DateSorter.h -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Sorter/DateSorter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Sorter/DateSorter.m -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Sorter/SearchSorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Sorter/SearchSorter.h -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Sorter/SearchSorter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Sorter/SearchSorter.m -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Sorter/SorterProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Sorter/SorterProtocol.h -------------------------------------------------------------------------------- /Tweak/Target/Controllers/VeAttachmentListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/VeAttachmentListController.h -------------------------------------------------------------------------------- /Tweak/Target/Controllers/VeAttachmentListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/VeAttachmentListController.m -------------------------------------------------------------------------------- /Tweak/Target/Controllers/VeDetailListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/VeDetailListController.h -------------------------------------------------------------------------------- /Tweak/Target/Controllers/VeDetailListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/VeDetailListController.m -------------------------------------------------------------------------------- /Tweak/Target/Controllers/VeLogsListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/VeLogsListController.h -------------------------------------------------------------------------------- /Tweak/Target/Controllers/VeLogsListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/VeLogsListController.m -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Views/BiometricProtectionOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Views/BiometricProtectionOverlayView.h -------------------------------------------------------------------------------- /Tweak/Target/Controllers/Views/BiometricProtectionOverlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Controllers/Views/BiometricProtectionOverlayView.m -------------------------------------------------------------------------------- /Tweak/Target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/Makefile -------------------------------------------------------------------------------- /Tweak/Target/VeTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/VeTarget.h -------------------------------------------------------------------------------- /Tweak/Target/VeTarget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/VeTarget.m -------------------------------------------------------------------------------- /Tweak/Target/VeTarget.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Tweak/Target/VeTarget.plist -------------------------------------------------------------------------------- /Utils/DateUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Utils/DateUtil.h -------------------------------------------------------------------------------- /Utils/DateUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Utils/DateUtil.m -------------------------------------------------------------------------------- /Utils/ImageUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Utils/ImageUtil.h -------------------------------------------------------------------------------- /Utils/ImageUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Utils/ImageUtil.m -------------------------------------------------------------------------------- /Utils/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Utils/StringUtil.h -------------------------------------------------------------------------------- /Utils/StringUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/Utils/StringUtil.m -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrk567301/Ve/HEAD/control --------------------------------------------------------------------------------