├── .gitignore ├── LICENSE ├── README.md ├── Yomiage.API ├── ApiServer.cs ├── CommandService.cs ├── ControllerMapper.cs ├── ServerInfo.cs ├── UnicoeCommand.cs └── Yomiage.API.csproj ├── Yomiage.Core ├── AssemblyList.cs ├── CoreModule.cs ├── Models │ ├── TextService.cs │ ├── VoiceEngineService.cs │ ├── VoiceLibraryService.cs │ └── VoicePresetService.cs ├── README.md ├── Types │ ├── Engine.cs │ ├── Library.cs │ ├── PauseSet.cs │ ├── VoicePreset.cs │ └── WordSet.cs ├── Utility │ └── YomiDictionary.cs └── Yomiage.Core.csproj ├── Yomiage.GUI ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Behavior │ ├── DisposeViewModelWhenClosedBehavior.cs │ └── RichTextBoxHelper.cs ├── Classes │ ├── PhraseDictionary.cs │ └── PresetData.cs ├── Controls │ ├── MySlider.xaml │ ├── MySlider.xaml.cs │ ├── SettingsPart.xaml │ └── SettingsPart.xaml.cs ├── Converters │ ├── ActivePhraseEditorConverter.cs │ ├── ActiveScriptConverter.cs │ └── EnumToBooleanConverter.cs ├── Data │ ├── AppConfig.cs │ ├── CharacterSize.cs │ ├── ConstData.cs │ ├── SearchGroup.cs │ ├── SleepMode.cs │ └── Status.cs ├── Dialog │ ├── MetroDialogWindow.xaml │ ├── MetroDialogWindow.xaml.cs │ ├── ViewModels │ │ ├── ApiViewModel.cs │ │ ├── DialogViewModelBase.cs │ │ ├── EngineListViewModel.cs │ │ ├── HinshiSelectViewModel.cs │ │ ├── LibraryListViewModel.cs │ │ ├── PauseCharacterViewModel.cs │ │ ├── PauseEditViewModel.cs │ │ ├── PhraseListViewModel.cs │ │ ├── PresetFilterViewModel.cs │ │ ├── PresetFusionViewModel.cs │ │ ├── PresetNewViewModel.cs │ │ ├── SaveVoiceViewModel.cs │ │ ├── SettingEnvironmentViewModel.cs │ │ ├── SettingProjectViewModel.cs │ │ ├── SettingShortcutViewModel.cs │ │ ├── SettingsEngineViewModel.cs │ │ ├── SettingsLibraryViewModel.cs │ │ ├── TextViewModel.cs │ │ ├── VersionInfoViewModel.cs │ │ └── WordListViewModel.cs │ ├── Views │ │ ├── ApiDialog.xaml │ │ ├── ApiDialog.xaml.cs │ │ ├── EngineListDialog.xaml │ │ ├── EngineListDialog.xaml.cs │ │ ├── HinshiSelectDialog.xaml │ │ ├── HinshiSelectDialog.xaml.cs │ │ ├── LibraryListDialog.xaml │ │ ├── LibraryListDialog.xaml.cs │ │ ├── PauseCharacterDialog.xaml │ │ ├── PauseCharacterDialog.xaml.cs │ │ ├── PauseEditDialog.xaml │ │ ├── PauseEditDialog.xaml.cs │ │ ├── PhraseListDialog.xaml │ │ ├── PhraseListDialog.xaml.cs │ │ ├── PresetFilterDialog.xaml │ │ ├── PresetFilterDialog.xaml.cs │ │ ├── PresetFusionDialog.xaml │ │ ├── PresetFusionDialog.xaml.cs │ │ ├── PresetNewDialog.xaml │ │ ├── PresetNewDialog.xaml.cs │ │ ├── PresetSelectDialog.xaml │ │ ├── PresetSelectDialog.xaml.cs │ │ ├── SaveVoiceDialog.xaml │ │ ├── SaveVoiceDialog.xaml.cs │ │ ├── SettingEnvironmentDialog.xaml │ │ ├── SettingEnvironmentDialog.xaml.cs │ │ ├── SettingProjectDialog.xaml │ │ ├── SettingProjectDialog.xaml.cs │ │ ├── SettingShortcutDialog.xaml │ │ ├── SettingShortcutDialog.xaml.cs │ │ ├── SettingsEngineDialog.xaml │ │ ├── SettingsEngineDialog.xaml.cs │ │ ├── SettingsLibraryDialog.xaml │ │ ├── SettingsLibraryDialog.xaml.cs │ │ ├── TextDialog.xaml │ │ ├── TextDialog.xaml.cs │ │ ├── VersionInfoDialog.xaml │ │ ├── VersionInfoDialog.xaml.cs │ │ ├── WordListDialog.xaml │ │ └── WordListDialog.xaml.cs │ ├── WaitDialog.xaml │ └── WaitDialog.xaml.cs ├── EventMessages │ ├── AppLoaded.cs │ ├── ChangeTuningTab.cs │ ├── EditWord.cs │ ├── PauseDictionaryChanged.cs │ ├── PhraseDictionaryChanged.cs │ ├── PlayingEvent.cs │ ├── StopEvent.cs │ ├── TextCursorPosition.cs │ └── Wakeup.cs ├── Graph │ ├── Circle.xaml │ ├── Circle.xaml.cs │ ├── CircleActive.xaml │ ├── CircleActive.xaml.cs │ ├── Dialog │ │ ├── YomiEditorDialog.xaml │ │ └── YomiEditorDialog.xaml.cs │ ├── EndMoraGraph.xaml │ ├── EndMoraGraph.xaml.cs │ ├── LongPauseGraph.xaml │ ├── LongPauseGraph.xaml.cs │ ├── MoraGraph.xaml │ ├── MoraGraph.xaml.cs │ ├── MoraPoint.xaml │ ├── MoraPoint.xaml.cs │ ├── MoraPoint2.xaml │ ├── MoraPoint2.xaml.cs │ ├── PauseGraph.xaml │ ├── PauseGraph.xaml.cs │ ├── PhraseGraph.xaml │ ├── PhraseGraph.xaml.cs │ ├── PointGraph.xaml │ ├── PointGraph.xaml.cs │ ├── PreValue.xaml │ ├── PreValue.xaml.cs │ ├── ShortPauseGraph.xaml │ ├── ShortPauseGraph.xaml.cs │ ├── SquareGraph.xaml │ ├── SquareGraph.xaml.cs │ ├── UpDown.xaml │ └── UpDown.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MainWindowViewModel.cs ├── Models │ ├── ApiService.cs │ ├── ConfigService.cs │ ├── LayoutService.cs │ ├── PauseDictionaryService.cs │ ├── PhraseDictionaryService.cs │ ├── PhraseDictionaryServiceBase.cs │ ├── PhraseService.cs │ ├── ScriptService.cs │ ├── SettingService.cs │ ├── VoicePlayerService.cs │ └── WordDictionaryService.cs ├── Properties │ ├── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ └── FolderProfile.pubxml.user │ └── launchSettings.json ├── README.md ├── Resources │ └── original.gif ├── Settings.Designer.cs ├── Splash.xaml ├── Splash.xaml.cs ├── Themes │ ├── Dark.Akane.xaml │ ├── Dark.Akari.xaml │ ├── Dark.Aoi.xaml │ ├── Dark.Monochrome.xaml │ ├── Dark.Yukari.xaml │ ├── Docking.Dark.Akari.xaml │ ├── Docking.Dark.Crimson.xaml │ ├── Docking.Dark.Crimson.xaml.origin │ ├── Docking.Dark.Monochrome.xaml │ ├── Docking.Dark.Yukari.xaml │ ├── Docking.Generic.xaml │ ├── Docking.Light.Kiritan.xaml │ ├── Docking.Light.Maki.xaml │ ├── Docking.Light.Monochrome.xaml │ ├── Docking.Light.Zunda.xaml │ ├── Light.Aoi.xaml │ ├── Light.Kiritan.xaml │ ├── Light.Maki.xaml │ ├── Light.Monochrome.xaml │ └── Light.Zunda.xaml ├── UniCoe.exe.config.json ├── Util │ ├── AppLog.cs │ ├── LimitedStack.cs │ ├── MvvmHelpersExtensions.cs │ ├── UndoRedoManager.cs │ └── Utility.cs ├── ViewModels │ ├── CharacterPanelViewModel.cs │ ├── MainTextViewModel.cs │ ├── MasterControlViewModel.cs │ ├── PhraseEditorViewModel.cs │ ├── PresetEditorViewModel.cs │ ├── PresetStandardViewModel.cs │ ├── PresetUserViewModel.cs │ ├── SettingDictionaryViewModel.cs │ ├── SettingSaveViewModel.cs │ ├── SettingSyntheViewModel.cs │ ├── SettingVoiceViewModel.cs │ ├── ViewModelBase.cs │ └── WordEditorViewModel.cs ├── Views │ ├── CharacterPanel.xaml │ ├── CharacterPanel.xaml.cs │ ├── MainText.xaml │ ├── MainText.xaml.cs │ ├── MasterControl.xaml │ ├── MasterControl.xaml.cs │ ├── PhraseEditor.xaml │ ├── PhraseEditor.xaml.cs │ ├── PresetEditor.xaml │ ├── PresetEditor.xaml.cs │ ├── PresetStandard.xaml │ ├── PresetStandard.xaml.cs │ ├── PresetUser.xaml │ ├── PresetUser.xaml.cs │ ├── SettingDictionary.xaml │ ├── SettingDictionary.xaml.cs │ ├── SettingSave.xaml │ ├── SettingSave.xaml.cs │ ├── SettingSynthe.xaml │ ├── SettingSynthe.xaml.cs │ ├── SettingVoice.xaml │ ├── SettingVoice.xaml.cs │ ├── WordEditor.xaml │ └── WordEditor.xaml.cs ├── Yomiage.GUI.csproj ├── Yomiage.GUI.csproj.user └── Yomiage.GUI.exe.config.json ├── Yomiage.SDK ├── .editorconfig ├── Common │ ├── CharacterUtil.cs │ ├── IFixAble.cs │ └── JsonUtil.cs ├── Config │ ├── BasicFormat.cs │ ├── CharacterConfig.cs │ ├── ConfigBase.cs │ ├── EngineConfig.cs │ └── LibraryConfig.cs ├── FileConverter │ ├── FileConverterBase.cs │ └── IFileConverter.cs ├── IVoiceBase.cs ├── IVoiceEngine.cs ├── IVoiceLibrary.cs ├── Properties │ └── PublishProfiles │ │ ├── FolderProfile.pubxml │ │ └── FolderProfile.pubxml.user ├── README.md ├── Settings │ ├── BoolSetting.cs │ ├── DoubleExtension.cs │ ├── DoubleSetting.cs │ ├── EngineSettings.cs │ ├── ISetting.cs │ ├── IntExtension.cs │ ├── IntSetting.cs │ ├── LibrarySettings.cs │ ├── SettingBase.cs │ ├── SettingList{T}.cs │ ├── SettingsBase.cs │ ├── StringExtension.cs │ └── StringSetting.cs ├── Talk │ ├── EndSection.cs │ ├── Mora.cs │ ├── Pause.cs │ ├── PauseType.cs │ ├── Section.cs │ └── TalkScript.cs ├── VoiceConfig.cs ├── VoiceEffects │ ├── EffectSetting.cs │ ├── MasterEffectValue.cs │ ├── VoiceEffectValue.cs │ └── VoiceEffectValueBase.cs ├── VoiceEngineBase.cs ├── VoiceLibraryBase.cs ├── VoiceLibraryDummy.cs ├── Yomiage.SDK.csproj ├── Yomiage.SDK.csproj.user ├── Yomiage.SDK.xml └── stylecop.json ├── Yomiage.YukarinettePlugin ├── Plugin.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SettingsValues.cs ├── SettingsWindow.xaml ├── SettingsWindow.xaml.cs ├── Yomiage.YukarinettePlugin.csproj ├── Yomiage.YukarinettePlugin.csproj.user ├── YukarinetteInterface.dll ├── app.config └── readme.txt ├── YomiageLibrary.sln └── docs ├── favicon-16x16.png ├── favicon-32x32.png ├── index.html ├── oauth2-redirect.html ├── swagger-ui-bundle.js ├── swagger-ui-bundle.js.map ├── swagger-ui-es-bundle-core.js ├── swagger-ui-es-bundle-core.js.map ├── swagger-ui-es-bundle.js ├── swagger-ui-es-bundle.js.map ├── swagger-ui-standalone-preset.js ├── swagger-ui-standalone-preset.js.map ├── swagger-ui.css ├── swagger-ui.css.map ├── swagger-ui.js ├── swagger-ui.js.map ├── swagger.yaml └── 棋譜読みちゃんDL版開く君.exe /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | bin 3 | obj 4 | voice 5 | packages 6 | .user 7 | *.png 8 | *.ico 9 | assets 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/README.md -------------------------------------------------------------------------------- /Yomiage.API/ApiServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.API/ApiServer.cs -------------------------------------------------------------------------------- /Yomiage.API/CommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.API/CommandService.cs -------------------------------------------------------------------------------- /Yomiage.API/ControllerMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.API/ControllerMapper.cs -------------------------------------------------------------------------------- /Yomiage.API/ServerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.API/ServerInfo.cs -------------------------------------------------------------------------------- /Yomiage.API/UnicoeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.API/UnicoeCommand.cs -------------------------------------------------------------------------------- /Yomiage.API/Yomiage.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.API/Yomiage.API.csproj -------------------------------------------------------------------------------- /Yomiage.Core/AssemblyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.Core/AssemblyList.cs -------------------------------------------------------------------------------- /Yomiage.Core/CoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.Core/CoreModule.cs -------------------------------------------------------------------------------- /Yomiage.Core/Models/TextService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.Core/Models/TextService.cs -------------------------------------------------------------------------------- /Yomiage.Core/Models/VoiceEngineService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.Core/Models/VoiceEngineService.cs -------------------------------------------------------------------------------- /Yomiage.Core/Models/VoiceLibraryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.Core/Models/VoiceLibraryService.cs -------------------------------------------------------------------------------- /Yomiage.Core/Models/VoicePresetService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.Core/Models/VoicePresetService.cs -------------------------------------------------------------------------------- /Yomiage.Core/README.md: -------------------------------------------------------------------------------- 1 | # Yomiage.Core 2 | 3 | -------------------------------------------------------------------------------- /Yomiage.Core/Types/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.Core/Types/Engine.cs -------------------------------------------------------------------------------- /Yomiage.Core/Types/Library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.Core/Types/Library.cs -------------------------------------------------------------------------------- /Yomiage.Core/Types/PauseSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.Core/Types/PauseSet.cs -------------------------------------------------------------------------------- /Yomiage.Core/Types/VoicePreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.Core/Types/VoicePreset.cs -------------------------------------------------------------------------------- /Yomiage.Core/Types/WordSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.Core/Types/WordSet.cs -------------------------------------------------------------------------------- /Yomiage.Core/Utility/YomiDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.Core/Utility/YomiDictionary.cs -------------------------------------------------------------------------------- /Yomiage.Core/Yomiage.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.Core/Yomiage.Core.csproj -------------------------------------------------------------------------------- /Yomiage.GUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/App.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/App.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/AssemblyInfo.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Behavior/DisposeViewModelWhenClosedBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Behavior/DisposeViewModelWhenClosedBehavior.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Behavior/RichTextBoxHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Behavior/RichTextBoxHelper.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Classes/PhraseDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Classes/PhraseDictionary.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Classes/PresetData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Classes/PresetData.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Controls/MySlider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Controls/MySlider.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Controls/MySlider.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Controls/MySlider.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Controls/SettingsPart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Controls/SettingsPart.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Controls/SettingsPart.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Controls/SettingsPart.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Converters/ActivePhraseEditorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Converters/ActivePhraseEditorConverter.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Converters/ActiveScriptConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Converters/ActiveScriptConverter.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Converters/EnumToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Converters/EnumToBooleanConverter.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Data/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Data/AppConfig.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Data/CharacterSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Data/CharacterSize.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Data/ConstData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Data/ConstData.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Data/SearchGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Data/SearchGroup.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Data/SleepMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Data/SleepMode.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Data/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Data/Status.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/MetroDialogWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/MetroDialogWindow.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/MetroDialogWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/MetroDialogWindow.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/ApiViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/ApiViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/DialogViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/DialogViewModelBase.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/EngineListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/EngineListViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/HinshiSelectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/HinshiSelectViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/LibraryListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/LibraryListViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/PauseCharacterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/PauseCharacterViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/PauseEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/PauseEditViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/PhraseListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/PhraseListViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/PresetFilterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/PresetFilterViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/PresetFusionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/PresetFusionViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/PresetNewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/PresetNewViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/SaveVoiceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/SaveVoiceViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/SettingEnvironmentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/SettingEnvironmentViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/SettingProjectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/SettingProjectViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/SettingShortcutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/SettingShortcutViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/SettingsEngineViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/SettingsEngineViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/SettingsLibraryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/SettingsLibraryViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/TextViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/TextViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/VersionInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/VersionInfoViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/ViewModels/WordListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/ViewModels/WordListViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/ApiDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/ApiDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/ApiDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/ApiDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/EngineListDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/EngineListDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/EngineListDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/EngineListDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/HinshiSelectDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/HinshiSelectDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/HinshiSelectDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/HinshiSelectDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/LibraryListDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/LibraryListDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/LibraryListDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/LibraryListDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/PauseCharacterDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/PauseCharacterDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/PauseCharacterDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/PauseCharacterDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/PauseEditDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/PauseEditDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/PauseEditDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/PauseEditDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/PhraseListDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/PhraseListDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/PhraseListDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/PhraseListDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/PresetFilterDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/PresetFilterDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/PresetFilterDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/PresetFilterDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/PresetFusionDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/PresetFusionDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/PresetFusionDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/PresetFusionDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/PresetNewDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/PresetNewDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/PresetNewDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/PresetNewDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/PresetSelectDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/PresetSelectDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/PresetSelectDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/PresetSelectDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/SaveVoiceDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/SaveVoiceDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/SaveVoiceDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/SaveVoiceDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/SettingEnvironmentDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/SettingEnvironmentDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/SettingEnvironmentDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/SettingEnvironmentDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/SettingProjectDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/SettingProjectDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/SettingProjectDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/SettingProjectDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/SettingShortcutDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/SettingShortcutDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/SettingShortcutDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/SettingShortcutDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/SettingsEngineDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/SettingsEngineDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/SettingsEngineDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/SettingsEngineDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/SettingsLibraryDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/SettingsLibraryDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/SettingsLibraryDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/SettingsLibraryDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/TextDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/TextDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/TextDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/TextDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/VersionInfoDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/VersionInfoDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/VersionInfoDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/VersionInfoDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/WordListDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/WordListDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/Views/WordListDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/Views/WordListDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/WaitDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/WaitDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Dialog/WaitDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Dialog/WaitDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/EventMessages/AppLoaded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/EventMessages/AppLoaded.cs -------------------------------------------------------------------------------- /Yomiage.GUI/EventMessages/ChangeTuningTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/EventMessages/ChangeTuningTab.cs -------------------------------------------------------------------------------- /Yomiage.GUI/EventMessages/EditWord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/EventMessages/EditWord.cs -------------------------------------------------------------------------------- /Yomiage.GUI/EventMessages/PauseDictionaryChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/EventMessages/PauseDictionaryChanged.cs -------------------------------------------------------------------------------- /Yomiage.GUI/EventMessages/PhraseDictionaryChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/EventMessages/PhraseDictionaryChanged.cs -------------------------------------------------------------------------------- /Yomiage.GUI/EventMessages/PlayingEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/EventMessages/PlayingEvent.cs -------------------------------------------------------------------------------- /Yomiage.GUI/EventMessages/StopEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/EventMessages/StopEvent.cs -------------------------------------------------------------------------------- /Yomiage.GUI/EventMessages/TextCursorPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/EventMessages/TextCursorPosition.cs -------------------------------------------------------------------------------- /Yomiage.GUI/EventMessages/Wakeup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/EventMessages/Wakeup.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/Circle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/Circle.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/Circle.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/Circle.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/CircleActive.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/CircleActive.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/CircleActive.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/CircleActive.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/Dialog/YomiEditorDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/Dialog/YomiEditorDialog.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/Dialog/YomiEditorDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/Dialog/YomiEditorDialog.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/EndMoraGraph.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/EndMoraGraph.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/EndMoraGraph.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/EndMoraGraph.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/LongPauseGraph.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/LongPauseGraph.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/LongPauseGraph.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/LongPauseGraph.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/MoraGraph.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/MoraGraph.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/MoraGraph.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/MoraGraph.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/MoraPoint.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/MoraPoint.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/MoraPoint.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/MoraPoint.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/MoraPoint2.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/MoraPoint2.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/MoraPoint2.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/MoraPoint2.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/PauseGraph.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/PauseGraph.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/PauseGraph.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/PauseGraph.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/PhraseGraph.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/PhraseGraph.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/PhraseGraph.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/PhraseGraph.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/PointGraph.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/PointGraph.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/PointGraph.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/PointGraph.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/PreValue.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/PreValue.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/PreValue.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/PreValue.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/ShortPauseGraph.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/ShortPauseGraph.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/ShortPauseGraph.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/ShortPauseGraph.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/SquareGraph.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/SquareGraph.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/SquareGraph.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/SquareGraph.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/UpDown.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/UpDown.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Graph/UpDown.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Graph/UpDown.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/MainWindow.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/MainWindowViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Models/ApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Models/ApiService.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Models/ConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Models/ConfigService.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Models/LayoutService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Models/LayoutService.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Models/PauseDictionaryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Models/PauseDictionaryService.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Models/PhraseDictionaryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Models/PhraseDictionaryService.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Models/PhraseDictionaryServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Models/PhraseDictionaryServiceBase.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Models/PhraseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Models/PhraseService.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Models/ScriptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Models/ScriptService.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Models/SettingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Models/SettingService.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Models/VoicePlayerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Models/VoicePlayerService.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Models/WordDictionaryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Models/WordDictionaryService.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /Yomiage.GUI/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Properties/PublishProfiles/FolderProfile.pubxml.user -------------------------------------------------------------------------------- /Yomiage.GUI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Properties/launchSettings.json -------------------------------------------------------------------------------- /Yomiage.GUI/README.md: -------------------------------------------------------------------------------- 1 | # Yomiage.GUI 2 | 3 | -------------------------------------------------------------------------------- /Yomiage.GUI/Resources/original.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Resources/original.gif -------------------------------------------------------------------------------- /Yomiage.GUI/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Settings.Designer.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Splash.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Splash.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Splash.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Splash.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Dark.Akane.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Dark.Akane.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Dark.Akari.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Dark.Akari.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Dark.Aoi.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Dark.Aoi.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Dark.Monochrome.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Dark.Monochrome.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Dark.Yukari.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Dark.Yukari.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Docking.Dark.Akari.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Docking.Dark.Akari.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Docking.Dark.Crimson.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Docking.Dark.Crimson.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Docking.Dark.Crimson.xaml.origin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Docking.Dark.Crimson.xaml.origin -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Docking.Dark.Monochrome.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Docking.Dark.Monochrome.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Docking.Dark.Yukari.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Docking.Dark.Yukari.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Docking.Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Docking.Generic.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Docking.Light.Kiritan.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Docking.Light.Kiritan.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Docking.Light.Maki.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Docking.Light.Maki.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Docking.Light.Monochrome.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Docking.Light.Monochrome.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Docking.Light.Zunda.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Docking.Light.Zunda.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Light.Aoi.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Light.Aoi.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Light.Kiritan.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Light.Kiritan.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Light.Maki.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Light.Maki.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Light.Monochrome.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Light.Monochrome.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Themes/Light.Zunda.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Themes/Light.Zunda.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/UniCoe.exe.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/UniCoe.exe.config.json -------------------------------------------------------------------------------- /Yomiage.GUI/Util/AppLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Util/AppLog.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Util/LimitedStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Util/LimitedStack.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Util/MvvmHelpersExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Util/MvvmHelpersExtensions.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Util/UndoRedoManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Util/UndoRedoManager.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Util/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Util/Utility.cs -------------------------------------------------------------------------------- /Yomiage.GUI/ViewModels/CharacterPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/ViewModels/CharacterPanelViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/ViewModels/MainTextViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/ViewModels/MainTextViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/ViewModels/MasterControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/ViewModels/MasterControlViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/ViewModels/PhraseEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/ViewModels/PhraseEditorViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/ViewModels/PresetEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/ViewModels/PresetEditorViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/ViewModels/PresetStandardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/ViewModels/PresetStandardViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/ViewModels/PresetUserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/ViewModels/PresetUserViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/ViewModels/SettingDictionaryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/ViewModels/SettingDictionaryViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/ViewModels/SettingSaveViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/ViewModels/SettingSaveViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/ViewModels/SettingSyntheViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/ViewModels/SettingSyntheViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/ViewModels/SettingVoiceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/ViewModels/SettingVoiceViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /Yomiage.GUI/ViewModels/WordEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/ViewModels/WordEditorViewModel.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Views/CharacterPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/CharacterPanel.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Views/CharacterPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/CharacterPanel.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Views/MainText.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/MainText.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Views/MainText.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/MainText.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Views/MasterControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/MasterControl.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Views/MasterControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/MasterControl.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Views/PhraseEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/PhraseEditor.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Views/PhraseEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/PhraseEditor.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Views/PresetEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/PresetEditor.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Views/PresetEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/PresetEditor.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Views/PresetStandard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/PresetStandard.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Views/PresetStandard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/PresetStandard.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Views/PresetUser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/PresetUser.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Views/PresetUser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/PresetUser.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Views/SettingDictionary.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/SettingDictionary.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Views/SettingDictionary.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/SettingDictionary.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Views/SettingSave.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/SettingSave.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Views/SettingSave.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/SettingSave.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Views/SettingSynthe.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/SettingSynthe.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Views/SettingSynthe.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/SettingSynthe.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Views/SettingVoice.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/SettingVoice.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Views/SettingVoice.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/SettingVoice.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Views/WordEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/WordEditor.xaml -------------------------------------------------------------------------------- /Yomiage.GUI/Views/WordEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Views/WordEditor.xaml.cs -------------------------------------------------------------------------------- /Yomiage.GUI/Yomiage.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Yomiage.GUI.csproj -------------------------------------------------------------------------------- /Yomiage.GUI/Yomiage.GUI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Yomiage.GUI.csproj.user -------------------------------------------------------------------------------- /Yomiage.GUI/Yomiage.GUI.exe.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.GUI/Yomiage.GUI.exe.config.json -------------------------------------------------------------------------------- /Yomiage.SDK/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/.editorconfig -------------------------------------------------------------------------------- /Yomiage.SDK/Common/CharacterUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Common/CharacterUtil.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Common/IFixAble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Common/IFixAble.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Common/JsonUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Common/JsonUtil.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Config/BasicFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Config/BasicFormat.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Config/CharacterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Config/CharacterConfig.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Config/ConfigBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Config/ConfigBase.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Config/EngineConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Config/EngineConfig.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Config/LibraryConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Config/LibraryConfig.cs -------------------------------------------------------------------------------- /Yomiage.SDK/FileConverter/FileConverterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/FileConverter/FileConverterBase.cs -------------------------------------------------------------------------------- /Yomiage.SDK/FileConverter/IFileConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/FileConverter/IFileConverter.cs -------------------------------------------------------------------------------- /Yomiage.SDK/IVoiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/IVoiceBase.cs -------------------------------------------------------------------------------- /Yomiage.SDK/IVoiceEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/IVoiceEngine.cs -------------------------------------------------------------------------------- /Yomiage.SDK/IVoiceLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/IVoiceLibrary.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /Yomiage.SDK/Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Properties/PublishProfiles/FolderProfile.pubxml.user -------------------------------------------------------------------------------- /Yomiage.SDK/README.md: -------------------------------------------------------------------------------- 1 | # Yomiage.SDK 2 | 3 | -------------------------------------------------------------------------------- /Yomiage.SDK/Settings/BoolSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Settings/BoolSetting.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Settings/DoubleExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Settings/DoubleExtension.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Settings/DoubleSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Settings/DoubleSetting.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Settings/EngineSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Settings/EngineSettings.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Settings/ISetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Settings/ISetting.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Settings/IntExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Settings/IntExtension.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Settings/IntSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Settings/IntSetting.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Settings/LibrarySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Settings/LibrarySettings.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Settings/SettingBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Settings/SettingBase.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Settings/SettingList{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Settings/SettingList{T}.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Settings/SettingsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Settings/SettingsBase.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Settings/StringExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Settings/StringExtension.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Settings/StringSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Settings/StringSetting.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Talk/EndSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Talk/EndSection.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Talk/Mora.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Talk/Mora.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Talk/Pause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Talk/Pause.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Talk/PauseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Talk/PauseType.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Talk/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Talk/Section.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Talk/TalkScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Talk/TalkScript.cs -------------------------------------------------------------------------------- /Yomiage.SDK/VoiceConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/VoiceConfig.cs -------------------------------------------------------------------------------- /Yomiage.SDK/VoiceEffects/EffectSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/VoiceEffects/EffectSetting.cs -------------------------------------------------------------------------------- /Yomiage.SDK/VoiceEffects/MasterEffectValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/VoiceEffects/MasterEffectValue.cs -------------------------------------------------------------------------------- /Yomiage.SDK/VoiceEffects/VoiceEffectValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/VoiceEffects/VoiceEffectValue.cs -------------------------------------------------------------------------------- /Yomiage.SDK/VoiceEffects/VoiceEffectValueBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/VoiceEffects/VoiceEffectValueBase.cs -------------------------------------------------------------------------------- /Yomiage.SDK/VoiceEngineBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/VoiceEngineBase.cs -------------------------------------------------------------------------------- /Yomiage.SDK/VoiceLibraryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/VoiceLibraryBase.cs -------------------------------------------------------------------------------- /Yomiage.SDK/VoiceLibraryDummy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/VoiceLibraryDummy.cs -------------------------------------------------------------------------------- /Yomiage.SDK/Yomiage.SDK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Yomiage.SDK.csproj -------------------------------------------------------------------------------- /Yomiage.SDK/Yomiage.SDK.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Yomiage.SDK.csproj.user -------------------------------------------------------------------------------- /Yomiage.SDK/Yomiage.SDK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/Yomiage.SDK.xml -------------------------------------------------------------------------------- /Yomiage.SDK/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.SDK/stylecop.json -------------------------------------------------------------------------------- /Yomiage.YukarinettePlugin/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.YukarinettePlugin/Plugin.cs -------------------------------------------------------------------------------- /Yomiage.YukarinettePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.YukarinettePlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Yomiage.YukarinettePlugin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.YukarinettePlugin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Yomiage.YukarinettePlugin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.YukarinettePlugin/Properties/Resources.resx -------------------------------------------------------------------------------- /Yomiage.YukarinettePlugin/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.YukarinettePlugin/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Yomiage.YukarinettePlugin/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.YukarinettePlugin/Properties/Settings.settings -------------------------------------------------------------------------------- /Yomiage.YukarinettePlugin/SettingsValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.YukarinettePlugin/SettingsValues.cs -------------------------------------------------------------------------------- /Yomiage.YukarinettePlugin/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.YukarinettePlugin/SettingsWindow.xaml -------------------------------------------------------------------------------- /Yomiage.YukarinettePlugin/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.YukarinettePlugin/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /Yomiage.YukarinettePlugin/Yomiage.YukarinettePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.YukarinettePlugin/Yomiage.YukarinettePlugin.csproj -------------------------------------------------------------------------------- /Yomiage.YukarinettePlugin/Yomiage.YukarinettePlugin.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.YukarinettePlugin/Yomiage.YukarinettePlugin.csproj.user -------------------------------------------------------------------------------- /Yomiage.YukarinettePlugin/YukarinetteInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.YukarinettePlugin/YukarinetteInterface.dll -------------------------------------------------------------------------------- /Yomiage.YukarinettePlugin/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.YukarinettePlugin/app.config -------------------------------------------------------------------------------- /Yomiage.YukarinettePlugin/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/Yomiage.YukarinettePlugin/readme.txt -------------------------------------------------------------------------------- /YomiageLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/YomiageLibrary.sln -------------------------------------------------------------------------------- /docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/oauth2-redirect.html -------------------------------------------------------------------------------- /docs/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/swagger-ui-bundle.js -------------------------------------------------------------------------------- /docs/swagger-ui-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/swagger-ui-bundle.js.map -------------------------------------------------------------------------------- /docs/swagger-ui-es-bundle-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/swagger-ui-es-bundle-core.js -------------------------------------------------------------------------------- /docs/swagger-ui-es-bundle-core.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/swagger-ui-es-bundle-core.js.map -------------------------------------------------------------------------------- /docs/swagger-ui-es-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/swagger-ui-es-bundle.js -------------------------------------------------------------------------------- /docs/swagger-ui-es-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/swagger-ui-es-bundle.js.map -------------------------------------------------------------------------------- /docs/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /docs/swagger-ui-standalone-preset.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/swagger-ui-standalone-preset.js.map -------------------------------------------------------------------------------- /docs/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/swagger-ui.css -------------------------------------------------------------------------------- /docs/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/swagger-ui.css.map -------------------------------------------------------------------------------- /docs/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/swagger-ui.js -------------------------------------------------------------------------------- /docs/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/swagger-ui.js.map -------------------------------------------------------------------------------- /docs/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/swagger.yaml -------------------------------------------------------------------------------- /docs/棋譜読みちゃんDL版開く君.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biss-git/YomiageLibrary/HEAD/docs/棋譜読みちゃんDL版開く君.exe --------------------------------------------------------------------------------