├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── NicoJK ├── AsyncSocket.cpp ├── AsyncSocket.h ├── ChangeLog.txt ├── CommentPrinter.cpp ├── CommentPrinter.h ├── CommentWindow.cpp ├── CommentWindow.h ├── Direct2DRenderer.cpp ├── Direct2DRenderer.h ├── Exports.def ├── JKIDNameTable.h ├── NetworkServiceIDTable.h ├── NicoJK.cpp ├── NicoJK.h ├── NicoJK.ini ├── NicoJK.rc ├── NicoJK.vcxproj ├── NicoJK.vcxproj.filters ├── OsdCompositor.cpp ├── OsdCompositor.h ├── Readme.txt ├── TVTComment │ ├── ChannelInfo.h │ ├── Chat.cpp │ ├── Chat.h │ ├── Color.cpp │ ├── Color.h │ ├── IPC │ │ ├── IPCMessage │ │ │ ├── ChannelListIPCMessage.cpp │ │ │ ├── ChannelListIPCMessage.h │ │ │ ├── ChannelSelectIPCMessage.cpp │ │ │ ├── ChannelSelectIPCMessage.h │ │ │ ├── ChatIPCMessage.cpp │ │ │ ├── ChatIPCMessage.h │ │ │ ├── CloseIPCMessage.cpp │ │ │ ├── CloseIPCMessage.h │ │ │ ├── CommandIPCMessage.cpp │ │ │ ├── CommandIPCMessage.h │ │ │ ├── CurrentChannelIPCMessage.cpp │ │ │ ├── CurrentChannelIPCMessage.h │ │ │ ├── IIPCMessage.h │ │ │ ├── SetChatOpacityIPCMessage.cpp │ │ │ ├── SetChatOpacityIPCMessage.h │ │ │ ├── TimeIPCMessage.cpp │ │ │ └── TimeIPCMessage.h │ │ ├── IPCMessageDecodeError.cpp │ │ ├── IPCMessageDecodeError.h │ │ ├── IPCMessageFactory.cpp │ │ ├── IPCMessageFactory.h │ │ ├── IPCProtocolStream.cpp │ │ ├── IPCProtocolStream.h │ │ ├── IPCTunnel.cpp │ │ ├── IPCTunnel.h │ │ ├── RawIPCMessage.cpp │ │ └── RawIPCMessage.h │ ├── TVTComment.cpp │ ├── TVTComment.h │ ├── Utils.cpp │ ├── Utils.h │ ├── win32filebuf.cpp │ ├── win32filebuf.h │ ├── win32filestream.cpp │ └── win32filestream.h ├── TVTestPlugin.h ├── TextFileReader.cpp ├── TextFileReader.h ├── TvtComment.ini ├── Util.cpp ├── Util.h ├── jkch.sh.txt ├── resource.h ├── stdafx.cpp └── stdafx.h ├── README.md ├── TVTComment.sln ├── TVTComment ├── App.xaml ├── App.xaml.cs ├── Bootstrapper.cs ├── Model │ ├── ChannelDatabase.cs │ ├── ChannelInfo.cs │ ├── ChannelInformationModule.cs │ ├── Chat.cs │ ├── ChatCollectService │ │ ├── FileChatCollectService.cs │ │ ├── IChatCollectService.cs │ │ ├── NewNiconicoJikkyouChatCollectService.cs │ │ ├── NichanChatCollectService.cs │ │ ├── NiconicoChatCollectService.cs │ │ ├── NiconicoLiveChatCollectService.cs │ │ ├── NiconicoLogChatCollectService.cs │ │ ├── OnceASecondChatCollectService.cs │ │ ├── PastNichanChatCollectService.cs │ │ └── TsukumijimaJikkyoApiChatCollectService.cs │ ├── ChatCollectServiceCreationPresetModule.cs │ ├── ChatCollectServiceEntry │ │ ├── FileChatCollectServiceEntry.cs │ │ ├── IChatCollectServiceCreationObject.cs │ │ ├── IChatCollectServiceEntry.cs │ │ ├── NewNiconicoJikkyouChatCollectServiceEntry.cs │ │ ├── NichanChatCollectServiceEntry.cs │ │ ├── NiconicoChatCollectServiceEntry.cs │ │ ├── NiconicoLiveChatCollectServiceEntry.cs │ │ ├── NiconicoLogChatCollectServiceEntry.cs │ │ ├── PastNichanChatCollectServiceEntry.cs │ │ └── TsukumijimaJikkyoApiChatCollectServiceEntry.cs │ ├── ChatCollectServiceModule.cs │ ├── ChatModRules │ │ ├── IChatModRule.cs │ │ ├── IroKomeNgChatModRule.cs │ │ ├── JyougeIroKomeNgChatModRule.cs │ │ ├── JyougeKomeNgChatModRule.cs │ │ ├── RandomizeColorChatModRule.cs │ │ ├── RemoveAnchorChatModRule.cs │ │ ├── RemoveUrlChatModRule.cs │ │ ├── RenderEmotionAsCommentChatModRule.cs │ │ ├── RenderInfoAsCommentChatModRule.cs │ │ ├── SetColorChatModRule.cs │ │ ├── SmallOnMultiLineChatModRule.cs │ │ ├── UserNgChatModRule.cs │ │ └── WordNgChatModRule.cs │ ├── ChatModule.cs │ ├── ChatService │ │ ├── FileChatService.cs │ │ ├── IChatService.cs │ │ ├── NichanChatService.cs │ │ └── NiconicoChatService.cs │ ├── ChatTrendService │ │ ├── IChatTrendService.cs │ │ ├── IForceValueData.cs │ │ ├── NiconicoChatTrendService.cs │ │ └── NiconicoForceValueData.cs │ ├── ChatTrendServiceEntry │ │ ├── IChatTrendServiceEntry.cs │ │ └── NiconicoChatTrendServiceEntry.cs │ ├── ChatTrendServiceModule.cs │ ├── CommandModule.cs │ ├── DefaultChatCollectServiceModule.cs │ ├── EventInfo.cs │ ├── IPC │ │ ├── IPCMessage │ │ │ ├── ChannelListIPCMessage.cs │ │ │ ├── ChannelSelectIPCMessage.cs │ │ │ ├── ChatIPCMessage.cs │ │ │ ├── CloseIPCMessage.cs │ │ │ ├── CommandIPCMessage.cs │ │ │ ├── CurrentChannelIPCMessage.cs │ │ │ ├── IIPCMessage.cs │ │ │ ├── SetChatOpacityIPCMessage.cs │ │ │ └── TimeIPCMessage.cs │ │ ├── IPCMessageFactory.cs │ │ ├── IPCProtocolStream.cs │ │ ├── IPCTunnel.cs │ │ └── RawIPCMessage.cs │ ├── IPCModule.cs │ ├── Nichan │ │ ├── ApiClient.cs │ │ ├── ArchivedThreadListRetriever.cs │ │ ├── DatParser.cs │ │ ├── DatThreadLoader.cs │ │ ├── DataObject.cs │ │ ├── Exceptions.cs │ │ ├── PastThreadLister.cs │ │ ├── SubjecttxtParser.cs │ │ └── ThreadParser.cs │ ├── NichanUtils │ │ ├── AutoNichanThreadSelector.cs │ │ ├── AutoPastNichanThreadSelector.cs │ │ ├── BoardDatabase.cs │ │ ├── BoardEntry.cs │ │ ├── FixedNichanThreadSelector.cs │ │ ├── FuzzyNichanThreadSelector.cs │ │ ├── INichanThreadSelector.cs │ │ ├── KeywordNichanThreadSelector.cs │ │ ├── MatchingThread.cs │ │ ├── ThreadFileParser.cs │ │ └── ThreadResolver.cs │ ├── NiconicoUtils │ │ ├── ChatAndVpos.cs │ │ ├── ChatNiconicoCommentXmlTagToChat.cs │ │ ├── DefaultJkIdTable.cs │ │ ├── JkIdResolver.cs │ │ ├── JkIdTable.cs │ │ ├── LiveIdResolver.cs │ │ ├── LiveIdTable.cs │ │ ├── NicoLiveCommentReceiver.cs │ │ ├── NicoLiveCommentSender.cs │ │ ├── NiconicoCommentXmlParser.cs │ │ ├── NiconicoCommentXmlTag.cs │ │ └── NiconicoLoginSession.cs │ ├── Serialization │ │ ├── ChatCollectServiceCreationPresetEntity.cs │ │ ├── ChatModRuleEntity.cs │ │ ├── ColorEntity.cs │ │ └── WindowPositionEntity.cs │ ├── SettingFileReaderWriter.cs │ ├── TVTComment.cs │ ├── TVTCommentSettings.cs │ └── Utils │ │ ├── ParsePrefixedInteger.cs │ │ └── SimpleCsvReader.cs ├── ObservableUtils │ ├── DisposableObservableCollection.cs │ ├── NotifyCollectionChangedExtension.cs │ ├── ObservableCollectionExtension.cs │ └── ObservableValue.cs ├── Properties │ ├── PublishProfiles │ │ ├── DebugProfile.pubxml │ │ └── ReleaseProfile.pubxml │ ├── Resources.Designer.cs │ └── Resources.resx ├── TVTComment.csproj ├── ViewModels │ ├── ChatCollectServiceCreationOptionControl │ │ ├── ChatCollectServiceCreationOptionControlViewModel.cs │ │ ├── FileChatCollectServiceCreationOptionControlViewModel.cs │ │ ├── NichanChatCollectServiceCreationOptionControlViewModel.cs │ │ └── NiconicoLiveChatCollectServiceCreationOptionControlViewModel.cs │ ├── ChatCollectServiceCreationPresetControlViewModel.cs │ ├── ChatCollectServiceCreationSettingsControlViewModel.cs │ ├── Contents │ │ ├── ChatModRuleListItemViewModel.cs │ │ └── SelectableViewModel.cs │ ├── ListViewColumnViewModel.cs │ ├── NgSettingWindowViewModel.cs │ ├── Notifications │ │ └── ChatCollectServiceCreationSettingsConfirmation.cs │ ├── SettingsWindowContents │ │ ├── ChatCollectServiceCreationPresetConfirmation.cs │ │ ├── ChatCollectServiceCreationPresetSettingControlViewModel.cs │ │ ├── DefaultChatCollectServiceViewModel.cs │ │ └── DefaultChatCollectServicesViewModel.cs │ ├── SettingsWindowViewModel.cs │ ├── ShellContents │ │ ├── BasicSettingControlViewModel.cs │ │ ├── ChannelListItemViewModel.cs │ │ ├── ChatCollectServiceAddListItemViewModel.cs │ │ ├── ChatCollectServiceViewModel.cs │ │ └── ChatPostControlViewModel.cs │ ├── ShellViewModel.cs │ └── ViewSettings.cs └── Views │ ├── AttachedProperties │ ├── AddOrUpdateRegion.cs │ └── GridViewColumnSettingsBinder.cs │ ├── Behaviors │ ├── DisposeDataContextAction.cs │ ├── FileDroppedTrigger.cs │ ├── RegionContextBinderBehavior.cs │ ├── RemoveRegionAction.cs │ ├── ReturnKeyTextBoxTrigger.cs │ ├── SetKeyboardFocusedElementAction.cs │ ├── SetRegionManagerBehavior.cs │ ├── ShowColorDialogAction.cs │ ├── ShowCommonDialogAction.cs │ ├── ShowFileDialogAction.cs │ ├── ShowOpenFileDialogAction.cs │ ├── ShowWindowAction.cs │ ├── StickToScrollBottomBehavior.cs │ ├── UserControlDataContextBinderBehavior.cs │ └── WindowEventTrigger.cs │ ├── ChannelInfoViewer.xaml │ ├── ChannelInfoViewer.xaml.cs │ ├── ChatCollectServiceCreationOptionControl │ ├── FileChatCollectServiceCreationOptionControl.xaml │ ├── FileChatCollectServiceCreationOptionControl.xaml.cs │ ├── NichanChatCollectServiceCreationOptionControl.xaml │ ├── NichanChatCollectServiceCreationOptionControl.xaml.cs │ ├── NiconicoLiveChatCollectServiceCreationOptionControl.xaml │ └── NiconicoLiveChatCollectServiceCreationOptionControl.xaml.cs │ ├── ChatCollectServiceCreationPresetControl.xaml │ ├── ChatCollectServiceCreationPresetControl.xaml.cs │ ├── ChatCollectServiceCreationSettingsControl.xaml │ ├── ChatCollectServiceCreationSettingsControl.xaml.cs │ ├── ChatDetailViewerWindow.xaml │ ├── ChatDetailViewerWindow.xaml.cs │ ├── Converters │ ├── BoolToStringConverter.cs │ ├── ColorToSolidColorBrushConverter.cs │ ├── EnumToBoolConverter.cs │ ├── EnumToStringConverter.cs │ ├── InverseBoolConverter.cs │ └── StringToColorConverter.cs │ ├── Grid.cs │ ├── NgSettingWindow.xaml │ ├── NgSettingWindow.xaml.cs │ ├── SettingsWindow.xaml │ ├── SettingsWindow.xaml.cs │ ├── SettingsWindowContents │ ├── ChatCollectServiceCreationPresetSettingControl.xaml │ └── ChatCollectServiceCreationPresetSettingControl.xaml.cs │ ├── Shell.xaml │ ├── Shell.xaml.cs │ └── ShellContents │ ├── BasicSettingControl.xaml │ ├── BasicSettingControl.xaml.cs │ ├── ChatPostControl.xaml │ └── ChatPostControl.xaml.cs └── プロセス間通信の手順.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/LICENSE -------------------------------------------------------------------------------- /NicoJK/AsyncSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/AsyncSocket.cpp -------------------------------------------------------------------------------- /NicoJK/AsyncSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/AsyncSocket.h -------------------------------------------------------------------------------- /NicoJK/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/ChangeLog.txt -------------------------------------------------------------------------------- /NicoJK/CommentPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/CommentPrinter.cpp -------------------------------------------------------------------------------- /NicoJK/CommentPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/CommentPrinter.h -------------------------------------------------------------------------------- /NicoJK/CommentWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/CommentWindow.cpp -------------------------------------------------------------------------------- /NicoJK/CommentWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/CommentWindow.h -------------------------------------------------------------------------------- /NicoJK/Direct2DRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/Direct2DRenderer.cpp -------------------------------------------------------------------------------- /NicoJK/Direct2DRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/Direct2DRenderer.h -------------------------------------------------------------------------------- /NicoJK/Exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/Exports.def -------------------------------------------------------------------------------- /NicoJK/JKIDNameTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/JKIDNameTable.h -------------------------------------------------------------------------------- /NicoJK/NetworkServiceIDTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/NetworkServiceIDTable.h -------------------------------------------------------------------------------- /NicoJK/NicoJK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/NicoJK.cpp -------------------------------------------------------------------------------- /NicoJK/NicoJK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/NicoJK.h -------------------------------------------------------------------------------- /NicoJK/NicoJK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/NicoJK.ini -------------------------------------------------------------------------------- /NicoJK/NicoJK.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/NicoJK.rc -------------------------------------------------------------------------------- /NicoJK/NicoJK.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/NicoJK.vcxproj -------------------------------------------------------------------------------- /NicoJK/NicoJK.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/NicoJK.vcxproj.filters -------------------------------------------------------------------------------- /NicoJK/OsdCompositor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/OsdCompositor.cpp -------------------------------------------------------------------------------- /NicoJK/OsdCompositor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/OsdCompositor.h -------------------------------------------------------------------------------- /NicoJK/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/Readme.txt -------------------------------------------------------------------------------- /NicoJK/TVTComment/ChannelInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/ChannelInfo.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/Chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/Chat.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/Chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/Chat.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/Color.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/Color.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/ChannelListIPCMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/ChannelListIPCMessage.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/ChannelListIPCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/ChannelListIPCMessage.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/ChannelSelectIPCMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/ChannelSelectIPCMessage.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/ChannelSelectIPCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/ChannelSelectIPCMessage.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/ChatIPCMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/ChatIPCMessage.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/ChatIPCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/ChatIPCMessage.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/CloseIPCMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/CloseIPCMessage.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/CloseIPCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/CloseIPCMessage.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/CommandIPCMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/CommandIPCMessage.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/CommandIPCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/CommandIPCMessage.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/CurrentChannelIPCMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/CurrentChannelIPCMessage.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/CurrentChannelIPCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/CurrentChannelIPCMessage.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/IIPCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/IIPCMessage.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/SetChatOpacityIPCMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/SetChatOpacityIPCMessage.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/SetChatOpacityIPCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/SetChatOpacityIPCMessage.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/TimeIPCMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/TimeIPCMessage.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessage/TimeIPCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessage/TimeIPCMessage.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessageDecodeError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessageDecodeError.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessageDecodeError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessageDecodeError.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessageFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessageFactory.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCMessageFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCMessageFactory.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCProtocolStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCProtocolStream.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCProtocolStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCProtocolStream.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCTunnel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCTunnel.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/IPCTunnel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/IPCTunnel.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/RawIPCMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/RawIPCMessage.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/IPC/RawIPCMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/IPC/RawIPCMessage.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/TVTComment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/TVTComment.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/TVTComment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/TVTComment.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/Utils.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/Utils.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/win32filebuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/win32filebuf.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/win32filebuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/win32filebuf.h -------------------------------------------------------------------------------- /NicoJK/TVTComment/win32filestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/win32filestream.cpp -------------------------------------------------------------------------------- /NicoJK/TVTComment/win32filestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTComment/win32filestream.h -------------------------------------------------------------------------------- /NicoJK/TVTestPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TVTestPlugin.h -------------------------------------------------------------------------------- /NicoJK/TextFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TextFileReader.cpp -------------------------------------------------------------------------------- /NicoJK/TextFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TextFileReader.h -------------------------------------------------------------------------------- /NicoJK/TvtComment.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/TvtComment.ini -------------------------------------------------------------------------------- /NicoJK/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/Util.cpp -------------------------------------------------------------------------------- /NicoJK/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/Util.h -------------------------------------------------------------------------------- /NicoJK/jkch.sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/jkch.sh.txt -------------------------------------------------------------------------------- /NicoJK/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/resource.h -------------------------------------------------------------------------------- /NicoJK/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/stdafx.cpp -------------------------------------------------------------------------------- /NicoJK/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/NicoJK/stdafx.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/README.md -------------------------------------------------------------------------------- /TVTComment.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment.sln -------------------------------------------------------------------------------- /TVTComment/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/App.xaml -------------------------------------------------------------------------------- /TVTComment/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/App.xaml.cs -------------------------------------------------------------------------------- /TVTComment/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Bootstrapper.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChannelDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChannelDatabase.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChannelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChannelInfo.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChannelInformationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChannelInformationModule.cs -------------------------------------------------------------------------------- /TVTComment/Model/Chat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Chat.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectService/FileChatCollectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectService/FileChatCollectService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectService/IChatCollectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectService/IChatCollectService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectService/NewNiconicoJikkyouChatCollectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectService/NewNiconicoJikkyouChatCollectService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectService/NichanChatCollectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectService/NichanChatCollectService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectService/NiconicoChatCollectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectService/NiconicoChatCollectService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectService/NiconicoLiveChatCollectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectService/NiconicoLiveChatCollectService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectService/NiconicoLogChatCollectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectService/NiconicoLogChatCollectService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectService/OnceASecondChatCollectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectService/OnceASecondChatCollectService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectService/PastNichanChatCollectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectService/PastNichanChatCollectService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectService/TsukumijimaJikkyoApiChatCollectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectService/TsukumijimaJikkyoApiChatCollectService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectServiceCreationPresetModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectServiceCreationPresetModule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectServiceEntry/FileChatCollectServiceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectServiceEntry/FileChatCollectServiceEntry.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectServiceEntry/IChatCollectServiceCreationObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectServiceEntry/IChatCollectServiceCreationObject.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectServiceEntry/IChatCollectServiceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectServiceEntry/IChatCollectServiceEntry.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectServiceEntry/NewNiconicoJikkyouChatCollectServiceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectServiceEntry/NewNiconicoJikkyouChatCollectServiceEntry.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectServiceEntry/NichanChatCollectServiceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectServiceEntry/NichanChatCollectServiceEntry.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectServiceEntry/NiconicoChatCollectServiceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectServiceEntry/NiconicoChatCollectServiceEntry.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectServiceEntry/NiconicoLiveChatCollectServiceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectServiceEntry/NiconicoLiveChatCollectServiceEntry.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectServiceEntry/NiconicoLogChatCollectServiceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectServiceEntry/NiconicoLogChatCollectServiceEntry.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectServiceEntry/PastNichanChatCollectServiceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectServiceEntry/PastNichanChatCollectServiceEntry.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectServiceEntry/TsukumijimaJikkyoApiChatCollectServiceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectServiceEntry/TsukumijimaJikkyoApiChatCollectServiceEntry.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatCollectServiceModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatCollectServiceModule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatModRules/IChatModRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatModRules/IChatModRule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatModRules/IroKomeNgChatModRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatModRules/IroKomeNgChatModRule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatModRules/JyougeIroKomeNgChatModRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatModRules/JyougeIroKomeNgChatModRule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatModRules/JyougeKomeNgChatModRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatModRules/JyougeKomeNgChatModRule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatModRules/RandomizeColorChatModRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatModRules/RandomizeColorChatModRule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatModRules/RemoveAnchorChatModRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatModRules/RemoveAnchorChatModRule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatModRules/RemoveUrlChatModRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatModRules/RemoveUrlChatModRule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatModRules/RenderEmotionAsCommentChatModRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatModRules/RenderEmotionAsCommentChatModRule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatModRules/RenderInfoAsCommentChatModRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatModRules/RenderInfoAsCommentChatModRule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatModRules/SetColorChatModRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatModRules/SetColorChatModRule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatModRules/SmallOnMultiLineChatModRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatModRules/SmallOnMultiLineChatModRule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatModRules/UserNgChatModRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatModRules/UserNgChatModRule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatModRules/WordNgChatModRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatModRules/WordNgChatModRule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatModule.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatService/FileChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatService/FileChatService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatService/IChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatService/IChatService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatService/NichanChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatService/NichanChatService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatService/NiconicoChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatService/NiconicoChatService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatTrendService/IChatTrendService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatTrendService/IChatTrendService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatTrendService/IForceValueData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatTrendService/IForceValueData.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatTrendService/NiconicoChatTrendService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatTrendService/NiconicoChatTrendService.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatTrendService/NiconicoForceValueData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatTrendService/NiconicoForceValueData.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatTrendServiceEntry/IChatTrendServiceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatTrendServiceEntry/IChatTrendServiceEntry.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatTrendServiceEntry/NiconicoChatTrendServiceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatTrendServiceEntry/NiconicoChatTrendServiceEntry.cs -------------------------------------------------------------------------------- /TVTComment/Model/ChatTrendServiceModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/ChatTrendServiceModule.cs -------------------------------------------------------------------------------- /TVTComment/Model/CommandModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/CommandModule.cs -------------------------------------------------------------------------------- /TVTComment/Model/DefaultChatCollectServiceModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/DefaultChatCollectServiceModule.cs -------------------------------------------------------------------------------- /TVTComment/Model/EventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/EventInfo.cs -------------------------------------------------------------------------------- /TVTComment/Model/IPC/IPCMessage/ChannelListIPCMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/IPC/IPCMessage/ChannelListIPCMessage.cs -------------------------------------------------------------------------------- /TVTComment/Model/IPC/IPCMessage/ChannelSelectIPCMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/IPC/IPCMessage/ChannelSelectIPCMessage.cs -------------------------------------------------------------------------------- /TVTComment/Model/IPC/IPCMessage/ChatIPCMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/IPC/IPCMessage/ChatIPCMessage.cs -------------------------------------------------------------------------------- /TVTComment/Model/IPC/IPCMessage/CloseIPCMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/IPC/IPCMessage/CloseIPCMessage.cs -------------------------------------------------------------------------------- /TVTComment/Model/IPC/IPCMessage/CommandIPCMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/IPC/IPCMessage/CommandIPCMessage.cs -------------------------------------------------------------------------------- /TVTComment/Model/IPC/IPCMessage/CurrentChannelIPCMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/IPC/IPCMessage/CurrentChannelIPCMessage.cs -------------------------------------------------------------------------------- /TVTComment/Model/IPC/IPCMessage/IIPCMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/IPC/IPCMessage/IIPCMessage.cs -------------------------------------------------------------------------------- /TVTComment/Model/IPC/IPCMessage/SetChatOpacityIPCMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/IPC/IPCMessage/SetChatOpacityIPCMessage.cs -------------------------------------------------------------------------------- /TVTComment/Model/IPC/IPCMessage/TimeIPCMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/IPC/IPCMessage/TimeIPCMessage.cs -------------------------------------------------------------------------------- /TVTComment/Model/IPC/IPCMessageFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/IPC/IPCMessageFactory.cs -------------------------------------------------------------------------------- /TVTComment/Model/IPC/IPCProtocolStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/IPC/IPCProtocolStream.cs -------------------------------------------------------------------------------- /TVTComment/Model/IPC/IPCTunnel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/IPC/IPCTunnel.cs -------------------------------------------------------------------------------- /TVTComment/Model/IPC/RawIPCMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/IPC/RawIPCMessage.cs -------------------------------------------------------------------------------- /TVTComment/Model/IPCModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/IPCModule.cs -------------------------------------------------------------------------------- /TVTComment/Model/Nichan/ApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Nichan/ApiClient.cs -------------------------------------------------------------------------------- /TVTComment/Model/Nichan/ArchivedThreadListRetriever.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Nichan/ArchivedThreadListRetriever.cs -------------------------------------------------------------------------------- /TVTComment/Model/Nichan/DatParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Nichan/DatParser.cs -------------------------------------------------------------------------------- /TVTComment/Model/Nichan/DatThreadLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Nichan/DatThreadLoader.cs -------------------------------------------------------------------------------- /TVTComment/Model/Nichan/DataObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Nichan/DataObject.cs -------------------------------------------------------------------------------- /TVTComment/Model/Nichan/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Nichan/Exceptions.cs -------------------------------------------------------------------------------- /TVTComment/Model/Nichan/PastThreadLister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Nichan/PastThreadLister.cs -------------------------------------------------------------------------------- /TVTComment/Model/Nichan/SubjecttxtParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Nichan/SubjecttxtParser.cs -------------------------------------------------------------------------------- /TVTComment/Model/Nichan/ThreadParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Nichan/ThreadParser.cs -------------------------------------------------------------------------------- /TVTComment/Model/NichanUtils/AutoNichanThreadSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NichanUtils/AutoNichanThreadSelector.cs -------------------------------------------------------------------------------- /TVTComment/Model/NichanUtils/AutoPastNichanThreadSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NichanUtils/AutoPastNichanThreadSelector.cs -------------------------------------------------------------------------------- /TVTComment/Model/NichanUtils/BoardDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NichanUtils/BoardDatabase.cs -------------------------------------------------------------------------------- /TVTComment/Model/NichanUtils/BoardEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NichanUtils/BoardEntry.cs -------------------------------------------------------------------------------- /TVTComment/Model/NichanUtils/FixedNichanThreadSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NichanUtils/FixedNichanThreadSelector.cs -------------------------------------------------------------------------------- /TVTComment/Model/NichanUtils/FuzzyNichanThreadSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NichanUtils/FuzzyNichanThreadSelector.cs -------------------------------------------------------------------------------- /TVTComment/Model/NichanUtils/INichanThreadSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NichanUtils/INichanThreadSelector.cs -------------------------------------------------------------------------------- /TVTComment/Model/NichanUtils/KeywordNichanThreadSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NichanUtils/KeywordNichanThreadSelector.cs -------------------------------------------------------------------------------- /TVTComment/Model/NichanUtils/MatchingThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NichanUtils/MatchingThread.cs -------------------------------------------------------------------------------- /TVTComment/Model/NichanUtils/ThreadFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NichanUtils/ThreadFileParser.cs -------------------------------------------------------------------------------- /TVTComment/Model/NichanUtils/ThreadResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NichanUtils/ThreadResolver.cs -------------------------------------------------------------------------------- /TVTComment/Model/NiconicoUtils/ChatAndVpos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NiconicoUtils/ChatAndVpos.cs -------------------------------------------------------------------------------- /TVTComment/Model/NiconicoUtils/ChatNiconicoCommentXmlTagToChat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NiconicoUtils/ChatNiconicoCommentXmlTagToChat.cs -------------------------------------------------------------------------------- /TVTComment/Model/NiconicoUtils/DefaultJkIdTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NiconicoUtils/DefaultJkIdTable.cs -------------------------------------------------------------------------------- /TVTComment/Model/NiconicoUtils/JkIdResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NiconicoUtils/JkIdResolver.cs -------------------------------------------------------------------------------- /TVTComment/Model/NiconicoUtils/JkIdTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NiconicoUtils/JkIdTable.cs -------------------------------------------------------------------------------- /TVTComment/Model/NiconicoUtils/LiveIdResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NiconicoUtils/LiveIdResolver.cs -------------------------------------------------------------------------------- /TVTComment/Model/NiconicoUtils/LiveIdTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NiconicoUtils/LiveIdTable.cs -------------------------------------------------------------------------------- /TVTComment/Model/NiconicoUtils/NicoLiveCommentReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NiconicoUtils/NicoLiveCommentReceiver.cs -------------------------------------------------------------------------------- /TVTComment/Model/NiconicoUtils/NicoLiveCommentSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NiconicoUtils/NicoLiveCommentSender.cs -------------------------------------------------------------------------------- /TVTComment/Model/NiconicoUtils/NiconicoCommentXmlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NiconicoUtils/NiconicoCommentXmlParser.cs -------------------------------------------------------------------------------- /TVTComment/Model/NiconicoUtils/NiconicoCommentXmlTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NiconicoUtils/NiconicoCommentXmlTag.cs -------------------------------------------------------------------------------- /TVTComment/Model/NiconicoUtils/NiconicoLoginSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/NiconicoUtils/NiconicoLoginSession.cs -------------------------------------------------------------------------------- /TVTComment/Model/Serialization/ChatCollectServiceCreationPresetEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Serialization/ChatCollectServiceCreationPresetEntity.cs -------------------------------------------------------------------------------- /TVTComment/Model/Serialization/ChatModRuleEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Serialization/ChatModRuleEntity.cs -------------------------------------------------------------------------------- /TVTComment/Model/Serialization/ColorEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Serialization/ColorEntity.cs -------------------------------------------------------------------------------- /TVTComment/Model/Serialization/WindowPositionEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Serialization/WindowPositionEntity.cs -------------------------------------------------------------------------------- /TVTComment/Model/SettingFileReaderWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/SettingFileReaderWriter.cs -------------------------------------------------------------------------------- /TVTComment/Model/TVTComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/TVTComment.cs -------------------------------------------------------------------------------- /TVTComment/Model/TVTCommentSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/TVTCommentSettings.cs -------------------------------------------------------------------------------- /TVTComment/Model/Utils/ParsePrefixedInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Utils/ParsePrefixedInteger.cs -------------------------------------------------------------------------------- /TVTComment/Model/Utils/SimpleCsvReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Model/Utils/SimpleCsvReader.cs -------------------------------------------------------------------------------- /TVTComment/ObservableUtils/DisposableObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ObservableUtils/DisposableObservableCollection.cs -------------------------------------------------------------------------------- /TVTComment/ObservableUtils/NotifyCollectionChangedExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ObservableUtils/NotifyCollectionChangedExtension.cs -------------------------------------------------------------------------------- /TVTComment/ObservableUtils/ObservableCollectionExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ObservableUtils/ObservableCollectionExtension.cs -------------------------------------------------------------------------------- /TVTComment/ObservableUtils/ObservableValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ObservableUtils/ObservableValue.cs -------------------------------------------------------------------------------- /TVTComment/Properties/PublishProfiles/DebugProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Properties/PublishProfiles/DebugProfile.pubxml -------------------------------------------------------------------------------- /TVTComment/Properties/PublishProfiles/ReleaseProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Properties/PublishProfiles/ReleaseProfile.pubxml -------------------------------------------------------------------------------- /TVTComment/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TVTComment/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Properties/Resources.resx -------------------------------------------------------------------------------- /TVTComment/TVTComment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/TVTComment.csproj -------------------------------------------------------------------------------- /TVTComment/ViewModels/ChatCollectServiceCreationOptionControl/ChatCollectServiceCreationOptionControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/ChatCollectServiceCreationOptionControl/ChatCollectServiceCreationOptionControlViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/ChatCollectServiceCreationOptionControl/FileChatCollectServiceCreationOptionControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/ChatCollectServiceCreationOptionControl/FileChatCollectServiceCreationOptionControlViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/ChatCollectServiceCreationOptionControl/NichanChatCollectServiceCreationOptionControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/ChatCollectServiceCreationOptionControl/NichanChatCollectServiceCreationOptionControlViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/ChatCollectServiceCreationOptionControl/NiconicoLiveChatCollectServiceCreationOptionControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/ChatCollectServiceCreationOptionControl/NiconicoLiveChatCollectServiceCreationOptionControlViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/ChatCollectServiceCreationPresetControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/ChatCollectServiceCreationPresetControlViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/ChatCollectServiceCreationSettingsControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/ChatCollectServiceCreationSettingsControlViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/Contents/ChatModRuleListItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/Contents/ChatModRuleListItemViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/Contents/SelectableViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/Contents/SelectableViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/ListViewColumnViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/ListViewColumnViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/NgSettingWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/NgSettingWindowViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/Notifications/ChatCollectServiceCreationSettingsConfirmation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/Notifications/ChatCollectServiceCreationSettingsConfirmation.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/SettingsWindowContents/ChatCollectServiceCreationPresetConfirmation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/SettingsWindowContents/ChatCollectServiceCreationPresetConfirmation.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/SettingsWindowContents/ChatCollectServiceCreationPresetSettingControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/SettingsWindowContents/ChatCollectServiceCreationPresetSettingControlViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/SettingsWindowContents/DefaultChatCollectServiceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/SettingsWindowContents/DefaultChatCollectServiceViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/SettingsWindowContents/DefaultChatCollectServicesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/SettingsWindowContents/DefaultChatCollectServicesViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/SettingsWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/SettingsWindowViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/ShellContents/BasicSettingControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/ShellContents/BasicSettingControlViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/ShellContents/ChannelListItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/ShellContents/ChannelListItemViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/ShellContents/ChatCollectServiceAddListItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/ShellContents/ChatCollectServiceAddListItemViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/ShellContents/ChatCollectServiceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/ShellContents/ChatCollectServiceViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/ShellContents/ChatPostControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/ShellContents/ChatPostControlViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /TVTComment/ViewModels/ViewSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/ViewModels/ViewSettings.cs -------------------------------------------------------------------------------- /TVTComment/Views/AttachedProperties/AddOrUpdateRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/AttachedProperties/AddOrUpdateRegion.cs -------------------------------------------------------------------------------- /TVTComment/Views/AttachedProperties/GridViewColumnSettingsBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/AttachedProperties/GridViewColumnSettingsBinder.cs -------------------------------------------------------------------------------- /TVTComment/Views/Behaviors/DisposeDataContextAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Behaviors/DisposeDataContextAction.cs -------------------------------------------------------------------------------- /TVTComment/Views/Behaviors/FileDroppedTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Behaviors/FileDroppedTrigger.cs -------------------------------------------------------------------------------- /TVTComment/Views/Behaviors/RegionContextBinderBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Behaviors/RegionContextBinderBehavior.cs -------------------------------------------------------------------------------- /TVTComment/Views/Behaviors/RemoveRegionAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Behaviors/RemoveRegionAction.cs -------------------------------------------------------------------------------- /TVTComment/Views/Behaviors/ReturnKeyTextBoxTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Behaviors/ReturnKeyTextBoxTrigger.cs -------------------------------------------------------------------------------- /TVTComment/Views/Behaviors/SetKeyboardFocusedElementAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Behaviors/SetKeyboardFocusedElementAction.cs -------------------------------------------------------------------------------- /TVTComment/Views/Behaviors/SetRegionManagerBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Behaviors/SetRegionManagerBehavior.cs -------------------------------------------------------------------------------- /TVTComment/Views/Behaviors/ShowColorDialogAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Behaviors/ShowColorDialogAction.cs -------------------------------------------------------------------------------- /TVTComment/Views/Behaviors/ShowCommonDialogAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Behaviors/ShowCommonDialogAction.cs -------------------------------------------------------------------------------- /TVTComment/Views/Behaviors/ShowFileDialogAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Behaviors/ShowFileDialogAction.cs -------------------------------------------------------------------------------- /TVTComment/Views/Behaviors/ShowOpenFileDialogAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Behaviors/ShowOpenFileDialogAction.cs -------------------------------------------------------------------------------- /TVTComment/Views/Behaviors/ShowWindowAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Behaviors/ShowWindowAction.cs -------------------------------------------------------------------------------- /TVTComment/Views/Behaviors/StickToScrollBottomBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Behaviors/StickToScrollBottomBehavior.cs -------------------------------------------------------------------------------- /TVTComment/Views/Behaviors/UserControlDataContextBinderBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Behaviors/UserControlDataContextBinderBehavior.cs -------------------------------------------------------------------------------- /TVTComment/Views/Behaviors/WindowEventTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Behaviors/WindowEventTrigger.cs -------------------------------------------------------------------------------- /TVTComment/Views/ChannelInfoViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ChannelInfoViewer.xaml -------------------------------------------------------------------------------- /TVTComment/Views/ChannelInfoViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ChannelInfoViewer.xaml.cs -------------------------------------------------------------------------------- /TVTComment/Views/ChatCollectServiceCreationOptionControl/FileChatCollectServiceCreationOptionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ChatCollectServiceCreationOptionControl/FileChatCollectServiceCreationOptionControl.xaml -------------------------------------------------------------------------------- /TVTComment/Views/ChatCollectServiceCreationOptionControl/FileChatCollectServiceCreationOptionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ChatCollectServiceCreationOptionControl/FileChatCollectServiceCreationOptionControl.xaml.cs -------------------------------------------------------------------------------- /TVTComment/Views/ChatCollectServiceCreationOptionControl/NichanChatCollectServiceCreationOptionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ChatCollectServiceCreationOptionControl/NichanChatCollectServiceCreationOptionControl.xaml -------------------------------------------------------------------------------- /TVTComment/Views/ChatCollectServiceCreationOptionControl/NichanChatCollectServiceCreationOptionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ChatCollectServiceCreationOptionControl/NichanChatCollectServiceCreationOptionControl.xaml.cs -------------------------------------------------------------------------------- /TVTComment/Views/ChatCollectServiceCreationOptionControl/NiconicoLiveChatCollectServiceCreationOptionControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ChatCollectServiceCreationOptionControl/NiconicoLiveChatCollectServiceCreationOptionControl.xaml -------------------------------------------------------------------------------- /TVTComment/Views/ChatCollectServiceCreationOptionControl/NiconicoLiveChatCollectServiceCreationOptionControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ChatCollectServiceCreationOptionControl/NiconicoLiveChatCollectServiceCreationOptionControl.xaml.cs -------------------------------------------------------------------------------- /TVTComment/Views/ChatCollectServiceCreationPresetControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ChatCollectServiceCreationPresetControl.xaml -------------------------------------------------------------------------------- /TVTComment/Views/ChatCollectServiceCreationPresetControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ChatCollectServiceCreationPresetControl.xaml.cs -------------------------------------------------------------------------------- /TVTComment/Views/ChatCollectServiceCreationSettingsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ChatCollectServiceCreationSettingsControl.xaml -------------------------------------------------------------------------------- /TVTComment/Views/ChatCollectServiceCreationSettingsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ChatCollectServiceCreationSettingsControl.xaml.cs -------------------------------------------------------------------------------- /TVTComment/Views/ChatDetailViewerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ChatDetailViewerWindow.xaml -------------------------------------------------------------------------------- /TVTComment/Views/ChatDetailViewerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ChatDetailViewerWindow.xaml.cs -------------------------------------------------------------------------------- /TVTComment/Views/Converters/BoolToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Converters/BoolToStringConverter.cs -------------------------------------------------------------------------------- /TVTComment/Views/Converters/ColorToSolidColorBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Converters/ColorToSolidColorBrushConverter.cs -------------------------------------------------------------------------------- /TVTComment/Views/Converters/EnumToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Converters/EnumToBoolConverter.cs -------------------------------------------------------------------------------- /TVTComment/Views/Converters/EnumToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Converters/EnumToStringConverter.cs -------------------------------------------------------------------------------- /TVTComment/Views/Converters/InverseBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Converters/InverseBoolConverter.cs -------------------------------------------------------------------------------- /TVTComment/Views/Converters/StringToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Converters/StringToColorConverter.cs -------------------------------------------------------------------------------- /TVTComment/Views/Grid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Grid.cs -------------------------------------------------------------------------------- /TVTComment/Views/NgSettingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/NgSettingWindow.xaml -------------------------------------------------------------------------------- /TVTComment/Views/NgSettingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/NgSettingWindow.xaml.cs -------------------------------------------------------------------------------- /TVTComment/Views/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/SettingsWindow.xaml -------------------------------------------------------------------------------- /TVTComment/Views/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /TVTComment/Views/SettingsWindowContents/ChatCollectServiceCreationPresetSettingControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/SettingsWindowContents/ChatCollectServiceCreationPresetSettingControl.xaml -------------------------------------------------------------------------------- /TVTComment/Views/SettingsWindowContents/ChatCollectServiceCreationPresetSettingControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/SettingsWindowContents/ChatCollectServiceCreationPresetSettingControl.xaml.cs -------------------------------------------------------------------------------- /TVTComment/Views/Shell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Shell.xaml -------------------------------------------------------------------------------- /TVTComment/Views/Shell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/Shell.xaml.cs -------------------------------------------------------------------------------- /TVTComment/Views/ShellContents/BasicSettingControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ShellContents/BasicSettingControl.xaml -------------------------------------------------------------------------------- /TVTComment/Views/ShellContents/BasicSettingControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ShellContents/BasicSettingControl.xaml.cs -------------------------------------------------------------------------------- /TVTComment/Views/ShellContents/ChatPostControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ShellContents/ChatPostControl.xaml -------------------------------------------------------------------------------- /TVTComment/Views/ShellContents/ChatPostControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/TVTComment/Views/ShellContents/ChatPostControl.xaml.cs -------------------------------------------------------------------------------- /プロセス間通信の手順.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silane/TVTComment/HEAD/プロセス間通信の手順.txt --------------------------------------------------------------------------------