├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RPGMakerUtils.sln ├── RPGMakerUtils ├── App.config ├── App.xaml ├── App.xaml.cs ├── Converters │ ├── FileExistsConverter.cs │ ├── FileNameConverter.cs │ ├── IntStringValueConverter.cs │ ├── NotConverter.cs │ ├── RPGMakerVersionConverter.cs │ └── VersionWwwPathConverter.cs ├── FodyWeavers.xml ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Messages │ ├── GameInfoRequestMessage.cs │ ├── GameInfoUpdatedMessage.cs │ ├── ProgramRunningMessage.cs │ └── TranslateJsonUpdatedMessage.cs ├── Models │ ├── GameDataFile.cs │ ├── PasswordDialog.cs │ ├── PluginVersions.cs │ ├── RPGMakerVersion.cs │ └── TranslateTarget.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RPGMakerUtils.csproj ├── Resources │ ├── BlackWhiteList.cs │ ├── FileIOUtils.cs │ ├── JtJsonTranslationManager.Broader.js │ ├── JtJsonTranslationManager.Comprehensive.js │ ├── JtJsonTranslationManager.Faster.js │ ├── JtJsonTranslationManager.js │ ├── RPGMakerMVZTranslator.cs │ ├── RPGMakerPasswordFinder.cs │ ├── RegexUtils.cs │ ├── Utils.cs │ ├── rpg_mv_cheat.zip │ └── rpg_mz_cheat.zip ├── ViewModels │ ├── AddCheatViewModel.cs │ ├── CommonViewModel.cs │ ├── EditFontViewModel.cs │ ├── ImportViewModel.cs │ ├── MainViewModel.cs │ ├── SearchPasswordViewModel.cs │ ├── TranslateViewModel.cs │ └── TranslationPluginViewModel.cs ├── Views │ ├── AboutUserControl.xaml │ ├── AboutUserControl.xaml.cs │ ├── AddCheatUserControl.xaml │ ├── AddCheatUserControl.xaml.cs │ ├── EditFontUserControl.xaml │ ├── EditFontUserControl.xaml.cs │ ├── ImportUserControl.xaml │ ├── ImportUserControl.xaml.cs │ ├── SearchPasswordUserControl.xaml │ ├── SearchPasswordUserControl.xaml.cs │ ├── TranslateUserControl.xaml │ ├── TranslateUserControl.xaml.cs │ ├── TranslationPluginUserControl.xaml │ ├── TranslationPluginUserControl.xaml.cs │ ├── Utf8UserControl.xaml │ └── Utf8UserControl.xaml.cs ├── favicon.ico └── packages.config └── assets └── 1.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/README.md -------------------------------------------------------------------------------- /RPGMakerUtils.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils.sln -------------------------------------------------------------------------------- /RPGMakerUtils/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/App.config -------------------------------------------------------------------------------- /RPGMakerUtils/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/App.xaml -------------------------------------------------------------------------------- /RPGMakerUtils/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/App.xaml.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Converters/FileExistsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Converters/FileExistsConverter.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Converters/FileNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Converters/FileNameConverter.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Converters/IntStringValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Converters/IntStringValueConverter.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Converters/NotConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Converters/NotConverter.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Converters/RPGMakerVersionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Converters/RPGMakerVersionConverter.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Converters/VersionWwwPathConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Converters/VersionWwwPathConverter.cs -------------------------------------------------------------------------------- /RPGMakerUtils/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/FodyWeavers.xml -------------------------------------------------------------------------------- /RPGMakerUtils/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/MainWindow.xaml -------------------------------------------------------------------------------- /RPGMakerUtils/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/MainWindow.xaml.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Messages/GameInfoRequestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Messages/GameInfoRequestMessage.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Messages/GameInfoUpdatedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Messages/GameInfoUpdatedMessage.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Messages/ProgramRunningMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Messages/ProgramRunningMessage.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Messages/TranslateJsonUpdatedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Messages/TranslateJsonUpdatedMessage.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Models/GameDataFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Models/GameDataFile.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Models/PasswordDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Models/PasswordDialog.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Models/PluginVersions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Models/PluginVersions.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Models/RPGMakerVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Models/RPGMakerVersion.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Models/TranslateTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Models/TranslateTarget.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Properties/Resources.resx -------------------------------------------------------------------------------- /RPGMakerUtils/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Properties/Settings.settings -------------------------------------------------------------------------------- /RPGMakerUtils/RPGMakerUtils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/RPGMakerUtils.csproj -------------------------------------------------------------------------------- /RPGMakerUtils/Resources/BlackWhiteList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Resources/BlackWhiteList.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Resources/FileIOUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Resources/FileIOUtils.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Resources/JtJsonTranslationManager.Broader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Resources/JtJsonTranslationManager.Broader.js -------------------------------------------------------------------------------- /RPGMakerUtils/Resources/JtJsonTranslationManager.Comprehensive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Resources/JtJsonTranslationManager.Comprehensive.js -------------------------------------------------------------------------------- /RPGMakerUtils/Resources/JtJsonTranslationManager.Faster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Resources/JtJsonTranslationManager.Faster.js -------------------------------------------------------------------------------- /RPGMakerUtils/Resources/JtJsonTranslationManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Resources/JtJsonTranslationManager.js -------------------------------------------------------------------------------- /RPGMakerUtils/Resources/RPGMakerMVZTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Resources/RPGMakerMVZTranslator.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Resources/RPGMakerPasswordFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Resources/RPGMakerPasswordFinder.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Resources/RegexUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Resources/RegexUtils.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Resources/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Resources/Utils.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Resources/rpg_mv_cheat.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Resources/rpg_mv_cheat.zip -------------------------------------------------------------------------------- /RPGMakerUtils/Resources/rpg_mz_cheat.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Resources/rpg_mz_cheat.zip -------------------------------------------------------------------------------- /RPGMakerUtils/ViewModels/AddCheatViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/ViewModels/AddCheatViewModel.cs -------------------------------------------------------------------------------- /RPGMakerUtils/ViewModels/CommonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/ViewModels/CommonViewModel.cs -------------------------------------------------------------------------------- /RPGMakerUtils/ViewModels/EditFontViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/ViewModels/EditFontViewModel.cs -------------------------------------------------------------------------------- /RPGMakerUtils/ViewModels/ImportViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/ViewModels/ImportViewModel.cs -------------------------------------------------------------------------------- /RPGMakerUtils/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /RPGMakerUtils/ViewModels/SearchPasswordViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/ViewModels/SearchPasswordViewModel.cs -------------------------------------------------------------------------------- /RPGMakerUtils/ViewModels/TranslateViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/ViewModels/TranslateViewModel.cs -------------------------------------------------------------------------------- /RPGMakerUtils/ViewModels/TranslationPluginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/ViewModels/TranslationPluginViewModel.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Views/AboutUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/AboutUserControl.xaml -------------------------------------------------------------------------------- /RPGMakerUtils/Views/AboutUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/AboutUserControl.xaml.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Views/AddCheatUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/AddCheatUserControl.xaml -------------------------------------------------------------------------------- /RPGMakerUtils/Views/AddCheatUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/AddCheatUserControl.xaml.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Views/EditFontUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/EditFontUserControl.xaml -------------------------------------------------------------------------------- /RPGMakerUtils/Views/EditFontUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/EditFontUserControl.xaml.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Views/ImportUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/ImportUserControl.xaml -------------------------------------------------------------------------------- /RPGMakerUtils/Views/ImportUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/ImportUserControl.xaml.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Views/SearchPasswordUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/SearchPasswordUserControl.xaml -------------------------------------------------------------------------------- /RPGMakerUtils/Views/SearchPasswordUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/SearchPasswordUserControl.xaml.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Views/TranslateUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/TranslateUserControl.xaml -------------------------------------------------------------------------------- /RPGMakerUtils/Views/TranslateUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/TranslateUserControl.xaml.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Views/TranslationPluginUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/TranslationPluginUserControl.xaml -------------------------------------------------------------------------------- /RPGMakerUtils/Views/TranslationPluginUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/TranslationPluginUserControl.xaml.cs -------------------------------------------------------------------------------- /RPGMakerUtils/Views/Utf8UserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/Utf8UserControl.xaml -------------------------------------------------------------------------------- /RPGMakerUtils/Views/Utf8UserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/Views/Utf8UserControl.xaml.cs -------------------------------------------------------------------------------- /RPGMakerUtils/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/favicon.ico -------------------------------------------------------------------------------- /RPGMakerUtils/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/RPGMakerUtils/packages.config -------------------------------------------------------------------------------- /assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Justype/RPGMakerUtils/HEAD/assets/1.png --------------------------------------------------------------------------------