├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── codeql-analysis.yml ├── .gitignore ├── LICENCE.rtf ├── LICENCE └── NAudioLicense.txt ├── LICENSE ├── README.md ├── SAPIForVOICEVOX.sln ├── SAPIForVOICEVOX ├── EnglishToKana │ ├── EnglishKanaDictionary.cs │ ├── Licence.txt │ └── eng2kanaDict.txt ├── Exception │ ├── VoiceNotificationException.cs │ ├── VoiceVoxConnectionException.cs │ ├── VoiceVoxEngineException.cs │ └── VoiceVoxNotFoundException.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── SAPIForVOICEVOX.csproj ├── VoiceVoxTTSEngine.cs ├── packages.config ├── エンジンエラーです.wav ├── ボイスボックスが見つかりません.wav └── ボイスボックスと通信ができません.wav ├── SAPIGetStaticValueLib ├── SAPIGetStaticValueLib.vcxproj ├── SAPIGetStaticValueLib.vcxproj.filters ├── Source.def ├── dllmain.cpp ├── framework.h ├── pch.cpp └── pch.h ├── SFVvCommon ├── Common.cs ├── Properties │ └── AssemblyInfo.cs ├── SFVvCommon.csproj ├── SapiStyle.cs ├── StyleBase.cs ├── StyleComparer.cs └── VoicevoxStyle.cs ├── SFVvConsole ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── SFVvConsole.csproj ├── Setting ├── App.config ├── App.xaml ├── App.xaml.cs ├── Converter │ ├── DoubleStringConverter.cs │ ├── ParameterValueModeToBool.cs │ └── SynthesisSettingModeToBool.cs ├── Model │ ├── GeneralSetting.cs │ ├── ParameterValueMode.cs │ ├── SynthesisParameter.cs │ └── SynthesisSettingMode.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Setting.csproj ├── View │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── VersionInfoWindow.xaml │ ├── VersionInfoWindow.xaml.cs │ ├── voicevoxParameterSlider.xaml │ └── voicevoxParameterSlider.xaml.cs ├── ViewModel │ └── ViewModel.cs ├── app.manifest └── icon │ ├── License.txt │ └── settings.ico ├── Setup └── Setup.vdproj ├── Setup64 └── Setup64.vdproj ├── SetupCustomActions ├── CustomActions.cs ├── Properties │ └── AssemblyInfo.cs └── SetupCustomActions.csproj ├── StyleRegistrationTool ├── App.config ├── App.xaml ├── App.xaml.cs ├── Licence │ └── WindowsAPICodePackLicence.txt ├── Model │ └── NameAndPort.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── StyleRegistrationTool.csproj ├── View │ ├── ChangePortWindow.xaml │ ├── ChangePortWindow.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── WaitingCircle.xaml │ └── WaitingCircle.xaml.cs ├── ViewModel │ └── MainViewModel.cs ├── app.manifest ├── icon │ ├── License.txt │ └── users-alt.ico └── packages.config └── tools └── change_version.csx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/LICENCE.rtf -------------------------------------------------------------------------------- /LICENCE/NAudioLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/LICENCE/NAudioLicense.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/README.md -------------------------------------------------------------------------------- /SAPIForVOICEVOX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX.sln -------------------------------------------------------------------------------- /SAPIForVOICEVOX/EnglishToKana/EnglishKanaDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/EnglishToKana/EnglishKanaDictionary.cs -------------------------------------------------------------------------------- /SAPIForVOICEVOX/EnglishToKana/Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/EnglishToKana/Licence.txt -------------------------------------------------------------------------------- /SAPIForVOICEVOX/EnglishToKana/eng2kanaDict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/EnglishToKana/eng2kanaDict.txt -------------------------------------------------------------------------------- /SAPIForVOICEVOX/Exception/VoiceNotificationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/Exception/VoiceNotificationException.cs -------------------------------------------------------------------------------- /SAPIForVOICEVOX/Exception/VoiceVoxConnectionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/Exception/VoiceVoxConnectionException.cs -------------------------------------------------------------------------------- /SAPIForVOICEVOX/Exception/VoiceVoxEngineException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/Exception/VoiceVoxEngineException.cs -------------------------------------------------------------------------------- /SAPIForVOICEVOX/Exception/VoiceVoxNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/Exception/VoiceVoxNotFoundException.cs -------------------------------------------------------------------------------- /SAPIForVOICEVOX/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SAPIForVOICEVOX/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SAPIForVOICEVOX/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/Properties/Resources.resx -------------------------------------------------------------------------------- /SAPIForVOICEVOX/SAPIForVOICEVOX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/SAPIForVOICEVOX.csproj -------------------------------------------------------------------------------- /SAPIForVOICEVOX/VoiceVoxTTSEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/VoiceVoxTTSEngine.cs -------------------------------------------------------------------------------- /SAPIForVOICEVOX/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/packages.config -------------------------------------------------------------------------------- /SAPIForVOICEVOX/エンジンエラーです.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/エンジンエラーです.wav -------------------------------------------------------------------------------- /SAPIForVOICEVOX/ボイスボックスが見つかりません.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/ボイスボックスが見つかりません.wav -------------------------------------------------------------------------------- /SAPIForVOICEVOX/ボイスボックスと通信ができません.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIForVOICEVOX/ボイスボックスと通信ができません.wav -------------------------------------------------------------------------------- /SAPIGetStaticValueLib/SAPIGetStaticValueLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIGetStaticValueLib/SAPIGetStaticValueLib.vcxproj -------------------------------------------------------------------------------- /SAPIGetStaticValueLib/SAPIGetStaticValueLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIGetStaticValueLib/SAPIGetStaticValueLib.vcxproj.filters -------------------------------------------------------------------------------- /SAPIGetStaticValueLib/Source.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIGetStaticValueLib/Source.def -------------------------------------------------------------------------------- /SAPIGetStaticValueLib/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIGetStaticValueLib/dllmain.cpp -------------------------------------------------------------------------------- /SAPIGetStaticValueLib/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIGetStaticValueLib/framework.h -------------------------------------------------------------------------------- /SAPIGetStaticValueLib/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIGetStaticValueLib/pch.cpp -------------------------------------------------------------------------------- /SAPIGetStaticValueLib/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SAPIGetStaticValueLib/pch.h -------------------------------------------------------------------------------- /SFVvCommon/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SFVvCommon/Common.cs -------------------------------------------------------------------------------- /SFVvCommon/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SFVvCommon/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SFVvCommon/SFVvCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SFVvCommon/SFVvCommon.csproj -------------------------------------------------------------------------------- /SFVvCommon/SapiStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SFVvCommon/SapiStyle.cs -------------------------------------------------------------------------------- /SFVvCommon/StyleBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SFVvCommon/StyleBase.cs -------------------------------------------------------------------------------- /SFVvCommon/StyleComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SFVvCommon/StyleComparer.cs -------------------------------------------------------------------------------- /SFVvCommon/VoicevoxStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SFVvCommon/VoicevoxStyle.cs -------------------------------------------------------------------------------- /SFVvConsole/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SFVvConsole/App.config -------------------------------------------------------------------------------- /SFVvConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SFVvConsole/Program.cs -------------------------------------------------------------------------------- /SFVvConsole/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SFVvConsole/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SFVvConsole/SFVvConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SFVvConsole/SFVvConsole.csproj -------------------------------------------------------------------------------- /Setting/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/App.config -------------------------------------------------------------------------------- /Setting/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/App.xaml -------------------------------------------------------------------------------- /Setting/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/App.xaml.cs -------------------------------------------------------------------------------- /Setting/Converter/DoubleStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/Converter/DoubleStringConverter.cs -------------------------------------------------------------------------------- /Setting/Converter/ParameterValueModeToBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/Converter/ParameterValueModeToBool.cs -------------------------------------------------------------------------------- /Setting/Converter/SynthesisSettingModeToBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/Converter/SynthesisSettingModeToBool.cs -------------------------------------------------------------------------------- /Setting/Model/GeneralSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/Model/GeneralSetting.cs -------------------------------------------------------------------------------- /Setting/Model/ParameterValueMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/Model/ParameterValueMode.cs -------------------------------------------------------------------------------- /Setting/Model/SynthesisParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/Model/SynthesisParameter.cs -------------------------------------------------------------------------------- /Setting/Model/SynthesisSettingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/Model/SynthesisSettingMode.cs -------------------------------------------------------------------------------- /Setting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Setting/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Setting/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/Properties/Resources.resx -------------------------------------------------------------------------------- /Setting/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Setting/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/Properties/Settings.settings -------------------------------------------------------------------------------- /Setting/Setting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/Setting.csproj -------------------------------------------------------------------------------- /Setting/View/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/View/MainWindow.xaml -------------------------------------------------------------------------------- /Setting/View/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/View/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Setting/View/VersionInfoWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/View/VersionInfoWindow.xaml -------------------------------------------------------------------------------- /Setting/View/VersionInfoWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/View/VersionInfoWindow.xaml.cs -------------------------------------------------------------------------------- /Setting/View/voicevoxParameterSlider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/View/voicevoxParameterSlider.xaml -------------------------------------------------------------------------------- /Setting/View/voicevoxParameterSlider.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/View/voicevoxParameterSlider.xaml.cs -------------------------------------------------------------------------------- /Setting/ViewModel/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/ViewModel/ViewModel.cs -------------------------------------------------------------------------------- /Setting/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/app.manifest -------------------------------------------------------------------------------- /Setting/icon/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/icon/License.txt -------------------------------------------------------------------------------- /Setting/icon/settings.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setting/icon/settings.ico -------------------------------------------------------------------------------- /Setup/Setup.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setup/Setup.vdproj -------------------------------------------------------------------------------- /Setup64/Setup64.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/Setup64/Setup64.vdproj -------------------------------------------------------------------------------- /SetupCustomActions/CustomActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SetupCustomActions/CustomActions.cs -------------------------------------------------------------------------------- /SetupCustomActions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SetupCustomActions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SetupCustomActions/SetupCustomActions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/SetupCustomActions/SetupCustomActions.csproj -------------------------------------------------------------------------------- /StyleRegistrationTool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/App.config -------------------------------------------------------------------------------- /StyleRegistrationTool/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/App.xaml -------------------------------------------------------------------------------- /StyleRegistrationTool/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/App.xaml.cs -------------------------------------------------------------------------------- /StyleRegistrationTool/Licence/WindowsAPICodePackLicence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/Licence/WindowsAPICodePackLicence.txt -------------------------------------------------------------------------------- /StyleRegistrationTool/Model/NameAndPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/Model/NameAndPort.cs -------------------------------------------------------------------------------- /StyleRegistrationTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StyleRegistrationTool/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /StyleRegistrationTool/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/Properties/Resources.resx -------------------------------------------------------------------------------- /StyleRegistrationTool/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /StyleRegistrationTool/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/Properties/Settings.settings -------------------------------------------------------------------------------- /StyleRegistrationTool/StyleRegistrationTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/StyleRegistrationTool.csproj -------------------------------------------------------------------------------- /StyleRegistrationTool/View/ChangePortWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/View/ChangePortWindow.xaml -------------------------------------------------------------------------------- /StyleRegistrationTool/View/ChangePortWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/View/ChangePortWindow.xaml.cs -------------------------------------------------------------------------------- /StyleRegistrationTool/View/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/View/MainWindow.xaml -------------------------------------------------------------------------------- /StyleRegistrationTool/View/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/View/MainWindow.xaml.cs -------------------------------------------------------------------------------- /StyleRegistrationTool/View/WaitingCircle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/View/WaitingCircle.xaml -------------------------------------------------------------------------------- /StyleRegistrationTool/View/WaitingCircle.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/View/WaitingCircle.xaml.cs -------------------------------------------------------------------------------- /StyleRegistrationTool/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /StyleRegistrationTool/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/app.manifest -------------------------------------------------------------------------------- /StyleRegistrationTool/icon/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/icon/License.txt -------------------------------------------------------------------------------- /StyleRegistrationTool/icon/users-alt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/icon/users-alt.ico -------------------------------------------------------------------------------- /StyleRegistrationTool/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/StyleRegistrationTool/packages.config -------------------------------------------------------------------------------- /tools/change_version.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shigobu/SAPIForVOICEVOX/HEAD/tools/change_version.csx --------------------------------------------------------------------------------