├── .github ├── ISSUE_TEMPLATE │ ├── Bug_Report.md │ ├── Feature_Request.md │ └── TODO.md └── workflows │ └── build.yml ├── .gitignore ├── About.jpg ├── AliyunRequestHandler ├── .gitignore ├── index.js ├── package-lock.json ├── package.json └── test.js ├── ArtificialTransHelperLibrary ├── ArtificialTransHelper.cs ├── ArtificialTransHelperLibrary.csproj └── Properties │ └── AssemblyInfo.cs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DictionaryHelperLibrary ├── DictionaryHelperLibrary.csproj ├── IDict.cs ├── Properties │ └── AssemblyInfo.cs └── XxgJpzhDict.cs ├── KeyboardMouseHookLibrary ├── FindWindowInfo.cs ├── GlobalHook.cs ├── GlobalHotKey.cs ├── KeyboardMouseHook.cs ├── KeyboardMouseHookLibrary.csproj └── Properties │ └── AssemblyInfo.cs ├── KeyboardMouseMonitor ├── KeyboardMouseMonitor.cpp ├── KeyboardMouseMonitor.vcxproj ├── KeyboardMouseMonitor.vcxproj.filters ├── pch.cpp └── pch.h ├── LICENSE ├── MecabHelperLibrary ├── MecabHelper.cs ├── MecabHelperLibrary.csproj ├── NoWordSplit.cs ├── Properties │ └── AssemblyInfo.cs └── WordSpliter.cs ├── MisakaPatchPackager ├── AesEncrypt.cs ├── App.config ├── IEncrypter.cs ├── MisakaPatchPackager.csproj ├── NopEncrypter.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── XorEncrypt.cs └── packages.config ├── MisakaTranslator-WPF ├── AddOptWindow.xaml ├── AddOptWindow.xaml.cs ├── App.config ├── App.xaml ├── App.xaml.cs ├── Appearance.xaml ├── ArtificialTransAddWindow.xaml ├── ArtificialTransAddWindow.xaml.cs ├── ComicTranslator │ ├── ComicTransMainWindow.xaml │ ├── ComicTransMainWindow.xaml.cs │ ├── ImageProcWindow.xaml │ └── ImageProcWindow.xaml.cs ├── Common.cs ├── DictResWindow.xaml ├── DictResWindow.xaml.cs ├── GameGuideWindow.xaml ├── GameGuideWindow.xaml.cs ├── GlobalOCRWindow.xaml ├── GlobalOCRWindow.xaml.cs ├── GuidePages │ ├── ChooseLanguagePage.xaml │ ├── ChooseLanguagePage.xaml.cs │ ├── Completation.png │ ├── CompletationPage.xaml │ ├── CompletationPage.xaml.cs │ ├── Hook │ │ ├── ChooseGamePage.xaml │ │ ├── ChooseGamePage.xaml.cs │ │ ├── ChooseHookFuncPage.xaml │ │ ├── ChooseHookFuncPage.xaml.cs │ │ ├── ChooseTextRepairFuncPage.xaml │ │ ├── ChooseTextRepairFuncPage.xaml.cs │ │ ├── ReChooseHookFuncPage.xaml │ │ └── ReChooseHookFuncPage.xaml.cs │ ├── OCR │ │ ├── ChooseHandleFuncPage.xaml │ │ ├── ChooseHandleFuncPage.xaml.cs │ │ ├── ChooseHotKeyPage.xaml │ │ ├── ChooseHotKeyPage.xaml.cs │ │ ├── ChooseOCRAreaPage.xaml │ │ └── ChooseOCRAreaPage.xaml.cs │ └── PageChangeRoutedEventArgs.cs ├── IAppSettings.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MisakaTranslator-WPF.csproj ├── Properties │ └── AssemblyInfo.cs ├── PublishATWindow.xaml ├── PublishATWindow.xaml.cs ├── RemoteATWindow.xaml ├── RemoteATWindow.xaml.cs ├── ScreenCaptureWindow.xaml ├── ScreenCaptureWindow.xaml.cs ├── SettingsPages │ ├── AboutPage.xaml │ ├── AboutPage.xaml.cs │ ├── Aboutv2.jpg │ ├── ArtificialTransSettingsPage.xaml │ ├── ArtificialTransSettingsPage.xaml.cs │ ├── DictionaryPages │ │ ├── XxgJpZhDictPage.xaml │ │ └── XxgJpZhDictPage.xaml.cs │ ├── HookSettingsPage.xaml │ ├── HookSettingsPage.xaml.cs │ ├── LESettingsPage.xaml │ ├── LESettingsPage.xaml.cs │ ├── OCRPages │ │ ├── BaiduOCRSettingsPage.xaml │ │ ├── BaiduOCRSettingsPage.xaml.cs │ │ ├── OCRGeneralSettingsPage.xaml │ │ ├── OCRGeneralSettingsPage.xaml.cs │ │ ├── TesseractOCR5SettingsPage.xaml │ │ └── TesseractOCR5SettingsPage.xaml.cs │ ├── SoftwareSettingsPage.xaml │ ├── SoftwareSettingsPage.xaml.cs │ ├── TTSSettingsPage.xaml │ ├── TTSSettingsPage.xaml.cs │ └── TranslatorPages │ │ ├── BaiduTransSettingsPage.xaml │ │ ├── BaiduTransSettingsPage.xaml.cs │ │ ├── CaiyunTransSettingsPage.xaml │ │ ├── CaiyunTransSettingsPage.xaml.cs │ │ ├── DreyeTransSettingsPage.xaml │ │ ├── DreyeTransSettingsPage.xaml.cs │ │ ├── JbeijingTransSettingsPage.xaml │ │ ├── JbeijingTransSettingsPage.xaml.cs │ │ ├── KingsoftFAITTransSettingsPage.xaml │ │ ├── KingsoftFAITTransSettingsPage.xaml.cs │ │ ├── LocalTransSettingsPage.xaml │ │ ├── LocalTransSettingsPage.xaml.cs │ │ ├── TencentFYJTransSettingsPage.xaml │ │ ├── TencentFYJTransSettingsPage.xaml.cs │ │ ├── TencentOldTransSettingsPage.xaml │ │ ├── TencentOldTransSettingsPage.xaml.cs │ │ ├── TranslatorGeneralSettingsPage.xaml │ │ ├── TranslatorGeneralSettingsPage.xaml.cs │ │ ├── XiaoniuTransSettingsPage.xaml │ │ └── XiaoniuTransSettingsPage.xaml.cs ├── SettingsWindow.xaml ├── SettingsWindow.xaml.cs ├── TransWinSettingsWindow.xaml ├── TransWinSettingsWindow.xaml.cs ├── TranslateWindow.xaml ├── TranslateWindow.xaml.cs ├── UserControls │ ├── GameNameDialog.xaml │ ├── GameNameDialog.xaml.cs │ ├── SelectTransLangDialog.xaml │ └── SelectTransLangDialog.xaml.cs ├── Utils.cs ├── app.manifest ├── lang │ ├── en-US.xaml │ └── zh-CN.xaml ├── logo.ico └── textRepairPlugins │ ├── __init__.py │ └── example.py ├── MisakaTranslator.sln ├── OCRLibrary ├── BaiduGeneralOCR.cs ├── ImageProcFunc.cs ├── OCRCommon.cs ├── OCREngine.cs ├── OCRLibrary.csproj ├── Properties │ └── AssemblyInfo.cs ├── ScreenCapture.cs ├── Tesseract5OCR.cs └── TesseractOCR.cs ├── README.md ├── README_EN.md ├── SQLHelperLibrary ├── App.config ├── GameLibraryHelper.cs ├── Properties │ └── AssemblyInfo.cs ├── SQLHelper.cs └── SQLHelperLibrary.csproj ├── THANKLIST.MD ├── TTSHelperLibrary ├── Properties │ └── AssemblyInfo.cs ├── TTSHelperLibrary.csproj └── TextSpeechHelper.cs ├── TextHookLibrary ├── ClipboardNotification.cs ├── ProcessHelper.cs ├── Properties │ └── AssemblyInfo.cs ├── RecvEventArgs.cs ├── TextHookHandle.cs ├── TextHookHandle_DLL.cs ├── TextHookLibrary.csproj └── TextHostLib.cs ├── TextRepairLibrary ├── Properties │ └── AssemblyInfo.cs ├── TextRepair.cs └── TextRepairLibrary.csproj ├── TransOptimizationLibrary ├── AfterTransHandle.cs ├── BeforeTransHandle.cs ├── NounTransOptimization.cs ├── Properties │ └── AssemblyInfo.cs └── TransOptimizationLibrary.csproj ├── TranslatorLibrary ├── AlapiTranslator.cs ├── ArtificialTranslator.cs ├── BaiduTranslator.cs ├── CaiyunTranslator.cs ├── CommonFunction.cs ├── DreyeTranslator.cs ├── GoogleCNTranslator.cs ├── ITranslator.cs ├── JBeijingTranslator.cs ├── KingsoftFastAITTranslator.cs ├── Properties │ └── AssemblyInfo.cs ├── TencentFYJTranslator.cs ├── TencentOldTranslator.cs ├── TranslatorLibrary.csproj ├── XiaoniuTranslator.cs ├── YoudaoTranslator.cs └── app.config ├── background.png └── index.html /.github/ISSUE_TEMPLATE/Bug_Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/.github/ISSUE_TEMPLATE/Bug_Report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/.github/ISSUE_TEMPLATE/Feature_Request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/.github/ISSUE_TEMPLATE/TODO.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/.gitignore -------------------------------------------------------------------------------- /About.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/About.jpg -------------------------------------------------------------------------------- /AliyunRequestHandler/.gitignore: -------------------------------------------------------------------------------- 1 | api-token 2 | node_modules/ -------------------------------------------------------------------------------- /AliyunRequestHandler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/AliyunRequestHandler/index.js -------------------------------------------------------------------------------- /AliyunRequestHandler/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/AliyunRequestHandler/package-lock.json -------------------------------------------------------------------------------- /AliyunRequestHandler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/AliyunRequestHandler/package.json -------------------------------------------------------------------------------- /AliyunRequestHandler/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/AliyunRequestHandler/test.js -------------------------------------------------------------------------------- /ArtificialTransHelperLibrary/ArtificialTransHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/ArtificialTransHelperLibrary/ArtificialTransHelper.cs -------------------------------------------------------------------------------- /ArtificialTransHelperLibrary/ArtificialTransHelperLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/ArtificialTransHelperLibrary/ArtificialTransHelperLibrary.csproj -------------------------------------------------------------------------------- /ArtificialTransHelperLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/ArtificialTransHelperLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DictionaryHelperLibrary/DictionaryHelperLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/DictionaryHelperLibrary/DictionaryHelperLibrary.csproj -------------------------------------------------------------------------------- /DictionaryHelperLibrary/IDict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/DictionaryHelperLibrary/IDict.cs -------------------------------------------------------------------------------- /DictionaryHelperLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/DictionaryHelperLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DictionaryHelperLibrary/XxgJpzhDict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/DictionaryHelperLibrary/XxgJpzhDict.cs -------------------------------------------------------------------------------- /KeyboardMouseHookLibrary/FindWindowInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/KeyboardMouseHookLibrary/FindWindowInfo.cs -------------------------------------------------------------------------------- /KeyboardMouseHookLibrary/GlobalHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/KeyboardMouseHookLibrary/GlobalHook.cs -------------------------------------------------------------------------------- /KeyboardMouseHookLibrary/GlobalHotKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/KeyboardMouseHookLibrary/GlobalHotKey.cs -------------------------------------------------------------------------------- /KeyboardMouseHookLibrary/KeyboardMouseHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/KeyboardMouseHookLibrary/KeyboardMouseHook.cs -------------------------------------------------------------------------------- /KeyboardMouseHookLibrary/KeyboardMouseHookLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/KeyboardMouseHookLibrary/KeyboardMouseHookLibrary.csproj -------------------------------------------------------------------------------- /KeyboardMouseHookLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/KeyboardMouseHookLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KeyboardMouseMonitor/KeyboardMouseMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/KeyboardMouseMonitor/KeyboardMouseMonitor.cpp -------------------------------------------------------------------------------- /KeyboardMouseMonitor/KeyboardMouseMonitor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/KeyboardMouseMonitor/KeyboardMouseMonitor.vcxproj -------------------------------------------------------------------------------- /KeyboardMouseMonitor/KeyboardMouseMonitor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/KeyboardMouseMonitor/KeyboardMouseMonitor.vcxproj.filters -------------------------------------------------------------------------------- /KeyboardMouseMonitor/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/KeyboardMouseMonitor/pch.cpp -------------------------------------------------------------------------------- /KeyboardMouseMonitor/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/KeyboardMouseMonitor/pch.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/LICENSE -------------------------------------------------------------------------------- /MecabHelperLibrary/MecabHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MecabHelperLibrary/MecabHelper.cs -------------------------------------------------------------------------------- /MecabHelperLibrary/MecabHelperLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MecabHelperLibrary/MecabHelperLibrary.csproj -------------------------------------------------------------------------------- /MecabHelperLibrary/NoWordSplit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MecabHelperLibrary/NoWordSplit.cs -------------------------------------------------------------------------------- /MecabHelperLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MecabHelperLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MecabHelperLibrary/WordSpliter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MecabHelperLibrary/WordSpliter.cs -------------------------------------------------------------------------------- /MisakaPatchPackager/AesEncrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaPatchPackager/AesEncrypt.cs -------------------------------------------------------------------------------- /MisakaPatchPackager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaPatchPackager/App.config -------------------------------------------------------------------------------- /MisakaPatchPackager/IEncrypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaPatchPackager/IEncrypter.cs -------------------------------------------------------------------------------- /MisakaPatchPackager/MisakaPatchPackager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaPatchPackager/MisakaPatchPackager.csproj -------------------------------------------------------------------------------- /MisakaPatchPackager/NopEncrypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaPatchPackager/NopEncrypter.cs -------------------------------------------------------------------------------- /MisakaPatchPackager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaPatchPackager/Program.cs -------------------------------------------------------------------------------- /MisakaPatchPackager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaPatchPackager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MisakaPatchPackager/XorEncrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaPatchPackager/XorEncrypt.cs -------------------------------------------------------------------------------- /MisakaPatchPackager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaPatchPackager/packages.config -------------------------------------------------------------------------------- /MisakaTranslator-WPF/AddOptWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/AddOptWindow.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/AddOptWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/AddOptWindow.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/App.config -------------------------------------------------------------------------------- /MisakaTranslator-WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/App.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/App.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/Appearance.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/Appearance.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/ArtificialTransAddWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/ArtificialTransAddWindow.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/ArtificialTransAddWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/ArtificialTransAddWindow.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/ComicTranslator/ComicTransMainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/ComicTranslator/ComicTransMainWindow.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/ComicTranslator/ComicTransMainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/ComicTranslator/ComicTransMainWindow.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/ComicTranslator/ImageProcWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/ComicTranslator/ImageProcWindow.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/ComicTranslator/ImageProcWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/ComicTranslator/ImageProcWindow.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/Common.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/DictResWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/DictResWindow.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/DictResWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/DictResWindow.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GameGuideWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GameGuideWindow.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GameGuideWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GameGuideWindow.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GlobalOCRWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GlobalOCRWindow.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GlobalOCRWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GlobalOCRWindow.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/ChooseLanguagePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/ChooseLanguagePage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/ChooseLanguagePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/ChooseLanguagePage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/Completation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/Completation.png -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/CompletationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/CompletationPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/CompletationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/CompletationPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/Hook/ChooseGamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/Hook/ChooseGamePage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/Hook/ChooseGamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/Hook/ChooseGamePage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/Hook/ChooseHookFuncPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/Hook/ChooseHookFuncPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/Hook/ChooseHookFuncPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/Hook/ChooseHookFuncPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/Hook/ChooseTextRepairFuncPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/Hook/ChooseTextRepairFuncPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/Hook/ChooseTextRepairFuncPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/Hook/ChooseTextRepairFuncPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/Hook/ReChooseHookFuncPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/Hook/ReChooseHookFuncPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/Hook/ReChooseHookFuncPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/Hook/ReChooseHookFuncPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/OCR/ChooseHandleFuncPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/OCR/ChooseHandleFuncPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/OCR/ChooseHandleFuncPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/OCR/ChooseHandleFuncPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/OCR/ChooseHotKeyPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/OCR/ChooseHotKeyPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/OCR/ChooseHotKeyPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/OCR/ChooseHotKeyPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/OCR/ChooseOCRAreaPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/OCR/ChooseOCRAreaPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/OCR/ChooseOCRAreaPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/OCR/ChooseOCRAreaPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/GuidePages/PageChangeRoutedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/GuidePages/PageChangeRoutedEventArgs.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/IAppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/IAppSettings.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/MainWindow.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/MisakaTranslator-WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/MisakaTranslator-WPF.csproj -------------------------------------------------------------------------------- /MisakaTranslator-WPF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/PublishATWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/PublishATWindow.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/PublishATWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/PublishATWindow.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/RemoteATWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/RemoteATWindow.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/RemoteATWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/RemoteATWindow.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/ScreenCaptureWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/ScreenCaptureWindow.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/ScreenCaptureWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/ScreenCaptureWindow.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/AboutPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/AboutPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/Aboutv2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/Aboutv2.jpg -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/ArtificialTransSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/ArtificialTransSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/ArtificialTransSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/ArtificialTransSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/DictionaryPages/XxgJpZhDictPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/DictionaryPages/XxgJpZhDictPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/DictionaryPages/XxgJpZhDictPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/DictionaryPages/XxgJpZhDictPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/HookSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/HookSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/HookSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/HookSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/LESettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/LESettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/LESettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/LESettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/OCRPages/BaiduOCRSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/OCRPages/BaiduOCRSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/OCRPages/BaiduOCRSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/OCRPages/BaiduOCRSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/OCRPages/OCRGeneralSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/OCRPages/OCRGeneralSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/OCRPages/OCRGeneralSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/OCRPages/OCRGeneralSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/OCRPages/TesseractOCR5SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/OCRPages/TesseractOCR5SettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/OCRPages/TesseractOCR5SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/OCRPages/TesseractOCR5SettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/SoftwareSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/SoftwareSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/SoftwareSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/SoftwareSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TTSSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TTSSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TTSSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TTSSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/BaiduTransSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/BaiduTransSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/BaiduTransSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/BaiduTransSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/CaiyunTransSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/CaiyunTransSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/CaiyunTransSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/CaiyunTransSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/DreyeTransSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/DreyeTransSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/DreyeTransSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/DreyeTransSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/JbeijingTransSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/JbeijingTransSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/JbeijingTransSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/JbeijingTransSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/KingsoftFAITTransSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/KingsoftFAITTransSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/KingsoftFAITTransSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/KingsoftFAITTransSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/LocalTransSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/LocalTransSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/LocalTransSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/LocalTransSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/TencentFYJTransSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/TencentFYJTransSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/TencentFYJTransSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/TencentFYJTransSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/TencentOldTransSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/TencentOldTransSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/TencentOldTransSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/TencentOldTransSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/TranslatorGeneralSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/TranslatorGeneralSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/TranslatorGeneralSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/TranslatorGeneralSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/XiaoniuTransSettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/XiaoniuTransSettingsPage.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsPages/TranslatorPages/XiaoniuTransSettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsPages/TranslatorPages/XiaoniuTransSettingsPage.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsWindow.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/TransWinSettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/TransWinSettingsWindow.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/TransWinSettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/TransWinSettingsWindow.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/TranslateWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/TranslateWindow.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/TranslateWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/TranslateWindow.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/UserControls/GameNameDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/UserControls/GameNameDialog.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/UserControls/GameNameDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/UserControls/GameNameDialog.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/UserControls/SelectTransLangDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/UserControls/SelectTransLangDialog.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/UserControls/SelectTransLangDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/UserControls/SelectTransLangDialog.xaml.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/Utils.cs -------------------------------------------------------------------------------- /MisakaTranslator-WPF/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/app.manifest -------------------------------------------------------------------------------- /MisakaTranslator-WPF/lang/en-US.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/lang/en-US.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/lang/zh-CN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/lang/zh-CN.xaml -------------------------------------------------------------------------------- /MisakaTranslator-WPF/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/logo.ico -------------------------------------------------------------------------------- /MisakaTranslator-WPF/textRepairPlugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MisakaTranslator-WPF/textRepairPlugins/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator-WPF/textRepairPlugins/example.py -------------------------------------------------------------------------------- /MisakaTranslator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/MisakaTranslator.sln -------------------------------------------------------------------------------- /OCRLibrary/BaiduGeneralOCR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/OCRLibrary/BaiduGeneralOCR.cs -------------------------------------------------------------------------------- /OCRLibrary/ImageProcFunc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/OCRLibrary/ImageProcFunc.cs -------------------------------------------------------------------------------- /OCRLibrary/OCRCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/OCRLibrary/OCRCommon.cs -------------------------------------------------------------------------------- /OCRLibrary/OCREngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/OCRLibrary/OCREngine.cs -------------------------------------------------------------------------------- /OCRLibrary/OCRLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/OCRLibrary/OCRLibrary.csproj -------------------------------------------------------------------------------- /OCRLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/OCRLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OCRLibrary/ScreenCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/OCRLibrary/ScreenCapture.cs -------------------------------------------------------------------------------- /OCRLibrary/Tesseract5OCR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/OCRLibrary/Tesseract5OCR.cs -------------------------------------------------------------------------------- /OCRLibrary/TesseractOCR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/OCRLibrary/TesseractOCR.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/README_EN.md -------------------------------------------------------------------------------- /SQLHelperLibrary/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/SQLHelperLibrary/App.config -------------------------------------------------------------------------------- /SQLHelperLibrary/GameLibraryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/SQLHelperLibrary/GameLibraryHelper.cs -------------------------------------------------------------------------------- /SQLHelperLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/SQLHelperLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SQLHelperLibrary/SQLHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/SQLHelperLibrary/SQLHelper.cs -------------------------------------------------------------------------------- /SQLHelperLibrary/SQLHelperLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/SQLHelperLibrary/SQLHelperLibrary.csproj -------------------------------------------------------------------------------- /THANKLIST.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/THANKLIST.MD -------------------------------------------------------------------------------- /TTSHelperLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TTSHelperLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TTSHelperLibrary/TTSHelperLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TTSHelperLibrary/TTSHelperLibrary.csproj -------------------------------------------------------------------------------- /TTSHelperLibrary/TextSpeechHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TTSHelperLibrary/TextSpeechHelper.cs -------------------------------------------------------------------------------- /TextHookLibrary/ClipboardNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TextHookLibrary/ClipboardNotification.cs -------------------------------------------------------------------------------- /TextHookLibrary/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TextHookLibrary/ProcessHelper.cs -------------------------------------------------------------------------------- /TextHookLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TextHookLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TextHookLibrary/RecvEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TextHookLibrary/RecvEventArgs.cs -------------------------------------------------------------------------------- /TextHookLibrary/TextHookHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TextHookLibrary/TextHookHandle.cs -------------------------------------------------------------------------------- /TextHookLibrary/TextHookHandle_DLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TextHookLibrary/TextHookHandle_DLL.cs -------------------------------------------------------------------------------- /TextHookLibrary/TextHookLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TextHookLibrary/TextHookLibrary.csproj -------------------------------------------------------------------------------- /TextHookLibrary/TextHostLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TextHookLibrary/TextHostLib.cs -------------------------------------------------------------------------------- /TextRepairLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TextRepairLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TextRepairLibrary/TextRepair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TextRepairLibrary/TextRepair.cs -------------------------------------------------------------------------------- /TextRepairLibrary/TextRepairLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TextRepairLibrary/TextRepairLibrary.csproj -------------------------------------------------------------------------------- /TransOptimizationLibrary/AfterTransHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TransOptimizationLibrary/AfterTransHandle.cs -------------------------------------------------------------------------------- /TransOptimizationLibrary/BeforeTransHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TransOptimizationLibrary/BeforeTransHandle.cs -------------------------------------------------------------------------------- /TransOptimizationLibrary/NounTransOptimization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TransOptimizationLibrary/NounTransOptimization.cs -------------------------------------------------------------------------------- /TransOptimizationLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TransOptimizationLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TransOptimizationLibrary/TransOptimizationLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TransOptimizationLibrary/TransOptimizationLibrary.csproj -------------------------------------------------------------------------------- /TranslatorLibrary/AlapiTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/AlapiTranslator.cs -------------------------------------------------------------------------------- /TranslatorLibrary/ArtificialTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/ArtificialTranslator.cs -------------------------------------------------------------------------------- /TranslatorLibrary/BaiduTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/BaiduTranslator.cs -------------------------------------------------------------------------------- /TranslatorLibrary/CaiyunTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/CaiyunTranslator.cs -------------------------------------------------------------------------------- /TranslatorLibrary/CommonFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/CommonFunction.cs -------------------------------------------------------------------------------- /TranslatorLibrary/DreyeTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/DreyeTranslator.cs -------------------------------------------------------------------------------- /TranslatorLibrary/GoogleCNTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/GoogleCNTranslator.cs -------------------------------------------------------------------------------- /TranslatorLibrary/ITranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/ITranslator.cs -------------------------------------------------------------------------------- /TranslatorLibrary/JBeijingTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/JBeijingTranslator.cs -------------------------------------------------------------------------------- /TranslatorLibrary/KingsoftFastAITTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/KingsoftFastAITTranslator.cs -------------------------------------------------------------------------------- /TranslatorLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TranslatorLibrary/TencentFYJTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/TencentFYJTranslator.cs -------------------------------------------------------------------------------- /TranslatorLibrary/TencentOldTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/TencentOldTranslator.cs -------------------------------------------------------------------------------- /TranslatorLibrary/TranslatorLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/TranslatorLibrary.csproj -------------------------------------------------------------------------------- /TranslatorLibrary/XiaoniuTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/XiaoniuTranslator.cs -------------------------------------------------------------------------------- /TranslatorLibrary/YoudaoTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/YoudaoTranslator.cs -------------------------------------------------------------------------------- /TranslatorLibrary/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/TranslatorLibrary/app.config -------------------------------------------------------------------------------- /background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/background.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsc6924/MisakaPatcher/HEAD/index.html --------------------------------------------------------------------------------