├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .ruby-version ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── Install.md ├── LICENSE ├── Other ├── Install.sh ├── ScreenShots │ ├── alfred_chat_log.gif │ ├── alfred_search.gif │ ├── auto_reply.png │ ├── emotion_copy_export.png │ ├── en │ │ ├── alfred.gif │ │ ├── auto_auth_and_new.gif │ │ ├── auto_reply.gif │ │ ├── emotion_copy_export.png │ │ ├── multiselect_and_stick_bottom_and_clear_empty.gif │ │ ├── prevent_recall.gif │ │ ├── quick_reply_and_make_read.gif │ │ ├── remote_control.gif │ │ └── wechatplugin.png │ ├── install_download.png │ ├── install_terminal.png │ ├── notification_quick_reply.gif │ ├── remote_control.png │ ├── session_empty_and_clean.gif │ ├── terminal_path.png │ ├── voice_remote_control.gif │ └── wechatplugin.png ├── Uninstall.sh ├── Update.sh ├── UpdateRemoteControlCommandsPlist.py └── insert_dylib ├── Podfile ├── Q&A.md ├── README.md ├── README_EN.md ├── WeChatPlugin.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── TK.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── TK.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── WeChatPlugin.xcscheme │ └── xcschememanagement.plist ├── WeChatPlugin.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── TK.xcuserdatad │ ├── IDEFindNavigatorScopes.plist │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── WeChatPlugin ├── Info.plist ├── Sources │ ├── Common │ │ ├── Category │ │ │ ├── NSButton+Action.h │ │ │ ├── NSButton+Action.m │ │ │ ├── NSDate+Action.h │ │ │ ├── NSDate+Action.m │ │ │ ├── NSMenu+Action.h │ │ │ ├── NSMenu+Action.m │ │ │ ├── NSMenuItem+Action.h │ │ │ ├── NSMenuItem+Action.m │ │ │ ├── NSString+Action.h │ │ │ ├── NSString+Action.m │ │ │ ├── NSTextField+Action.h │ │ │ ├── NSTextField+Action.m │ │ │ ├── NSView+Action.h │ │ │ ├── NSView+Action.m │ │ │ ├── NSWindowController+Action.h │ │ │ └── NSWindowController+Action.m │ │ ├── Macro │ │ │ ├── ColorConstant.h │ │ │ ├── DefineConstant.h │ │ │ └── NotifyConstant.h │ │ └── TKPrefixHeader.pch │ ├── Config │ │ ├── TKWeChatPluginConfig.h │ │ └── TKWeChatPluginConfig.m │ ├── Hook │ │ ├── MMChatsTableCellView+hook.h │ │ ├── MMChatsTableCellView+hook.m │ │ ├── MMStickerMessageCellView+hook.h │ │ ├── MMStickerMessageCellView+hook.m │ │ ├── WeChat+hook.h │ │ └── WeChat+hook.m │ ├── Managers │ │ ├── TKAssistantMenuManager.h │ │ ├── TKAssistantMenuManager.m │ │ ├── TKCacheManager.h │ │ ├── TKCacheManager.m │ │ ├── TKHTTPManager.h │ │ ├── TKHTTPManager.m │ │ ├── TKMessageManager.h │ │ ├── TKMessageManager.m │ │ ├── TKRemoteControlCommands.plist │ │ ├── TKRemoteControlManager.h │ │ ├── TKRemoteControlManager.m │ │ ├── TKVersionManager.h │ │ ├── TKVersionManager.m │ │ ├── TKWebServerManager.h │ │ └── TKWebServerManager.m │ ├── Models │ │ ├── TKAutoReplyModel.h │ │ ├── TKAutoReplyModel.m │ │ ├── TKBaseModel.h │ │ ├── TKBaseModel.m │ │ ├── TKIgnoreSessonModel.h │ │ ├── TKIgnoreSessonModel.m │ │ ├── TKRemoteControlModel.h │ │ └── TKRemoteControlModel.m │ ├── Utils │ │ ├── TKHelper.h │ │ ├── TKHelper.m │ │ ├── TKUtility.h │ │ └── TKUtility.m │ ├── Vendor │ │ ├── fishhook.c │ │ └── fishhook.h │ ├── Views │ │ ├── AutoReply │ │ │ ├── TKAutoReplyCell.h │ │ │ ├── TKAutoReplyCell.m │ │ │ ├── TKAutoReplyContentView.h │ │ │ └── TKAutoReplyContentView.m │ │ └── RemoteControl │ │ │ ├── TKRemoteControlCell.h │ │ │ └── TKRemoteControlCell.m │ └── WindowControllers │ │ ├── About │ │ ├── Base.lproj │ │ │ └── TKAboutWindowController.xib │ │ ├── TKAboutWindowController.h │ │ ├── TKAboutWindowController.m │ │ ├── en.lproj │ │ │ └── TKAboutWindowController.xib │ │ └── zh-Hant.lproj │ │ │ └── TKAboutWindowController.xib │ │ ├── AutoReply │ │ ├── TKAutoReplyWindowController.h │ │ ├── TKAutoReplyWindowController.m │ │ └── TKAutoReplyWindowController.xib │ │ ├── Download │ │ ├── TKDownloadWindowController.h │ │ ├── TKDownloadWindowController.m │ │ └── TKDownloadWindowController.xib │ │ └── RemoteControl │ │ ├── Base.lproj │ │ └── TKRemoteControlWindowController.xib │ │ ├── TKRemoteControlWindowController.h │ │ ├── TKRemoteControlWindowController.m │ │ ├── zh-Hans.lproj │ │ └── TKRemoteControlWindowController.xib │ │ └── zh-Hant.lproj │ │ └── TKRemoteControlWindowController.xib ├── TKRemoteControlScript.scpt ├── WeChatPlugin.h ├── en.lproj │ ├── Localizable.strings │ └── about.rtfd │ │ └── TXT.rtf ├── main.mm ├── zh-Hans.lproj │ ├── Localizable.strings │ └── about.rtfd │ │ └── TXT.rtf └── zh-Hant.lproj │ ├── Localizable.strings │ └── about.rtfd │ └── TXT.rtf ├── chatlog-sqlite.rb ├── class-dump-of-wechat.log └── last-working-version.txt /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.6.3 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Install.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Other/Install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/Install.sh -------------------------------------------------------------------------------- /Other/ScreenShots/alfred_chat_log.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/alfred_chat_log.gif -------------------------------------------------------------------------------- /Other/ScreenShots/alfred_search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/alfred_search.gif -------------------------------------------------------------------------------- /Other/ScreenShots/auto_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/auto_reply.png -------------------------------------------------------------------------------- /Other/ScreenShots/emotion_copy_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/emotion_copy_export.png -------------------------------------------------------------------------------- /Other/ScreenShots/en/alfred.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/en/alfred.gif -------------------------------------------------------------------------------- /Other/ScreenShots/en/auto_auth_and_new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/en/auto_auth_and_new.gif -------------------------------------------------------------------------------- /Other/ScreenShots/en/auto_reply.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/en/auto_reply.gif -------------------------------------------------------------------------------- /Other/ScreenShots/en/emotion_copy_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/en/emotion_copy_export.png -------------------------------------------------------------------------------- /Other/ScreenShots/en/multiselect_and_stick_bottom_and_clear_empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/en/multiselect_and_stick_bottom_and_clear_empty.gif -------------------------------------------------------------------------------- /Other/ScreenShots/en/prevent_recall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/en/prevent_recall.gif -------------------------------------------------------------------------------- /Other/ScreenShots/en/quick_reply_and_make_read.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/en/quick_reply_and_make_read.gif -------------------------------------------------------------------------------- /Other/ScreenShots/en/remote_control.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/en/remote_control.gif -------------------------------------------------------------------------------- /Other/ScreenShots/en/wechatplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/en/wechatplugin.png -------------------------------------------------------------------------------- /Other/ScreenShots/install_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/install_download.png -------------------------------------------------------------------------------- /Other/ScreenShots/install_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/install_terminal.png -------------------------------------------------------------------------------- /Other/ScreenShots/notification_quick_reply.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/notification_quick_reply.gif -------------------------------------------------------------------------------- /Other/ScreenShots/remote_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/remote_control.png -------------------------------------------------------------------------------- /Other/ScreenShots/session_empty_and_clean.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/session_empty_and_clean.gif -------------------------------------------------------------------------------- /Other/ScreenShots/terminal_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/terminal_path.png -------------------------------------------------------------------------------- /Other/ScreenShots/voice_remote_control.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/voice_remote_control.gif -------------------------------------------------------------------------------- /Other/ScreenShots/wechatplugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/ScreenShots/wechatplugin.png -------------------------------------------------------------------------------- /Other/Uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/Uninstall.sh -------------------------------------------------------------------------------- /Other/Update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/Update.sh -------------------------------------------------------------------------------- /Other/UpdateRemoteControlCommandsPlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/UpdateRemoteControlCommandsPlist.py -------------------------------------------------------------------------------- /Other/insert_dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Other/insert_dylib -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | platform :osx, '10.12' 2 | inhibit_all_warnings! 3 | 4 | target 'WeChatPlugin' do 5 | pod 'GCDWebServer', '~> 3.4.2' 6 | end 7 | -------------------------------------------------------------------------------- /Q&A.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/Q&A.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/README_EN.md -------------------------------------------------------------------------------- /WeChatPlugin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WeChatPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WeChatPlugin.xcodeproj/project.xcworkspace/xcuserdata/TK.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin.xcodeproj/project.xcworkspace/xcuserdata/TK.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /WeChatPlugin.xcodeproj/xcuserdata/TK.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin.xcodeproj/xcuserdata/TK.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /WeChatPlugin.xcodeproj/xcuserdata/TK.xcuserdatad/xcschemes/WeChatPlugin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin.xcodeproj/xcuserdata/TK.xcuserdatad/xcschemes/WeChatPlugin.xcscheme -------------------------------------------------------------------------------- /WeChatPlugin.xcodeproj/xcuserdata/TK.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin.xcodeproj/xcuserdata/TK.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WeChatPlugin.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WeChatPlugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /WeChatPlugin.xcworkspace/xcuserdata/TK.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin.xcworkspace/xcuserdata/TK.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /WeChatPlugin.xcworkspace/xcuserdata/TK.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin.xcworkspace/xcuserdata/TK.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /WeChatPlugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Info.plist -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSButton+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSButton+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSButton+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSButton+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSDate+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSDate+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSDate+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSDate+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSMenu+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSMenu+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSMenu+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSMenu+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSMenuItem+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSMenuItem+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSMenuItem+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSMenuItem+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSString+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSString+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSString+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSString+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSTextField+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSTextField+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSTextField+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSTextField+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSView+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSView+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSView+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSView+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSWindowController+Action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSWindowController+Action.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Category/NSWindowController+Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Category/NSWindowController+Action.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Macro/ColorConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Macro/ColorConstant.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Macro/DefineConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Macro/DefineConstant.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/Macro/NotifyConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/Macro/NotifyConstant.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Common/TKPrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Common/TKPrefixHeader.pch -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Config/TKWeChatPluginConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Config/TKWeChatPluginConfig.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Config/TKWeChatPluginConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Config/TKWeChatPluginConfig.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Hook/MMChatsTableCellView+hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Hook/MMChatsTableCellView+hook.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Hook/MMChatsTableCellView+hook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Hook/MMChatsTableCellView+hook.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Hook/MMStickerMessageCellView+hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Hook/MMStickerMessageCellView+hook.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Hook/MMStickerMessageCellView+hook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Hook/MMStickerMessageCellView+hook.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Hook/WeChat+hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Hook/WeChat+hook.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Hook/WeChat+hook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Hook/WeChat+hook.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKAssistantMenuManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Managers/TKAssistantMenuManager.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKAssistantMenuManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Managers/TKAssistantMenuManager.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKCacheManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Managers/TKCacheManager.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKCacheManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Managers/TKCacheManager.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKHTTPManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Managers/TKHTTPManager.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKHTTPManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Managers/TKHTTPManager.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKMessageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Managers/TKMessageManager.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKMessageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Managers/TKMessageManager.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKRemoteControlCommands.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Managers/TKRemoteControlCommands.plist -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKRemoteControlManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Managers/TKRemoteControlManager.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKRemoteControlManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Managers/TKRemoteControlManager.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKVersionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Managers/TKVersionManager.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKVersionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Managers/TKVersionManager.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKWebServerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Managers/TKWebServerManager.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Managers/TKWebServerManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Managers/TKWebServerManager.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKAutoReplyModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Models/TKAutoReplyModel.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKAutoReplyModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Models/TKAutoReplyModel.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKBaseModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Models/TKBaseModel.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKBaseModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Models/TKBaseModel.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKIgnoreSessonModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Models/TKIgnoreSessonModel.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKIgnoreSessonModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Models/TKIgnoreSessonModel.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKRemoteControlModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Models/TKRemoteControlModel.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Models/TKRemoteControlModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Models/TKRemoteControlModel.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Utils/TKHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Utils/TKHelper.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Utils/TKHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Utils/TKHelper.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Utils/TKUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Utils/TKUtility.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Utils/TKUtility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Utils/TKUtility.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Vendor/fishhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Vendor/fishhook.c -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Vendor/fishhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Vendor/fishhook.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyCell.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyCell.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyContentView.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Views/AutoReply/TKAutoReplyContentView.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Views/RemoteControl/TKRemoteControlCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Views/RemoteControl/TKRemoteControlCell.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/Views/RemoteControl/TKRemoteControlCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/Views/RemoteControl/TKRemoteControlCell.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/About/Base.lproj/TKAboutWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/About/Base.lproj/TKAboutWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/About/TKAboutWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/About/TKAboutWindowController.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/About/TKAboutWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/About/TKAboutWindowController.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/About/en.lproj/TKAboutWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/About/en.lproj/TKAboutWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/About/zh-Hant.lproj/TKAboutWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/About/zh-Hant.lproj/TKAboutWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/AutoReply/TKAutoReplyWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/AutoReply/TKAutoReplyWindowController.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/AutoReply/TKAutoReplyWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/AutoReply/TKAutoReplyWindowController.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/AutoReply/TKAutoReplyWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/AutoReply/TKAutoReplyWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/Download/TKDownloadWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/Download/TKDownloadWindowController.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/Download/TKDownloadWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/Download/TKDownloadWindowController.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/Download/TKDownloadWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/Download/TKDownloadWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/RemoteControl/Base.lproj/TKRemoteControlWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/RemoteControl/Base.lproj/TKRemoteControlWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/RemoteControl/TKRemoteControlWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/RemoteControl/TKRemoteControlWindowController.h -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/RemoteControl/TKRemoteControlWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/RemoteControl/TKRemoteControlWindowController.m -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/RemoteControl/zh-Hans.lproj/TKRemoteControlWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/RemoteControl/zh-Hans.lproj/TKRemoteControlWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/Sources/WindowControllers/RemoteControl/zh-Hant.lproj/TKRemoteControlWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/Sources/WindowControllers/RemoteControl/zh-Hant.lproj/TKRemoteControlWindowController.xib -------------------------------------------------------------------------------- /WeChatPlugin/TKRemoteControlScript.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/TKRemoteControlScript.scpt -------------------------------------------------------------------------------- /WeChatPlugin/WeChatPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/WeChatPlugin.h -------------------------------------------------------------------------------- /WeChatPlugin/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /WeChatPlugin/en.lproj/about.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/en.lproj/about.rtfd/TXT.rtf -------------------------------------------------------------------------------- /WeChatPlugin/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/main.mm -------------------------------------------------------------------------------- /WeChatPlugin/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /WeChatPlugin/zh-Hans.lproj/about.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/zh-Hans.lproj/about.rtfd/TXT.rtf -------------------------------------------------------------------------------- /WeChatPlugin/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/zh-Hant.lproj/Localizable.strings -------------------------------------------------------------------------------- /WeChatPlugin/zh-Hant.lproj/about.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/WeChatPlugin/zh-Hant.lproj/about.rtfd/TXT.rtf -------------------------------------------------------------------------------- /chatlog-sqlite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/chatlog-sqlite.rb -------------------------------------------------------------------------------- /class-dump-of-wechat.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/class-dump-of-wechat.log -------------------------------------------------------------------------------- /last-working-version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongyuwei/WeChatPlugin-MacOS/HEAD/last-working-version.txt --------------------------------------------------------------------------------