├── .gitattributes ├── .gitignore ├── .gitmodules ├── BigoIF ├── BigoIF.csproj ├── Message.cs └── Properties │ └── AssemblyInfo.cs ├── BigoSitePlugin ├── Api.cs ├── BigoOptionsPanel.xaml ├── BigoOptionsPanel.xaml.cs ├── BigoOptionsTabPage.cs ├── BigoOptionsViewModel.cs ├── BigoServer.cs ├── BigoSiteContext.cs ├── BigoSiteOptions.cs ├── BigoSitePlugin.csproj ├── CommentPostPanel.xaml ├── CommentPostPanel.xaml.cs ├── CommentPostPanelViewModel.cs ├── CommentProvider.cs ├── DynamicJson.cs ├── Exceptions.cs ├── IBigoServer.cs ├── IBigoSiteContext.cs ├── IMetadataProvider.cs ├── Message.cs ├── Message │ ├── BigoMessageContext.cs │ ├── BigoMessageMetadata.cs │ └── BigoMessageMethods.cs ├── MessageParser.cs ├── Metadata.cs ├── Properties │ └── AssemblyInfo.cs └── ReloadManager.cs ├── BigoSitePluginTests ├── BigoSitePluginTests.csproj ├── Class1.cs └── Properties │ └── AssemblyInfo.cs ├── BouyomiPlugin ├── BouyomiChanClient.cs ├── BouyomiPlugin.csproj ├── ConfigView.xaml ├── ConfigView.xaml.cs ├── ConfigViewModel.cs ├── IpcTalker.cs ├── Options.cs ├── Properties │ └── AssemblyInfo.cs ├── TcpTalker.cs └── main.cs ├── BrowserCookieImplementations ├── BrowserCookieImplementations.csproj ├── Chrome.cs ├── ChromeAesGcm.cs ├── EdgeManager.cs ├── Firefox.cs ├── IE.cs ├── IE │ ├── NativeMethods.cs │ └── Tools.cs ├── NativeMethods.cs ├── Opera.cs ├── Properties │ └── AssemblyInfo.cs ├── SQLiteHelper.cs ├── TempFileProvider.cs ├── Tools.cs └── Unknown.cs ├── BrowserCookieImplementationsTests ├── BrowserCookieImplementationsTests.csproj ├── ChromeAesGcmTests.cs ├── FirefoxProfileTests.cs ├── Properties │ └── AssemblyInfo.cs ├── SampleData │ └── profiles.ini.txt └── Tools.cs ├── BrowserCookieInterfaces ├── BrowserCookieInterfaces.csproj ├── BrowserType.cs ├── Exceptions.cs ├── IBrowserManager.cs ├── IBrowserProfile.cs └── Properties │ └── AssemblyInfo.cs ├── CommentGeneratorPlugin ├── CommentGeneratorPlugin.csproj ├── ConfigViewModel.cs ├── DynamicXmlParser.cs ├── MessageItemsExtensions.cs ├── Options.cs ├── Properties │ └── AssemblyInfo.cs ├── SettingsView.xaml ├── SettingsView.xaml.cs ├── Tools.cs └── main.cs ├── CommentGeneratorPluginTests ├── CommentGeneratorPluginTests.csproj ├── Properties │ └── AssemblyInfo.cs ├── ToolsTests.cs └── XmlWritingTests.cs ├── CommentViewerCommon ├── BrowserLoader.cs ├── CommentViewerCommon.csproj ├── IBrowserLoader.cs └── Properties │ └── AssemblyInfo.cs ├── Common ├── AutoUpdate │ ├── DownloadPage.xaml │ ├── DownloadPage.xaml.cs │ ├── HttpClientDownloadWithProgress.cs │ ├── LatestVersionInfo.cs │ ├── Message.cs │ ├── Tools.cs │ ├── UpdateExistsPage.xaml │ ├── UpdateExistsPage.xaml.cs │ ├── UpdateNotExistsPage.xaml │ ├── UpdateNotExistsPage.xaml.cs │ ├── UpdateView.xaml │ └── UpdateView.xaml.cs ├── BindableTextBlock.cs ├── BrowserViewModel.cs ├── ColorPicker.xaml ├── ColorPicker.xaml.cs ├── CommentViewModelBase.cs ├── Common.csproj ├── Converter.cs ├── DynamicOptionsBase.cs ├── EmptyBrowserProfile.cs ├── FontSelectorView.xaml ├── FontSelectorView.xaml.cs ├── FontSelectorViewModel.cs ├── IOTest.cs ├── IWebsocket.cs ├── InfoCommentViewModel.cs ├── Logger.cs ├── LoggerTest.cs ├── MessageEmpty.cs ├── MessageImage.cs ├── MessageSvgData.cs ├── MessageSvgImage.cs ├── MessageText.cs ├── Properties │ └── AssemblyInfo.cs ├── SQLiteUserStore.cs ├── UnixTimeConverter.cs ├── UserStoreTest.cs ├── UserTest.cs ├── Utils.cs ├── ValueConverterGroup.cs ├── Websocket.cs └── Wpf │ ├── NumericUpDown.xaml │ ├── NumericUpDown.xaml.cs │ └── Tools.cs ├── CommonTests ├── CommonTests.csproj ├── DynamicOptionsBaseTests.cs ├── Properties │ └── AssemblyInfo.cs └── SQLiteUserStoreTests.cs ├── IPlugin ├── IConnectionStatus.cs ├── IPlugin.cs ├── Plugin.csproj └── Properties │ └── AssemblyInfo.cs ├── ISitePlugin ├── CommentViewModelBase.cs ├── ICommentProvider.cs ├── ICommentViewModel.cs ├── ICurrentUserInfo.cs ├── IIo.cs ├── IMessageContext.cs ├── IMessageMetadata.cs ├── IMessageMethods.cs ├── IMetadata.cs ├── IOptions.cs ├── IOptionsTabPage.cs ├── ISiteContext.cs ├── ISiteMessage.cs ├── IUserStore.cs ├── IValueChanged.cs ├── MessageBase.cs ├── MessagePart.cs ├── MessageType.cs ├── Properties │ └── AssemblyInfo.cs ├── SitePlugin.csproj ├── SiteType.cs └── ValueChangedEventArgs.cs ├── LICENSE ├── LineLiveIF ├── LineLiveIF.csproj ├── Message.cs └── Properties │ └── AssemblyInfo.cs ├── LineLiveSitePlugin ├── Api.cs ├── BlackListProvider.cs ├── Class1.cs ├── CommentPostPanel.xaml ├── CommentPostPanel.xaml.cs ├── CommentPostPanelViewModel.cs ├── DynamicJson.cs ├── Exceptions.cs ├── IDataServer.cs ├── ILineLiveSiteOptions.cs ├── ILiveInfo.cs ├── IMessageProvider.cs ├── LineLiveCommentProvider.cs ├── LineLiveCommentViewModel.cs ├── LineLiveOptionsPanel.cs ├── LineLiveOptionsPanel.xaml ├── LineLiveOptionsTabPage.cs ├── LineLiveServer.cs ├── LineLiveSiteContext.cs ├── LineLiveSiteOptions.cs ├── LineLiveSiteOptionsViewModel.cs ├── LineLiveSitePlugin.csproj ├── LiveInfo.cs ├── Low │ ├── Bulk.cs │ ├── ChannelInfo │ │ └── Class1.cs │ ├── FollowStart.cs │ ├── GiftMessage.cs │ ├── LiveInfo │ │ └── Class2.cs │ ├── Love.cs │ ├── Loves.cs │ ├── Message │ │ └── Class1.cs │ ├── My.cs │ ├── PromptlyStats.cs │ └── SystemMessage.cs ├── Message │ ├── LineLiveComment.cs │ ├── LineLiveConnected.cs │ ├── LineLiveDisconnected.cs │ ├── LineLiveMessageContext.cs │ ├── LineLiveMessageMetadata.cs │ └── LineLiveMessageMethods.cs ├── MessageProvider.cs ├── Metadata.cs ├── PromptyStatsProvider.cs ├── Properties │ └── AssemblyInfo.cs ├── Tools.cs └── app.config ├── LineLiveSitePluginTests ├── ApiTests.cs ├── Class1.cs ├── Class2.cs ├── Class3.cs ├── LineLiveCommentProviderTests.cs ├── LineLiveCommentViewModelTests.cs ├── LineLiveSiteContextTests.cs ├── LineLiveSitePluginTests.csproj ├── MessageMetadataTests.cs ├── Properties │ └── AssemblyInfo.cs ├── SampleData │ ├── ChannelInfo.txt │ ├── LiveInfo.txt │ ├── Loves.txt │ ├── PromptyStats.txt │ └── sample_bulk.txt ├── TestHelper.cs └── app.config ├── Mildom ├── Class1.cs ├── Mildom.csproj └── Properties │ └── AssemblyInfo.cs ├── MildomIF ├── Class1.cs ├── Message.cs ├── MildomIF.csproj └── Properties │ └── AssemblyInfo.cs ├── MildomSitePlugin ├── Api.cs ├── Class1.cs ├── DummyImpl.cs ├── DynamicJson.cs ├── Exceptions.cs ├── IDataServer.cs ├── ILiveInfo.cs ├── IMessageProvider.cs ├── IMildomSiteOptions.cs ├── InternalMessage │ └── InternalMessageParser.cs ├── Low │ ├── UserInfo │ │ └── Class1.cs │ ├── emotions │ │ └── Class1.cs │ └── gift_find │ │ └── Class1.cs ├── Message │ ├── MildomGift.cs │ ├── MirrativComment.cs │ ├── MirrativConnected.cs │ ├── MirrativDisconnected.cs │ ├── MirrativJoinRoom.cs │ ├── MirrativMessageContext.cs │ ├── MirrativMessageMetadata.cs │ └── MirrativMessageMethods.cs ├── MessageProvider.cs ├── MildomCommentProvider.cs ├── MildomOptionsTabPage.cs ├── MildomServer.cs ├── MildomSiteContext.cs ├── MildomSiteOptions.cs ├── MildomSiteOptionsViewModel.cs ├── MildomSitePlugin.csproj ├── Properties │ └── AssemblyInfo.cs ├── TabPagePanel.xaml ├── TabPagePanel.xaml.cs ├── Tools.cs └── WebSocket.cs ├── MildomSitePluginTests ├── Class1.cs ├── Class2.cs ├── Class3.cs ├── InternalMessageParserTests.cs ├── MildomSitePluginTests.csproj ├── Properties │ └── AssemblyInfo.cs ├── SampleData │ └── gift_find.txt └── TestHelper.cs ├── MirrativIF ├── Message.cs ├── MirrativIF.csproj └── Properties │ └── AssemblyInfo.cs ├── MirrativSitePlugin ├── Api.cs ├── CurrentUserInfo.cs ├── DummyImpl.cs ├── DynamicJson.cs ├── Exceptions.cs ├── IDataServer.cs ├── ILiveInfo.cs ├── IMessageProvider.cs ├── IMirrativSiteOptions.cs ├── LiveInfo.cs ├── Low │ ├── Class1.cs │ ├── CurrentUser.cs │ ├── LiveComments.cs │ └── LiveInfo.cs ├── Message │ ├── MirrativComment.cs │ ├── MirrativConnected.cs │ ├── MirrativDisconnected.cs │ ├── MirrativItem.cs │ ├── MirrativJoinRoom.cs │ ├── MirrativMessageContext.cs │ ├── MirrativMessageMetadata.cs │ └── MirrativMessageMethods.cs ├── MessageProvider.cs ├── Metadata.cs ├── MetadataProvider2.cs ├── MirrativCommentProvider2.cs ├── MirrativCommentViewModel.cs ├── MirrativOptionsTabPage.cs ├── MirrativServer.cs ├── MirrativSiteContext.cs ├── MirrativSiteOptions.cs ├── MirrativSiteOptionsViewModel.cs ├── MirrativSitePlugin.csproj ├── Properties │ └── AssemblyInfo.cs ├── TabPagePanel.xaml ├── TabPagePanel.xaml.cs └── Tools.cs ├── MirrativSitePluginTests ├── ApiTests.cs ├── AutoReconnectionTests.cs ├── CommentProviderTests.cs ├── MessageMetadataTests.cs ├── MirrativSitePluginTests.csproj ├── ParserTests.cs ├── Properties │ └── AssemblyInfo.cs ├── SampleData │ ├── Class1.txt │ ├── Home_loggedin.txt │ ├── Home_not_loggedin.txt │ └── LiveInfo.txt ├── Tools.cs └── ToolsTests.cs ├── MixchIF ├── Message.cs ├── MixchIF.csproj └── Properties │ └── AssemblyInfo.cs ├── MixchSitePlugin ├── API.cs ├── CommentPostPanel.xaml ├── CommentPostPanel.xaml.cs ├── CommentPostPanelViewModel.cs ├── CommentProvider.cs ├── DataSource.cs ├── DynamicJson.cs ├── IMixchWebsocket.cs ├── Item.cs ├── Message │ ├── MessageMetadata.cs │ ├── MixchMessage.cs │ ├── MixchMessageContext.cs │ └── MixchMessageMethods.cs ├── Metadata.cs ├── MixchOptionsPanel.xaml ├── MixchOptionsPanel.xaml.cs ├── MixchOptionsTabPage.cs ├── MixchOptionsViewModel.cs ├── MixchSiteContext.cs ├── MixchSiteOptions.cs ├── MixchSitePlugin.csproj ├── MixchWebsocket.cs ├── Packet.cs ├── Properties │ └── Resources.Designer.cs ├── Tools.cs ├── UserViewModel.cs ├── Websocket.cs └── app.config ├── MultiCommentViewer.sln ├── MultiCommentViewer ├── App.config ├── AppNoStartupUri.xaml ├── AppNoStartupUri.xaml.cs ├── ConnectionName.cs ├── CustomChrome.cs ├── Dictionary1.xaml ├── IOptions.cs ├── IOptionsLoader.cs ├── IPluginManager.cs ├── ISitePluginLoader.cs ├── Messages.cs ├── MultiCommentViewer.csproj ├── MultiCommentViewer.csproj.rej ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ReadMe.txt ├── Test │ ├── DynamicOptionsTest.cs │ ├── OptionsLoaderTest.cs │ └── SitePluginLoaderTest.cs ├── TexTraTranslate.cs ├── Themes │ ├── CustomChrome.Generic.xaml │ └── Generic.xaml ├── ViewModels │ ├── CommentData.cs │ ├── CommentDataGridViewModelBase.cs │ ├── CommentViewModel │ │ ├── InfoCommentViewModel.cs │ │ ├── LineLiveCommentViewModel.cs │ │ ├── McvBigoCommentViewModel.cs │ │ ├── McvMildomCommentViewModel.cs │ │ ├── McvMirrativCommentViewModel.cs │ │ ├── McvWhowatchCommentViewModel.cs │ │ ├── McvYouTubeLiveCommentViewModel.cs │ │ ├── MixchCommentViewModel.cs │ │ ├── NicoCommentViewModel.cs │ │ ├── OpenrecCommentViewModel.cs │ │ ├── PeriscopeCommentViewModel.cs │ │ ├── ShowRoomCommentViewModel .cs │ │ ├── TestCommentViewModel.cs │ │ ├── TwicasCommentViewModel.cs │ │ └── TwitchCommentViewModel.cs │ ├── ConnectionSerializer.cs │ ├── ConnectionViewModel.cs │ ├── EmptyBrowserProfile.cs │ ├── IMcvCommentViewModel.cs │ ├── MainViewModel.cs │ ├── MetadataViewModel.cs │ ├── PluginHost.cs │ ├── PluginMenuItemViewModel.cs │ ├── SiteViewModel.cs │ ├── UserListViewModel.cs │ ├── UserStoreTest.cs │ ├── UserViewModel.cs │ └── ViewModelLocator.cs ├── Views │ ├── CommentDataGrid.xaml │ ├── CommentDataGrid.xaml.cs │ ├── MainOptionsPanel.xaml │ ├── MainOptionsPanel.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Mildom │ │ ├── MildomCommentPostPanel.xaml │ │ ├── MildomCommentPostPanel.xaml.cs │ │ ├── MildomRawMessagePostPanel.xaml │ │ ├── MildomRawMessagePostPanel.xaml.cs │ │ └── MildomRawMessagePostPanelViewModel.cs │ ├── Mirrativ │ │ ├── MirrativCommentPostPanel.xaml │ │ ├── MirrativCommentPostPanel.xaml.cs │ │ ├── MirrativRawMessagePostPanel.xaml │ │ ├── MirrativRawMessagePostPanel.xaml.cs │ │ └── MirrativRawMessagePostPanelViewModel.cs │ ├── Nico │ │ ├── NicoCommentPostPanel.xaml │ │ ├── NicoCommentPostPanel.xaml.cs │ │ ├── NicoRawMessagePostPanel.xaml │ │ ├── NicoRawMessagePostPanel.xaml.cs │ │ └── NicoRawMessagePostPanelViewModel.cs │ ├── OptionsView.xaml │ ├── OptionsView.xaml.cs │ ├── Twitch │ │ ├── TwitchCommentPostPanel.xaml │ │ ├── TwitchCommentPostPanel.xaml.cs │ │ ├── TwitchRawMessagePostPanel.xaml │ │ ├── TwitchRawMessagePostPanel.xaml.cs │ │ └── TwitchRawMessagePostPanelViewModel.cs │ ├── UserListView.xaml │ ├── UserListView.xaml.cs │ ├── UserView.xaml │ ├── UserView.xaml.cs │ └── YouTubeLive │ │ ├── TwitchCommentPostPanel.xaml │ │ ├── TwitchCommentPostPanel.xaml.cs │ │ ├── TwitchRawMessagePostPanel.xaml │ │ ├── TwitchRawMessagePostPanel.xaml.cs │ │ └── TwitchRawMessagePostPanelViewModel.cs ├── mcv_icon.ico ├── mcv_icon2.ico ├── postBuild.ps1 ├── updateFileList.ps1 └── zipping.ps1 ├── MultiCommentViewerTests ├── MultiCommentViewerTests.csproj └── Properties │ └── AssemblyInfo.cs ├── NicoLiveIF ├── Message.cs ├── NicoLiveIF.csproj └── Properties │ └── AssemblyInfo.cs ├── NicoSitePlugin2 ├── Api.cs ├── Chat │ ├── ChatGuestOptions.cs │ ├── ChatLoggedInOptions.cs │ ├── ChatMessage.cs │ ├── ChatParser.cs │ ├── ChatProvider.cs │ ├── IChatMessage.cs │ ├── IChatOptions.cs │ ├── Ping.cs │ ├── Thread.cs │ └── UnknownMessage.cs ├── CommentPostPanel.xaml ├── CommentPostPanel.xaml.cs ├── CommentPostPanelViewModel.cs ├── DataProps.cs ├── DataSource.cs ├── IDataSource.cs ├── IInput.cs ├── INicoCommentProvider.cs ├── INicoSiteOptions.cs ├── Low │ ├── CommunityLives.cs │ └── UserInfo.cs ├── Message │ ├── NicoAd.cs │ ├── NicoComment.cs │ ├── NicoConnected.cs │ ├── NicoDisconnected.cs │ ├── NicoInfo.cs │ ├── NicoKickCommand.cs │ ├── NicoMessageContext.cs │ ├── NicoMessageMetadata.cs │ └── NicoMessageMethods.cs ├── Metadata.cs ├── Metadata │ ├── Disconnect.cs │ ├── IMetaMessage.cs │ ├── IgnoredMessage.cs │ ├── MetaParser.cs │ ├── MetaProvider.cs │ ├── Ping.cs │ ├── Pong.cs │ ├── PostComment.cs │ ├── Room.cs │ ├── Seat.cs │ ├── ServerTime.cs │ ├── Statistics.cs │ └── UnknownMessage.cs ├── MyInfo.cs ├── NicoOptionsPanel.xaml ├── NicoOptionsPanel.xaml.cs ├── NicoOptionsTabPage.cs ├── NicoSiteContext.cs ├── NicoSiteOptions.cs ├── NicoSiteOptionsViewModel.cs ├── NicoSitePlugin2.csproj ├── ParseException.cs ├── Properties │ └── AssemblyInfo.cs ├── SpecChangedException.cs ├── TestCommentProvider.cs └── Tools.cs ├── OpenrecIF ├── Message.cs ├── OpenrecIF.csproj └── Properties │ └── AssemblyInfo.cs ├── OpenrecSitePlugin ├── API.cs ├── BlackListProvider.cs ├── CommentPostPanel.xaml ├── CommentPostPanel.xaml.cs ├── CommentPostPanelViewModel.cs ├── CommentProvider.cs ├── Context.cs ├── DataSource.cs ├── DynamicJson.cs ├── Exceptions.cs ├── IBlackListProvider.cs ├── IOpenrecCommentData.cs ├── IOpenrecWebsocket.cs ├── Low │ ├── BlackList │ │ └── Class1.cs │ ├── Chats │ │ └── Class1.cs │ ├── External │ │ └── Movies │ │ │ └── Class1.cs │ ├── LivePage │ │ └── Class1.cs │ └── Movies │ │ └── Class1.cs ├── Message │ ├── MessageMetadata.cs │ ├── OpenrecComment.cs │ ├── OpenrecConnected.cs │ ├── OpenrecDisconnected.cs │ ├── OpenrecMessageContext.cs │ └── OpenrecMessageMethods.cs ├── Metadata.cs ├── MovieInfo.cs ├── OpenrecCommentData.cs ├── OpenrecCommentViewModel.cs ├── OpenrecOptionsPanel.xaml ├── OpenrecOptionsPanel.xaml.cs ├── OpenrecOptionsTabPage.cs ├── OpenrecOptionsViewModel.cs ├── OpenrecSiteContext.cs ├── OpenrecSiteOptions.cs ├── OpenrecSitePlugin.csproj ├── OpenrecWebsocket.cs ├── Packet.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Tools.cs ├── UserViewModel.cs ├── Websocket.cs ├── app.config ├── sprite_premium_landing.png ├── sprite_v4.png ├── sprite_v5.png ├── sprite_v6.png └── sprites.png ├── OpenrecSitePluginTests ├── APITests.cs ├── CommentProviderTests.cs ├── CommentViewModelTests.cs ├── MessageMetadataTests.cs ├── OpenrecSitePluginTests.csproj ├── Properties │ └── AssemblyInfo.cs ├── SampleData │ ├── Chats_stamp.txt │ ├── External │ │ └── Movies │ │ │ └── TextFile1.txt │ ├── Home_loggedin.txt │ ├── Home_notloggedin.txt │ ├── Websocket │ │ └── MessageType0.txt │ └── blacklists.txt ├── Tools.cs └── ToolsTests.cs ├── PeriscopeIF ├── Message.cs ├── PeriscopeIF.csproj └── Properties │ └── AssemblyInfo.cs ├── PeriscopeSitePlugin ├── Api.cs ├── CommentPostPanel.xaml ├── CommentPostPanel.xaml.cs ├── CommentPostPanelViewModel.cs ├── CurrentUserInfo.cs ├── DynamicJson.cs ├── Exceptions.cs ├── IDataServer.cs ├── IInternalMessage.cs ├── ILiveInfo.cs ├── IMessageProvider.cs ├── IPeriscopeSiteOptions.cs ├── IWebsocket.cs ├── IWebsocketMessage.cs ├── InternalMessageType.cs ├── Kind1Type1.cs ├── Kind1Type2.cs ├── Kind2Kind1.cs ├── Kind2Kind2.cs ├── LiveInfo.cs ├── Low │ ├── AccessChatPublic │ │ └── Class1.cs │ ├── AccessVideo │ │ └── Class1.cs │ ├── AccessVideoPublic │ │ └── Class1.cs │ ├── Broadcast │ │ └── Class1.cs │ ├── kind1payloadtype1 │ │ └── Class1.cs │ ├── kind1payloadtype2 │ │ └── Class1.cs │ ├── kind1type1 │ │ └── Class1.cs │ ├── kind1type1_newtype │ │ └── Class1.cs │ ├── kind1type2 │ │ └── Class1.cs │ ├── kind2kind1 │ │ └── Class1.cs │ ├── kind2kind2 │ │ └── Class1.cs │ ├── kind2kind4 │ │ └── Class1.cs │ ├── kind2payloadkind1 │ │ └── Class1.cs │ ├── kind2payloadkind2 │ │ └── Class1.cs │ └── kind2payloadkind4 │ │ └── Class1.cs ├── Message │ ├── MessageContext.cs │ ├── MessageMetadata.cs │ ├── MessageMethods.cs │ ├── PeriscopeComment.cs │ ├── PeriscopeConnected.cs │ ├── PeriscopeDisconnected.cs │ ├── PeriscopeJoin.cs │ └── PeriscopeLeave.cs ├── MessageParser.cs ├── PeriscopeCommentProvider2.cs ├── PeriscopeOptionsPanel.cs ├── PeriscopeOptionsPanel.xaml ├── PeriscopeOptionsTabPage.cs ├── PeriscopeServer.cs ├── PeriscopeSiteContext.cs ├── PeriscopeSiteOptions.cs ├── PeriscopeSiteOptionsViewModel.cs ├── PeriscopeSitePlugin.csproj ├── Properties │ └── AssemblyInfo.cs ├── Tools.cs ├── Websocket.cs └── WebsocketMessage.cs ├── PeriscopeSitePluginTests ├── ApiTests.cs ├── MessageParserTests.cs ├── MessageTests.cs ├── PeriscopeSitePluginTests.csproj ├── Properties │ └── AssemblyInfo.cs ├── SampleData │ ├── AccessChatPublic.txt │ ├── AccessVideo.txt │ ├── AccessVideoPublic.txt │ └── ChannelPageHtml_Running.txt ├── TestHelper.cs └── ToolsTests.cs ├── PluginCommon ├── PluginCommon.csproj ├── Properties │ └── AssemblyInfo.cs └── Tools.cs ├── PluginCommonTests ├── Class1.cs ├── PluginCommonTests.csproj └── Properties │ └── AssemblyInfo.cs ├── README.md ├── ShowRoomIF ├── Class1.cs ├── Message.cs ├── Properties │ └── AssemblyInfo.cs └── ShowRoomIF.csproj ├── ShowRoomSitePlugin ├── Api.cs ├── CommentPostPanel.xaml ├── CommentPostPanel.xaml.cs ├── CommentPostPanelViewModel.cs ├── DynamicJson.cs ├── Exceptions.cs ├── IDataServer.cs ├── IInternalMessage.cs ├── IMessageProvider1.cs ├── IShowRoomSiteOptions.cs ├── IWebsocketMessage.cs ├── InternalMessageType.cs ├── Low │ └── LiveInfo │ │ └── Class1.cs ├── Message │ ├── MessageContext.cs │ ├── MessageMetadata.cs │ ├── MessageMethods.cs │ ├── ShowRoomComment.cs │ ├── ShowRoomConnected.cs │ └── ShowRoomDisconnected.cs ├── MessageProvider.cs ├── Metadata.cs ├── Properties │ └── AssemblyInfo.cs ├── ShowRoomCommentProvider.cs ├── ShowRoomOptionsPanel.cs ├── ShowRoomOptionsPanel.xaml ├── ShowRoomOptionsTabPage.cs ├── ShowRoomServer.cs ├── ShowRoomSiteContext.cs ├── ShowRoomSiteOptions.cs ├── ShowRoomSiteOptionsViewModel.cs ├── ShowRoomSitePlugin.csproj ├── Tools.cs └── Websocket.cs ├── ShowRoomSitePluginTests ├── ApiTests.cs ├── MessageParserTests.cs ├── Properties │ └── AssemblyInfo.cs └── ShowRoomSitePluginTests.csproj ├── SitePluginCommon ├── ActiveCounter.cs ├── AutoReconnection │ ├── ConnectionManager.cs │ ├── IDummy.cs │ ├── IProvider.cs │ ├── MessageUntara.cs │ ├── NewAutoReconnector.cs │ └── ProviderFinishReason.cs ├── AutoReconnector │ ├── AutoReconnector.cs │ ├── DisconnectReason.cs │ ├── IConnector.cs │ ├── MessageUntara.cs │ └── SystemInfoEventArgs.cs ├── Class1.cs ├── CommentProviderBase.cs ├── FirstCommentDetector.cs ├── IActiveCounter.cs ├── InfoMessage.cs ├── Metadata.cs ├── Properties │ └── AssemblyInfo.cs ├── ServerBase.cs ├── SiteContextBase.cs ├── SitePluginCommon.csproj ├── UserStoreManager.cs └── Utils.cs ├── SitePluginCommonTests ├── AutoReconnectionTests.cs ├── Properties │ └── AssemblyInfo.cs ├── SitePluginCommonTests.csproj └── UtilsTests.cs ├── SitePluginTests ├── MessageMetadataTests.cs ├── Properties │ └── AssemblyInfo.cs └── SitePluginTests.csproj ├── TestSiteIF ├── Message.cs ├── Properties │ └── AssemblyInfo.cs └── TestSiteIF.csproj ├── TestSitePlugin ├── CommentPostPanel.xaml ├── CommentPostPanel.xaml.cs ├── CommentPostPanelViewModel.cs ├── Message │ ├── MessageContext.cs │ ├── TestComment.cs │ ├── TestMetadata.cs │ └── TestMethods.cs ├── Properties │ └── AssemblyInfo.cs ├── TestCommentProvider.cs ├── TestSiteContext.cs ├── TestSitePlugin.csproj └── TestUserStore.cs ├── TwicasIF ├── Message.cs ├── Properties │ └── AssemblyInfo.cs └── TwicasIF.csproj ├── TwicasSitePlugin ├── API.cs ├── CommentData.cs ├── CommentPostPanel.xaml ├── CommentPostPanel.xaml.cs ├── CommentPostPanelViewModel.cs ├── CurrentUserInfo.cs ├── DynamicJson.cs ├── Exceptions.cs ├── ICommentData.cs ├── IDataServer.cs ├── Low │ ├── Comment │ │ └── Class1.cs │ ├── ListAll │ │ └── Class1.cs │ └── ResponseToPost │ │ └── Class1.cs ├── LowObjects.cs ├── Message │ ├── ItemType.cs │ ├── MessageMetadata.cs │ ├── TwicasComment.cs │ ├── TwicasConnected.cs │ ├── TwicasDisconnected.cs │ ├── TwicasItem.cs │ ├── TwicasKiitos.cs │ ├── TwicasMessageContext.cs │ └── TwicasMessageMethods.cs ├── Metadata.cs ├── MetadataProvider.cs ├── Properties │ └── AssemblyInfo.cs ├── StreamChecker2.cs ├── Tools.cs ├── TwicasAutoReconnector.cs ├── TwicasCommentProvider2.cs ├── TwicasCommentViewModel.cs ├── TwicasOptionsPanel.xaml ├── TwicasOptionsPanel.xaml.cs ├── TwicasServer.cs ├── TwicasSiteContext.cs ├── TwicasSiteOptions.cs ├── TwicasSiteOptionsViewModel.cs ├── TwicasSitePlugin.csproj └── WebsocketMessageProvider.cs ├── TwicasSitePluginTests ├── ApiTests.cs ├── InternalItemTest.cs ├── MessageMetadataTests.cs ├── MessageParserTests.cs ├── Properties │ └── AssemblyInfo.cs ├── SampleData │ └── ListAll.txt ├── StreamCheckerParseTests.cs ├── TestHelper.cs ├── ToolsTests.cs ├── TwicasCommentViewModelTests.cs └── TwicasSitePluginTests.csproj ├── TwitchIF ├── Message.cs ├── Properties │ └── AssemblyInfo.cs └── TwitchIF.csproj ├── TwitchSitePlugin ├── Command.cs ├── CommentPostPanel.xaml ├── CommentPostPanel.xaml.cs ├── CommentPostPanelViewModel.cs ├── CommentProvider.cs ├── ICommentData.cs ├── IMetadataProvider.cs ├── ITwitchSiteOptions.cs ├── IWebSocket.cs ├── Low │ ├── ChannelProduct │ │ └── Class1.cs │ └── Class1.cs ├── Me.cs ├── Message │ ├── MessageMetadata.cs │ ├── TwitchComment.cs │ ├── TwitchConnected.cs │ ├── TwitchDisconnected.cs │ ├── TwitchMessageContext.cs │ ├── TwitchMessageMethods.cs │ └── TwitchNotice.cs ├── MessageProvider.cs ├── MetadataProvider.cs ├── Properties │ └── AssemblyInfo.cs ├── TabPagePanel.xaml ├── TabPagePanel.xaml.cs ├── Tools.cs ├── TwitchCommentViewModel.cs ├── TwitchOptionsTabPage.cs ├── TwitchSiteContext.cs ├── TwitchSiteOptions.cs ├── TwitchSiteOptionsViewModel.cs ├── TwitchSitePlugin.csproj └── app.config ├── TwitchSitePluginTests ├── ApiTests.cs ├── CommandParseTests.cs ├── CommentViewModelTests.cs ├── MessageMetadataTests.cs ├── Properties │ └── AssemblyInfo.cs ├── SampleData │ ├── ChannelProduct.txt │ └── Streams.txt ├── TestHelper.cs ├── ToolsGetMessageItemsTests.cs ├── ToolsTests.cs ├── TwitchCommentProviderTests.cs ├── TwitchCommentViewerTests.cs ├── TwitchSiteContextTests.cs ├── TwitchSitePluginTests.csproj └── app.config ├── WhowatchIF ├── Message.cs ├── Properties │ └── AssemblyInfo.cs └── WhowatchIF.csproj ├── WhowatchSitePlugin ├── Api.cs ├── Class1.cs ├── CommentPostPanel.xaml ├── CommentPostPanel.xaml.cs ├── CommentPostPanelViewModel.cs ├── CurrentUserInfo.cs ├── DataServer.cs ├── DynamicJson.cs ├── Exceptions.cs ├── IDataServer.cs ├── IMe.cs ├── IWebsocket.cs ├── IWhowatchSiteOptions.cs ├── InternalCommentProvider.cs ├── InvalidInputException.cs ├── Low │ ├── LiveData │ │ └── Class1.cs │ ├── Me │ │ └── Class1.cs │ ├── PlayItems │ │ └── Class1.cs │ └── Profile │ │ └── Profile.cs ├── Message │ ├── CommentMessageMetadata.cs │ ├── ItemMessageMetadata.cs │ ├── MessageMetadataBase.cs │ ├── WhowatchComment.cs │ ├── WhowatchConnected.cs │ ├── WhowatchDisconnected.cs │ ├── WhowatchItem.cs │ ├── WhowatchMessageContext.cs │ ├── WhowatchMessageMethods.cs │ └── WhowatchNgComment.cs ├── MessageParser.cs ├── MessageParsing │ └── Shout.cs ├── Metadata.cs ├── MetadataProvider.cs ├── PlayItem.cs ├── Properties │ └── AssemblyInfo.cs ├── TabPagePanel.xaml ├── TabPagePanel.xaml.cs ├── Tools.cs ├── Websocket.cs ├── WhowatchCommentProvider.cs ├── WhowatchCommentViewModel.cs ├── WhowatchInternalMessageType.cs ├── WhowatchOptionsTabPage.cs ├── WhowatchSiteContext.cs ├── WhowatchSiteOptions.cs ├── WhowatchSiteOptionsViewModel.cs └── WhowatchSitePlugin.csproj ├── WhowatchSitePluginTests ├── ApiTests.cs ├── MessageMetadataTests.cs ├── MessageParserTests.cs ├── Properties │ └── AssemblyInfo.cs ├── SampleData │ ├── Comment_BY_SYSTEM.txt │ ├── LiveData.txt │ ├── LiveData_Item.txt │ ├── PlayItems.txt │ └── Profile.txt ├── Tools.cs ├── ToolsTests.cs ├── WhowatchCommentViewModelTests.cs ├── WhowatchSiteOptionsTests.cs └── WhowatchSitePluginTests.csproj ├── YouTubeLiveIF ├── Message.cs ├── Properties │ └── AssemblyInfo.cs └── YouTubeLiveIF.csproj ├── YouTubeLiveSitePlugin ├── ChannelLiveFinder.cs ├── IYouTubeCommentProvider.cs ├── IYouTubeSiteContext.cs ├── Message.cs ├── Next │ ├── CommentProviderNext.cs │ ├── InternalMessage.cs │ └── Tools.cs ├── Properties │ └── AssemblyInfo.cs ├── Test2 │ ├── CommentPostPanel.xaml │ ├── CommentPostPanel.xaml.cs │ ├── CommentPostPanelViewModel.cs │ ├── CurrentUserInfo.cs │ ├── Exceptions.cs │ ├── IMetadataProvider.cs │ ├── IYouTubeLiveServer.cs │ ├── Message │ │ ├── YouTubeLiveMessageContext.cs │ │ ├── YouTubeLiveMessageMetadata.cs │ │ └── YouTubeLiveMessageMethods.cs │ ├── Metadata.cs │ ├── MetadataProvider.cs │ ├── ReloadManager.cs │ ├── Tools.cs │ ├── VidResolver.cs │ ├── YouTubeListOptionsTabPage.cs │ ├── YouTubeLiveOptionsPanel.xaml │ ├── YouTubeLiveOptionsPanel.xaml.cs │ ├── YouTubeLiveOptionsViewModel.cs │ ├── YouTubeLiveServer.cs │ ├── YouTubeLiveSiteContext.cs │ └── YouTubeLiveSiteOptions.cs └── YouTubeLiveSitePlugin.csproj ├── YouTubeLiveSitePluginTests ├── ChannelLiveFinderTests.cs ├── MessageMetadataTests.cs ├── Properties │ └── AssemblyInfo.cs ├── ReloadManagerTests.cs ├── SampleData │ ├── AddChatAction_liveChatPaidMessageRenderer.txt │ ├── AddChatItemAction_authorBadge.txt │ ├── AddChatItemAction_authorBadge_moderator.txt │ ├── Channel_LiveNow_20221127.txt │ ├── Channel_LiveNow_selected.txt │ ├── Channel_LiveNow_selected_2lives.txt │ ├── Channel_LiveNow_selected_ytInitialData.txt │ ├── Channel_Three_on_air.txt │ ├── Channel_live.txt │ ├── Channel_live_off_air.txt │ ├── Channel_on_air.txt │ ├── Channel_some_archives.txt │ ├── Channel_some_archives_with_cc_label.txt │ ├── CommentPost_Result_NoError.txt │ ├── CommentPost_Result_TooShort.txt │ ├── Embed_loggedin.txt │ ├── Embed_notloggedin.txt │ ├── GetLiveChatJson_Reload.txt │ ├── GetLiveChat_20210108.txt │ ├── LiveChat.txt │ ├── LiveChat_2.txt │ ├── LivePage_ytInitialPlayerResponse.txt │ ├── LivePage_ytplayerconfig.txt │ ├── YtInitialData.txt │ └── ytPlayerConfig.txt ├── Tools.cs ├── ToolsTests.cs ├── VidResolverTests.cs ├── YouTubeLiveServerTests.cs └── YouTubeLiveSitePluginTests.csproj ├── YoyakuPlugin ├── Converter.cs ├── IOptions.cs ├── Model.cs ├── Options.cs ├── PluginBody.cs ├── Properties │ └── AssemblyInfo.cs ├── SettingsView.xaml ├── SettingsView.xaml.cs ├── SettingsViewModel.cs ├── User.cs └── YoyakuPlugin.csproj └── YoyakuPluginTests ├── CommandTests.cs ├── ModelTests.cs ├── Properties └── AssemblyInfo.cs ├── SettingsViewModelTests.cs └── YoyakuPluginTests.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/.gitmodules -------------------------------------------------------------------------------- /BigoIF/BigoIF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoIF/BigoIF.csproj -------------------------------------------------------------------------------- /BigoIF/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoIF/Message.cs -------------------------------------------------------------------------------- /BigoIF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BigoSitePlugin/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/Api.cs -------------------------------------------------------------------------------- /BigoSitePlugin/BigoOptionsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/BigoOptionsPanel.xaml -------------------------------------------------------------------------------- /BigoSitePlugin/BigoOptionsPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/BigoOptionsPanel.xaml.cs -------------------------------------------------------------------------------- /BigoSitePlugin/BigoOptionsTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/BigoOptionsTabPage.cs -------------------------------------------------------------------------------- /BigoSitePlugin/BigoOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/BigoOptionsViewModel.cs -------------------------------------------------------------------------------- /BigoSitePlugin/BigoServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/BigoServer.cs -------------------------------------------------------------------------------- /BigoSitePlugin/BigoSiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/BigoSiteContext.cs -------------------------------------------------------------------------------- /BigoSitePlugin/BigoSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/BigoSiteOptions.cs -------------------------------------------------------------------------------- /BigoSitePlugin/BigoSitePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/BigoSitePlugin.csproj -------------------------------------------------------------------------------- /BigoSitePlugin/CommentPostPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/CommentPostPanel.xaml -------------------------------------------------------------------------------- /BigoSitePlugin/CommentPostPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/CommentPostPanel.xaml.cs -------------------------------------------------------------------------------- /BigoSitePlugin/CommentPostPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/CommentPostPanelViewModel.cs -------------------------------------------------------------------------------- /BigoSitePlugin/CommentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/CommentProvider.cs -------------------------------------------------------------------------------- /BigoSitePlugin/DynamicJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/DynamicJson.cs -------------------------------------------------------------------------------- /BigoSitePlugin/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/Exceptions.cs -------------------------------------------------------------------------------- /BigoSitePlugin/IBigoServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/IBigoServer.cs -------------------------------------------------------------------------------- /BigoSitePlugin/IBigoSiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/IBigoSiteContext.cs -------------------------------------------------------------------------------- /BigoSitePlugin/IMetadataProvider.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BigoSitePlugin/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/Message.cs -------------------------------------------------------------------------------- /BigoSitePlugin/Message/BigoMessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/Message/BigoMessageContext.cs -------------------------------------------------------------------------------- /BigoSitePlugin/Message/BigoMessageMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/Message/BigoMessageMetadata.cs -------------------------------------------------------------------------------- /BigoSitePlugin/Message/BigoMessageMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/Message/BigoMessageMethods.cs -------------------------------------------------------------------------------- /BigoSitePlugin/MessageParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/MessageParser.cs -------------------------------------------------------------------------------- /BigoSitePlugin/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/Metadata.cs -------------------------------------------------------------------------------- /BigoSitePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("BigoSitePluginTests")] 4 | -------------------------------------------------------------------------------- /BigoSitePlugin/ReloadManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePlugin/ReloadManager.cs -------------------------------------------------------------------------------- /BigoSitePluginTests/BigoSitePluginTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePluginTests/BigoSitePluginTests.csproj -------------------------------------------------------------------------------- /BigoSitePluginTests/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BigoSitePluginTests/Class1.cs -------------------------------------------------------------------------------- /BigoSitePluginTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BouyomiPlugin/BouyomiChanClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BouyomiPlugin/BouyomiChanClient.cs -------------------------------------------------------------------------------- /BouyomiPlugin/BouyomiPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BouyomiPlugin/BouyomiPlugin.csproj -------------------------------------------------------------------------------- /BouyomiPlugin/ConfigView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BouyomiPlugin/ConfigView.xaml -------------------------------------------------------------------------------- /BouyomiPlugin/ConfigView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BouyomiPlugin/ConfigView.xaml.cs -------------------------------------------------------------------------------- /BouyomiPlugin/ConfigViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BouyomiPlugin/ConfigViewModel.cs -------------------------------------------------------------------------------- /BouyomiPlugin/IpcTalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BouyomiPlugin/IpcTalker.cs -------------------------------------------------------------------------------- /BouyomiPlugin/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BouyomiPlugin/Options.cs -------------------------------------------------------------------------------- /BouyomiPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BouyomiPlugin/TcpTalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BouyomiPlugin/TcpTalker.cs -------------------------------------------------------------------------------- /BouyomiPlugin/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BouyomiPlugin/main.cs -------------------------------------------------------------------------------- /BrowserCookieImplementations/Chrome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieImplementations/Chrome.cs -------------------------------------------------------------------------------- /BrowserCookieImplementations/ChromeAesGcm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieImplementations/ChromeAesGcm.cs -------------------------------------------------------------------------------- /BrowserCookieImplementations/EdgeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieImplementations/EdgeManager.cs -------------------------------------------------------------------------------- /BrowserCookieImplementations/Firefox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieImplementations/Firefox.cs -------------------------------------------------------------------------------- /BrowserCookieImplementations/IE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieImplementations/IE.cs -------------------------------------------------------------------------------- /BrowserCookieImplementations/IE/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieImplementations/IE/Tools.cs -------------------------------------------------------------------------------- /BrowserCookieImplementations/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieImplementations/NativeMethods.cs -------------------------------------------------------------------------------- /BrowserCookieImplementations/Opera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieImplementations/Opera.cs -------------------------------------------------------------------------------- /BrowserCookieImplementations/SQLiteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieImplementations/SQLiteHelper.cs -------------------------------------------------------------------------------- /BrowserCookieImplementations/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieImplementations/Tools.cs -------------------------------------------------------------------------------- /BrowserCookieImplementations/Unknown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieImplementations/Unknown.cs -------------------------------------------------------------------------------- /BrowserCookieImplementationsTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BrowserCookieImplementationsTests/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieImplementationsTests/Tools.cs -------------------------------------------------------------------------------- /BrowserCookieInterfaces/BrowserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieInterfaces/BrowserType.cs -------------------------------------------------------------------------------- /BrowserCookieInterfaces/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieInterfaces/Exceptions.cs -------------------------------------------------------------------------------- /BrowserCookieInterfaces/IBrowserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieInterfaces/IBrowserManager.cs -------------------------------------------------------------------------------- /BrowserCookieInterfaces/IBrowserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/BrowserCookieInterfaces/IBrowserProfile.cs -------------------------------------------------------------------------------- /BrowserCookieInterfaces/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CommentGeneratorPlugin/ConfigViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/CommentGeneratorPlugin/ConfigViewModel.cs -------------------------------------------------------------------------------- /CommentGeneratorPlugin/DynamicXmlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/CommentGeneratorPlugin/DynamicXmlParser.cs -------------------------------------------------------------------------------- /CommentGeneratorPlugin/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/CommentGeneratorPlugin/Options.cs -------------------------------------------------------------------------------- /CommentGeneratorPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CommentGeneratorPlugin/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/CommentGeneratorPlugin/SettingsView.xaml -------------------------------------------------------------------------------- /CommentGeneratorPlugin/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/CommentGeneratorPlugin/SettingsView.xaml.cs -------------------------------------------------------------------------------- /CommentGeneratorPlugin/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/CommentGeneratorPlugin/Tools.cs -------------------------------------------------------------------------------- /CommentGeneratorPlugin/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/CommentGeneratorPlugin/main.cs -------------------------------------------------------------------------------- /CommentGeneratorPluginTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CommentGeneratorPluginTests/ToolsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/CommentGeneratorPluginTests/ToolsTests.cs -------------------------------------------------------------------------------- /CommentGeneratorPluginTests/XmlWritingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/CommentGeneratorPluginTests/XmlWritingTests.cs -------------------------------------------------------------------------------- /CommentViewerCommon/BrowserLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/CommentViewerCommon/BrowserLoader.cs -------------------------------------------------------------------------------- /CommentViewerCommon/CommentViewerCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/CommentViewerCommon/CommentViewerCommon.csproj -------------------------------------------------------------------------------- /CommentViewerCommon/IBrowserLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/CommentViewerCommon/IBrowserLoader.cs -------------------------------------------------------------------------------- /CommentViewerCommon/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Common/AutoUpdate/DownloadPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/AutoUpdate/DownloadPage.xaml -------------------------------------------------------------------------------- /Common/AutoUpdate/DownloadPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/AutoUpdate/DownloadPage.xaml.cs -------------------------------------------------------------------------------- /Common/AutoUpdate/LatestVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/AutoUpdate/LatestVersionInfo.cs -------------------------------------------------------------------------------- /Common/AutoUpdate/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/AutoUpdate/Message.cs -------------------------------------------------------------------------------- /Common/AutoUpdate/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/AutoUpdate/Tools.cs -------------------------------------------------------------------------------- /Common/AutoUpdate/UpdateExistsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/AutoUpdate/UpdateExistsPage.xaml -------------------------------------------------------------------------------- /Common/AutoUpdate/UpdateExistsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/AutoUpdate/UpdateExistsPage.xaml.cs -------------------------------------------------------------------------------- /Common/AutoUpdate/UpdateNotExistsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/AutoUpdate/UpdateNotExistsPage.xaml -------------------------------------------------------------------------------- /Common/AutoUpdate/UpdateNotExistsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/AutoUpdate/UpdateNotExistsPage.xaml.cs -------------------------------------------------------------------------------- /Common/AutoUpdate/UpdateView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/AutoUpdate/UpdateView.xaml -------------------------------------------------------------------------------- /Common/AutoUpdate/UpdateView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/AutoUpdate/UpdateView.xaml.cs -------------------------------------------------------------------------------- /Common/BindableTextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/BindableTextBlock.cs -------------------------------------------------------------------------------- /Common/BrowserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/BrowserViewModel.cs -------------------------------------------------------------------------------- /Common/ColorPicker.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/ColorPicker.xaml -------------------------------------------------------------------------------- /Common/ColorPicker.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/ColorPicker.xaml.cs -------------------------------------------------------------------------------- /Common/CommentViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/CommentViewModelBase.cs -------------------------------------------------------------------------------- /Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/Common.csproj -------------------------------------------------------------------------------- /Common/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/Converter.cs -------------------------------------------------------------------------------- /Common/DynamicOptionsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/DynamicOptionsBase.cs -------------------------------------------------------------------------------- /Common/EmptyBrowserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/EmptyBrowserProfile.cs -------------------------------------------------------------------------------- /Common/FontSelectorView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/FontSelectorView.xaml -------------------------------------------------------------------------------- /Common/FontSelectorView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/FontSelectorView.xaml.cs -------------------------------------------------------------------------------- /Common/FontSelectorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/FontSelectorViewModel.cs -------------------------------------------------------------------------------- /Common/IOTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/IOTest.cs -------------------------------------------------------------------------------- /Common/IWebsocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/IWebsocket.cs -------------------------------------------------------------------------------- /Common/InfoCommentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/InfoCommentViewModel.cs -------------------------------------------------------------------------------- /Common/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/Logger.cs -------------------------------------------------------------------------------- /Common/LoggerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/LoggerTest.cs -------------------------------------------------------------------------------- /Common/MessageEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/MessageEmpty.cs -------------------------------------------------------------------------------- /Common/MessageImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/MessageImage.cs -------------------------------------------------------------------------------- /Common/MessageSvgData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/MessageSvgData.cs -------------------------------------------------------------------------------- /Common/MessageSvgImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/MessageSvgImage.cs -------------------------------------------------------------------------------- /Common/MessageText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/MessageText.cs -------------------------------------------------------------------------------- /Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("CommonTests")] 4 | -------------------------------------------------------------------------------- /Common/SQLiteUserStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/SQLiteUserStore.cs -------------------------------------------------------------------------------- /Common/UnixTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/UnixTimeConverter.cs -------------------------------------------------------------------------------- /Common/UserStoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/UserStoreTest.cs -------------------------------------------------------------------------------- /Common/UserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/UserTest.cs -------------------------------------------------------------------------------- /Common/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/Utils.cs -------------------------------------------------------------------------------- /Common/ValueConverterGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/ValueConverterGroup.cs -------------------------------------------------------------------------------- /Common/Websocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/Websocket.cs -------------------------------------------------------------------------------- /Common/Wpf/NumericUpDown.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/Wpf/NumericUpDown.xaml -------------------------------------------------------------------------------- /Common/Wpf/NumericUpDown.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/Wpf/NumericUpDown.xaml.cs -------------------------------------------------------------------------------- /Common/Wpf/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Common/Wpf/Tools.cs -------------------------------------------------------------------------------- /CommonTests/CommonTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/CommonTests/CommonTests.csproj -------------------------------------------------------------------------------- /CommonTests/DynamicOptionsBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/CommonTests/DynamicOptionsBaseTests.cs -------------------------------------------------------------------------------- /CommonTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CommonTests/SQLiteUserStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/CommonTests/SQLiteUserStoreTests.cs -------------------------------------------------------------------------------- /IPlugin/IConnectionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/IPlugin/IConnectionStatus.cs -------------------------------------------------------------------------------- /IPlugin/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/IPlugin/IPlugin.cs -------------------------------------------------------------------------------- /IPlugin/Plugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/IPlugin/Plugin.csproj -------------------------------------------------------------------------------- /IPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ISitePlugin/CommentViewModelBase.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ISitePlugin/ICommentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/ICommentProvider.cs -------------------------------------------------------------------------------- /ISitePlugin/ICommentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/ICommentViewModel.cs -------------------------------------------------------------------------------- /ISitePlugin/ICurrentUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/ICurrentUserInfo.cs -------------------------------------------------------------------------------- /ISitePlugin/IIo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/IIo.cs -------------------------------------------------------------------------------- /ISitePlugin/IMessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/IMessageContext.cs -------------------------------------------------------------------------------- /ISitePlugin/IMessageMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/IMessageMetadata.cs -------------------------------------------------------------------------------- /ISitePlugin/IMessageMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/IMessageMethods.cs -------------------------------------------------------------------------------- /ISitePlugin/IMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/IMetadata.cs -------------------------------------------------------------------------------- /ISitePlugin/IOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/IOptions.cs -------------------------------------------------------------------------------- /ISitePlugin/IOptionsTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/IOptionsTabPage.cs -------------------------------------------------------------------------------- /ISitePlugin/ISiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/ISiteContext.cs -------------------------------------------------------------------------------- /ISitePlugin/ISiteMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/ISiteMessage.cs -------------------------------------------------------------------------------- /ISitePlugin/IUserStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/IUserStore.cs -------------------------------------------------------------------------------- /ISitePlugin/IValueChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/IValueChanged.cs -------------------------------------------------------------------------------- /ISitePlugin/MessageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/MessageBase.cs -------------------------------------------------------------------------------- /ISitePlugin/MessagePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/MessagePart.cs -------------------------------------------------------------------------------- /ISitePlugin/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/MessageType.cs -------------------------------------------------------------------------------- /ISitePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ISitePlugin/SitePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/SitePlugin.csproj -------------------------------------------------------------------------------- /ISitePlugin/SiteType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/SiteType.cs -------------------------------------------------------------------------------- /ISitePlugin/ValueChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ISitePlugin/ValueChangedEventArgs.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LICENSE -------------------------------------------------------------------------------- /LineLiveIF/LineLiveIF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveIF/LineLiveIF.csproj -------------------------------------------------------------------------------- /LineLiveIF/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveIF/Message.cs -------------------------------------------------------------------------------- /LineLiveIF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LineLiveSitePlugin/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Api.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/BlackListProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/BlackListProvider.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Class1.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/CommentPostPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/CommentPostPanel.xaml -------------------------------------------------------------------------------- /LineLiveSitePlugin/CommentPostPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/CommentPostPanel.xaml.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/CommentPostPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/CommentPostPanelViewModel.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/DynamicJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/DynamicJson.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Exceptions.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/IDataServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/IDataServer.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/ILineLiveSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/ILineLiveSiteOptions.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/ILiveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/ILiveInfo.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/IMessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/IMessageProvider.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/LineLiveCommentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/LineLiveCommentProvider.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/LineLiveCommentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/LineLiveCommentViewModel.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/LineLiveOptionsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/LineLiveOptionsPanel.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/LineLiveOptionsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/LineLiveOptionsPanel.xaml -------------------------------------------------------------------------------- /LineLiveSitePlugin/LineLiveOptionsTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/LineLiveOptionsTabPage.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/LineLiveServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/LineLiveServer.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/LineLiveSiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/LineLiveSiteContext.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/LineLiveSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/LineLiveSiteOptions.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/LineLiveSitePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/LineLiveSitePlugin.csproj -------------------------------------------------------------------------------- /LineLiveSitePlugin/LiveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/LiveInfo.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Low/Bulk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Low/Bulk.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Low/ChannelInfo/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Low/ChannelInfo/Class1.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Low/FollowStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Low/FollowStart.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Low/GiftMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Low/GiftMessage.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Low/LiveInfo/Class2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Low/LiveInfo/Class2.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Low/Love.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Low/Love.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Low/Loves.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Low/Loves.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Low/Message/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Low/Message/Class1.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Low/My.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Low/My.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Low/PromptlyStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Low/PromptlyStats.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Low/SystemMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Low/SystemMessage.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Message/LineLiveComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Message/LineLiveComment.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Message/LineLiveConnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Message/LineLiveConnected.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/MessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/MessageProvider.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Metadata.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/PromptyStatsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/PromptyStatsProvider.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/Tools.cs -------------------------------------------------------------------------------- /LineLiveSitePlugin/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePlugin/app.config -------------------------------------------------------------------------------- /LineLiveSitePluginTests/ApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePluginTests/ApiTests.cs -------------------------------------------------------------------------------- /LineLiveSitePluginTests/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePluginTests/Class1.cs -------------------------------------------------------------------------------- /LineLiveSitePluginTests/Class2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePluginTests/Class2.cs -------------------------------------------------------------------------------- /LineLiveSitePluginTests/Class3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePluginTests/Class3.cs -------------------------------------------------------------------------------- /LineLiveSitePluginTests/MessageMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePluginTests/MessageMetadataTests.cs -------------------------------------------------------------------------------- /LineLiveSitePluginTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LineLiveSitePluginTests/SampleData/LiveInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePluginTests/SampleData/LiveInfo.txt -------------------------------------------------------------------------------- /LineLiveSitePluginTests/SampleData/Loves.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePluginTests/SampleData/Loves.txt -------------------------------------------------------------------------------- /LineLiveSitePluginTests/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePluginTests/TestHelper.cs -------------------------------------------------------------------------------- /LineLiveSitePluginTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/LineLiveSitePluginTests/app.config -------------------------------------------------------------------------------- /Mildom/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Mildom/Class1.cs -------------------------------------------------------------------------------- /Mildom/Mildom.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Mildom/Mildom.csproj -------------------------------------------------------------------------------- /Mildom/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/Mildom/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MildomIF/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomIF/Class1.cs -------------------------------------------------------------------------------- /MildomIF/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomIF/Message.cs -------------------------------------------------------------------------------- /MildomIF/MildomIF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomIF/MildomIF.csproj -------------------------------------------------------------------------------- /MildomIF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MildomSitePlugin/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/Api.cs -------------------------------------------------------------------------------- /MildomSitePlugin/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/Class1.cs -------------------------------------------------------------------------------- /MildomSitePlugin/DummyImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/DummyImpl.cs -------------------------------------------------------------------------------- /MildomSitePlugin/DynamicJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/DynamicJson.cs -------------------------------------------------------------------------------- /MildomSitePlugin/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/Exceptions.cs -------------------------------------------------------------------------------- /MildomSitePlugin/IDataServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/IDataServer.cs -------------------------------------------------------------------------------- /MildomSitePlugin/ILiveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/ILiveInfo.cs -------------------------------------------------------------------------------- /MildomSitePlugin/IMessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/IMessageProvider.cs -------------------------------------------------------------------------------- /MildomSitePlugin/IMildomSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/IMildomSiteOptions.cs -------------------------------------------------------------------------------- /MildomSitePlugin/Low/UserInfo/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/Low/UserInfo/Class1.cs -------------------------------------------------------------------------------- /MildomSitePlugin/Low/emotions/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/Low/emotions/Class1.cs -------------------------------------------------------------------------------- /MildomSitePlugin/Low/gift_find/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/Low/gift_find/Class1.cs -------------------------------------------------------------------------------- /MildomSitePlugin/Message/MildomGift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/Message/MildomGift.cs -------------------------------------------------------------------------------- /MildomSitePlugin/Message/MirrativComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/Message/MirrativComment.cs -------------------------------------------------------------------------------- /MildomSitePlugin/Message/MirrativConnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/Message/MirrativConnected.cs -------------------------------------------------------------------------------- /MildomSitePlugin/Message/MirrativJoinRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/Message/MirrativJoinRoom.cs -------------------------------------------------------------------------------- /MildomSitePlugin/MessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/MessageProvider.cs -------------------------------------------------------------------------------- /MildomSitePlugin/MildomCommentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/MildomCommentProvider.cs -------------------------------------------------------------------------------- /MildomSitePlugin/MildomOptionsTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/MildomOptionsTabPage.cs -------------------------------------------------------------------------------- /MildomSitePlugin/MildomServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/MildomServer.cs -------------------------------------------------------------------------------- /MildomSitePlugin/MildomSiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/MildomSiteContext.cs -------------------------------------------------------------------------------- /MildomSitePlugin/MildomSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/MildomSiteOptions.cs -------------------------------------------------------------------------------- /MildomSitePlugin/MildomSiteOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/MildomSiteOptionsViewModel.cs -------------------------------------------------------------------------------- /MildomSitePlugin/MildomSitePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/MildomSitePlugin.csproj -------------------------------------------------------------------------------- /MildomSitePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("MildomSitePluginTests")] 4 | -------------------------------------------------------------------------------- /MildomSitePlugin/TabPagePanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/TabPagePanel.xaml -------------------------------------------------------------------------------- /MildomSitePlugin/TabPagePanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/TabPagePanel.xaml.cs -------------------------------------------------------------------------------- /MildomSitePlugin/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/Tools.cs -------------------------------------------------------------------------------- /MildomSitePlugin/WebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePlugin/WebSocket.cs -------------------------------------------------------------------------------- /MildomSitePluginTests/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePluginTests/Class1.cs -------------------------------------------------------------------------------- /MildomSitePluginTests/Class2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePluginTests/Class2.cs -------------------------------------------------------------------------------- /MildomSitePluginTests/Class3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePluginTests/Class3.cs -------------------------------------------------------------------------------- /MildomSitePluginTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MildomSitePluginTests/SampleData/gift_find.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePluginTests/SampleData/gift_find.txt -------------------------------------------------------------------------------- /MildomSitePluginTests/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MildomSitePluginTests/TestHelper.cs -------------------------------------------------------------------------------- /MirrativIF/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativIF/Message.cs -------------------------------------------------------------------------------- /MirrativIF/MirrativIF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativIF/MirrativIF.csproj -------------------------------------------------------------------------------- /MirrativIF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MirrativSitePlugin/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/Api.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/CurrentUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/CurrentUserInfo.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/DummyImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/DummyImpl.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/DynamicJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/DynamicJson.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/Exceptions.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/IDataServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/IDataServer.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/ILiveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/ILiveInfo.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/IMessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/IMessageProvider.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/IMirrativSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/IMirrativSiteOptions.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/LiveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/LiveInfo.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/Low/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/Low/Class1.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/Low/CurrentUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/Low/CurrentUser.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/Low/LiveComments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/Low/LiveComments.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/Low/LiveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/Low/LiveInfo.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/Message/MirrativComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/Message/MirrativComment.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/Message/MirrativConnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/Message/MirrativConnected.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/Message/MirrativItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/Message/MirrativItem.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/Message/MirrativJoinRoom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/Message/MirrativJoinRoom.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/MessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/MessageProvider.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/Metadata.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/MetadataProvider2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/MetadataProvider2.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/MirrativCommentProvider2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/MirrativCommentProvider2.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/MirrativCommentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/MirrativCommentViewModel.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/MirrativOptionsTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/MirrativOptionsTabPage.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/MirrativServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/MirrativServer.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/MirrativSiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/MirrativSiteContext.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/MirrativSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/MirrativSiteOptions.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/MirrativSitePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/MirrativSitePlugin.csproj -------------------------------------------------------------------------------- /MirrativSitePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/TabPagePanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/TabPagePanel.xaml -------------------------------------------------------------------------------- /MirrativSitePlugin/TabPagePanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/TabPagePanel.xaml.cs -------------------------------------------------------------------------------- /MirrativSitePlugin/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePlugin/Tools.cs -------------------------------------------------------------------------------- /MirrativSitePluginTests/ApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePluginTests/ApiTests.cs -------------------------------------------------------------------------------- /MirrativSitePluginTests/CommentProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePluginTests/CommentProviderTests.cs -------------------------------------------------------------------------------- /MirrativSitePluginTests/MessageMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePluginTests/MessageMetadataTests.cs -------------------------------------------------------------------------------- /MirrativSitePluginTests/ParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePluginTests/ParserTests.cs -------------------------------------------------------------------------------- /MirrativSitePluginTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MirrativSitePluginTests/SampleData/Class1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePluginTests/SampleData/Class1.txt -------------------------------------------------------------------------------- /MirrativSitePluginTests/SampleData/LiveInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePluginTests/SampleData/LiveInfo.txt -------------------------------------------------------------------------------- /MirrativSitePluginTests/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePluginTests/Tools.cs -------------------------------------------------------------------------------- /MirrativSitePluginTests/ToolsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MirrativSitePluginTests/ToolsTests.cs -------------------------------------------------------------------------------- /MixchIF/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchIF/Message.cs -------------------------------------------------------------------------------- /MixchIF/MixchIF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchIF/MixchIF.csproj -------------------------------------------------------------------------------- /MixchIF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MixchSitePlugin/API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/API.cs -------------------------------------------------------------------------------- /MixchSitePlugin/CommentPostPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/CommentPostPanel.xaml -------------------------------------------------------------------------------- /MixchSitePlugin/CommentPostPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/CommentPostPanel.xaml.cs -------------------------------------------------------------------------------- /MixchSitePlugin/CommentPostPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/CommentPostPanelViewModel.cs -------------------------------------------------------------------------------- /MixchSitePlugin/CommentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/CommentProvider.cs -------------------------------------------------------------------------------- /MixchSitePlugin/DataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/DataSource.cs -------------------------------------------------------------------------------- /MixchSitePlugin/DynamicJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/DynamicJson.cs -------------------------------------------------------------------------------- /MixchSitePlugin/IMixchWebsocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/IMixchWebsocket.cs -------------------------------------------------------------------------------- /MixchSitePlugin/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/Item.cs -------------------------------------------------------------------------------- /MixchSitePlugin/Message/MessageMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/Message/MessageMetadata.cs -------------------------------------------------------------------------------- /MixchSitePlugin/Message/MixchMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/Message/MixchMessage.cs -------------------------------------------------------------------------------- /MixchSitePlugin/Message/MixchMessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/Message/MixchMessageContext.cs -------------------------------------------------------------------------------- /MixchSitePlugin/Message/MixchMessageMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/Message/MixchMessageMethods.cs -------------------------------------------------------------------------------- /MixchSitePlugin/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/Metadata.cs -------------------------------------------------------------------------------- /MixchSitePlugin/MixchOptionsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/MixchOptionsPanel.xaml -------------------------------------------------------------------------------- /MixchSitePlugin/MixchOptionsPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/MixchOptionsPanel.xaml.cs -------------------------------------------------------------------------------- /MixchSitePlugin/MixchOptionsTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/MixchOptionsTabPage.cs -------------------------------------------------------------------------------- /MixchSitePlugin/MixchOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/MixchOptionsViewModel.cs -------------------------------------------------------------------------------- /MixchSitePlugin/MixchSiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/MixchSiteContext.cs -------------------------------------------------------------------------------- /MixchSitePlugin/MixchSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/MixchSiteOptions.cs -------------------------------------------------------------------------------- /MixchSitePlugin/MixchSitePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/MixchSitePlugin.csproj -------------------------------------------------------------------------------- /MixchSitePlugin/MixchWebsocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/MixchWebsocket.cs -------------------------------------------------------------------------------- /MixchSitePlugin/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/Packet.cs -------------------------------------------------------------------------------- /MixchSitePlugin/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/Tools.cs -------------------------------------------------------------------------------- /MixchSitePlugin/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/UserViewModel.cs -------------------------------------------------------------------------------- /MixchSitePlugin/Websocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/Websocket.cs -------------------------------------------------------------------------------- /MixchSitePlugin/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MixchSitePlugin/app.config -------------------------------------------------------------------------------- /MultiCommentViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer.sln -------------------------------------------------------------------------------- /MultiCommentViewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/App.config -------------------------------------------------------------------------------- /MultiCommentViewer/AppNoStartupUri.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/AppNoStartupUri.xaml -------------------------------------------------------------------------------- /MultiCommentViewer/AppNoStartupUri.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/AppNoStartupUri.xaml.cs -------------------------------------------------------------------------------- /MultiCommentViewer/ConnectionName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/ConnectionName.cs -------------------------------------------------------------------------------- /MultiCommentViewer/CustomChrome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/CustomChrome.cs -------------------------------------------------------------------------------- /MultiCommentViewer/Dictionary1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Dictionary1.xaml -------------------------------------------------------------------------------- /MultiCommentViewer/IOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/IOptions.cs -------------------------------------------------------------------------------- /MultiCommentViewer/IOptionsLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/IOptionsLoader.cs -------------------------------------------------------------------------------- /MultiCommentViewer/IPluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/IPluginManager.cs -------------------------------------------------------------------------------- /MultiCommentViewer/ISitePluginLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/ISitePluginLoader.cs -------------------------------------------------------------------------------- /MultiCommentViewer/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Messages.cs -------------------------------------------------------------------------------- /MultiCommentViewer/MultiCommentViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/MultiCommentViewer.csproj -------------------------------------------------------------------------------- /MultiCommentViewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Program.cs -------------------------------------------------------------------------------- /MultiCommentViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MultiCommentViewer/ReadMe.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MultiCommentViewer/Test/DynamicOptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Test/DynamicOptionsTest.cs -------------------------------------------------------------------------------- /MultiCommentViewer/Test/OptionsLoaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Test/OptionsLoaderTest.cs -------------------------------------------------------------------------------- /MultiCommentViewer/Test/SitePluginLoaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Test/SitePluginLoaderTest.cs -------------------------------------------------------------------------------- /MultiCommentViewer/TexTraTranslate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/TexTraTranslate.cs -------------------------------------------------------------------------------- /MultiCommentViewer/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Themes/Generic.xaml -------------------------------------------------------------------------------- /MultiCommentViewer/ViewModels/CommentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/ViewModels/CommentData.cs -------------------------------------------------------------------------------- /MultiCommentViewer/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /MultiCommentViewer/ViewModels/PluginHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/ViewModels/PluginHost.cs -------------------------------------------------------------------------------- /MultiCommentViewer/ViewModels/SiteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/ViewModels/SiteViewModel.cs -------------------------------------------------------------------------------- /MultiCommentViewer/ViewModels/UserStoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/ViewModels/UserStoreTest.cs -------------------------------------------------------------------------------- /MultiCommentViewer/ViewModels/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/ViewModels/UserViewModel.cs -------------------------------------------------------------------------------- /MultiCommentViewer/Views/CommentDataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Views/CommentDataGrid.xaml -------------------------------------------------------------------------------- /MultiCommentViewer/Views/MainOptionsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Views/MainOptionsPanel.xaml -------------------------------------------------------------------------------- /MultiCommentViewer/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Views/MainWindow.xaml -------------------------------------------------------------------------------- /MultiCommentViewer/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /MultiCommentViewer/Views/OptionsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Views/OptionsView.xaml -------------------------------------------------------------------------------- /MultiCommentViewer/Views/OptionsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Views/OptionsView.xaml.cs -------------------------------------------------------------------------------- /MultiCommentViewer/Views/UserListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Views/UserListView.xaml -------------------------------------------------------------------------------- /MultiCommentViewer/Views/UserListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Views/UserListView.xaml.cs -------------------------------------------------------------------------------- /MultiCommentViewer/Views/UserView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Views/UserView.xaml -------------------------------------------------------------------------------- /MultiCommentViewer/Views/UserView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/Views/UserView.xaml.cs -------------------------------------------------------------------------------- /MultiCommentViewer/mcv_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/mcv_icon.ico -------------------------------------------------------------------------------- /MultiCommentViewer/mcv_icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/mcv_icon2.ico -------------------------------------------------------------------------------- /MultiCommentViewer/postBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/postBuild.ps1 -------------------------------------------------------------------------------- /MultiCommentViewer/updateFileList.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/updateFileList.ps1 -------------------------------------------------------------------------------- /MultiCommentViewer/zipping.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/MultiCommentViewer/zipping.ps1 -------------------------------------------------------------------------------- /MultiCommentViewerTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NicoLiveIF/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoLiveIF/Message.cs -------------------------------------------------------------------------------- /NicoLiveIF/NicoLiveIF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoLiveIF/NicoLiveIF.csproj -------------------------------------------------------------------------------- /NicoLiveIF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NicoSitePlugin2/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Api.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Chat/ChatGuestOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Chat/ChatGuestOptions.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Chat/ChatLoggedInOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Chat/ChatLoggedInOptions.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Chat/ChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Chat/ChatMessage.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Chat/ChatParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Chat/ChatParser.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Chat/ChatProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Chat/ChatProvider.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Chat/IChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Chat/IChatMessage.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Chat/IChatOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Chat/IChatOptions.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Chat/Ping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Chat/Ping.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Chat/Thread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Chat/Thread.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Chat/UnknownMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Chat/UnknownMessage.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/CommentPostPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/CommentPostPanel.xaml -------------------------------------------------------------------------------- /NicoSitePlugin2/CommentPostPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/CommentPostPanel.xaml.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/CommentPostPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/CommentPostPanelViewModel.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/DataProps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/DataProps.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/DataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/DataSource.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/IDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/IDataSource.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/IInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/IInput.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/INicoCommentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/INicoCommentProvider.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/INicoSiteOptions.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NicoSitePlugin2/Low/CommunityLives.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NicoSitePlugin2/Low/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Low/UserInfo.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Message/NicoAd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Message/NicoAd.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Message/NicoComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Message/NicoComment.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Message/NicoConnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Message/NicoConnected.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Message/NicoDisconnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Message/NicoDisconnected.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Message/NicoInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Message/NicoInfo.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Message/NicoKickCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Message/NicoKickCommand.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Message/NicoMessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Message/NicoMessageContext.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Message/NicoMessageMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Message/NicoMessageMetadata.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Message/NicoMessageMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Message/NicoMessageMethods.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Metadata.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Metadata/Disconnect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Metadata/Disconnect.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Metadata/IMetaMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Metadata/IMetaMessage.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Metadata/IgnoredMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Metadata/IgnoredMessage.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Metadata/MetaParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Metadata/MetaParser.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Metadata/MetaProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Metadata/MetaProvider.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Metadata/Ping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Metadata/Ping.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Metadata/Pong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Metadata/Pong.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Metadata/PostComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Metadata/PostComment.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Metadata/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Metadata/Room.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Metadata/Seat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Metadata/Seat.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Metadata/ServerTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Metadata/ServerTime.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Metadata/Statistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Metadata/Statistics.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Metadata/UnknownMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Metadata/UnknownMessage.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/MyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/MyInfo.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/NicoOptionsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/NicoOptionsPanel.xaml -------------------------------------------------------------------------------- /NicoSitePlugin2/NicoOptionsPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/NicoOptionsPanel.xaml.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/NicoOptionsTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/NicoOptionsTabPage.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/NicoSiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/NicoSiteContext.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/NicoSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/NicoSiteOptions.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/NicoSiteOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/NicoSiteOptionsViewModel.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/NicoSitePlugin2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/NicoSitePlugin2.csproj -------------------------------------------------------------------------------- /NicoSitePlugin2/ParseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/ParseException.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NicoSitePlugin2/SpecChangedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/SpecChangedException.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/TestCommentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/TestCommentProvider.cs -------------------------------------------------------------------------------- /NicoSitePlugin2/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/NicoSitePlugin2/Tools.cs -------------------------------------------------------------------------------- /OpenrecIF/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecIF/Message.cs -------------------------------------------------------------------------------- /OpenrecIF/OpenrecIF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecIF/OpenrecIF.csproj -------------------------------------------------------------------------------- /OpenrecIF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenrecSitePlugin/API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/API.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/BlackListProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/BlackListProvider.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/CommentPostPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/CommentPostPanel.xaml -------------------------------------------------------------------------------- /OpenrecSitePlugin/CommentPostPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/CommentPostPanel.xaml.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/CommentPostPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/CommentPostPanelViewModel.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/CommentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/CommentProvider.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Context.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/DataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/DataSource.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/DynamicJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/DynamicJson.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Exceptions.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/IBlackListProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/IBlackListProvider.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/IOpenrecCommentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/IOpenrecCommentData.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/IOpenrecWebsocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/IOpenrecWebsocket.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/Low/BlackList/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Low/BlackList/Class1.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/Low/Chats/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Low/Chats/Class1.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/Low/External/Movies/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Low/External/Movies/Class1.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/Low/LivePage/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Low/LivePage/Class1.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/Low/Movies/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Low/Movies/Class1.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/Message/MessageMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Message/MessageMetadata.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/Message/OpenrecComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Message/OpenrecComment.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/Message/OpenrecConnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Message/OpenrecConnected.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Metadata.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/MovieInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/MovieInfo.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/OpenrecCommentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/OpenrecCommentData.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/OpenrecCommentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/OpenrecCommentViewModel.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/OpenrecOptionsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/OpenrecOptionsPanel.xaml -------------------------------------------------------------------------------- /OpenrecSitePlugin/OpenrecOptionsPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/OpenrecOptionsPanel.xaml.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/OpenrecOptionsTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/OpenrecOptionsTabPage.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/OpenrecOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/OpenrecOptionsViewModel.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/OpenrecSiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/OpenrecSiteContext.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/OpenrecSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/OpenrecSiteOptions.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/OpenrecSitePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/OpenrecSitePlugin.csproj -------------------------------------------------------------------------------- /OpenrecSitePlugin/OpenrecWebsocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/OpenrecWebsocket.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/Packet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Packet.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Properties/Resources.resx -------------------------------------------------------------------------------- /OpenrecSitePlugin/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Tools.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/UserViewModel.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/Websocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/Websocket.cs -------------------------------------------------------------------------------- /OpenrecSitePlugin/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/app.config -------------------------------------------------------------------------------- /OpenrecSitePlugin/sprite_premium_landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/sprite_premium_landing.png -------------------------------------------------------------------------------- /OpenrecSitePlugin/sprite_v4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/sprite_v4.png -------------------------------------------------------------------------------- /OpenrecSitePlugin/sprite_v5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/sprite_v5.png -------------------------------------------------------------------------------- /OpenrecSitePlugin/sprite_v6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/sprite_v6.png -------------------------------------------------------------------------------- /OpenrecSitePlugin/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePlugin/sprites.png -------------------------------------------------------------------------------- /OpenrecSitePluginTests/APITests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePluginTests/APITests.cs -------------------------------------------------------------------------------- /OpenrecSitePluginTests/CommentProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePluginTests/CommentProviderTests.cs -------------------------------------------------------------------------------- /OpenrecSitePluginTests/CommentViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePluginTests/CommentViewModelTests.cs -------------------------------------------------------------------------------- /OpenrecSitePluginTests/MessageMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePluginTests/MessageMetadataTests.cs -------------------------------------------------------------------------------- /OpenrecSitePluginTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenrecSitePluginTests/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePluginTests/Tools.cs -------------------------------------------------------------------------------- /OpenrecSitePluginTests/ToolsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/OpenrecSitePluginTests/ToolsTests.cs -------------------------------------------------------------------------------- /PeriscopeIF/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeIF/Message.cs -------------------------------------------------------------------------------- /PeriscopeIF/PeriscopeIF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeIF/PeriscopeIF.csproj -------------------------------------------------------------------------------- /PeriscopeIF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Api.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/CommentPostPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/CommentPostPanel.xaml -------------------------------------------------------------------------------- /PeriscopeSitePlugin/CommentPostPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/CommentPostPanel.xaml.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/CurrentUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/CurrentUserInfo.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/DynamicJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/DynamicJson.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Exceptions.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/IDataServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/IDataServer.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/IInternalMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/IInternalMessage.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/ILiveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/ILiveInfo.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/IMessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/IMessageProvider.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/IPeriscopeSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/IPeriscopeSiteOptions.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/IWebsocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/IWebsocket.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/IWebsocketMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/IWebsocketMessage.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/InternalMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/InternalMessageType.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Kind1Type1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Kind1Type1.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Kind1Type2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Kind1Type2.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Kind2Kind1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Kind2Kind1.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Kind2Kind2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Kind2Kind2.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/LiveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/LiveInfo.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Low/AccessVideo/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Low/AccessVideo/Class1.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Low/Broadcast/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Low/Broadcast/Class1.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Low/kind1type1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Low/kind1type1/Class1.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Low/kind1type2/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Low/kind1type2/Class1.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Low/kind2kind1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Low/kind2kind1/Class1.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Low/kind2kind2/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Low/kind2kind2/Class1.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Low/kind2kind4/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Low/kind2kind4/Class1.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Message/MessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Message/MessageContext.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Message/MessageMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Message/MessageMetadata.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Message/MessageMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Message/MessageMethods.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Message/PeriscopeComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Message/PeriscopeComment.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Message/PeriscopeJoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Message/PeriscopeJoin.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Message/PeriscopeLeave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Message/PeriscopeLeave.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/MessageParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/MessageParser.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/PeriscopeOptionsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/PeriscopeOptionsPanel.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/PeriscopeOptionsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/PeriscopeOptionsPanel.xaml -------------------------------------------------------------------------------- /PeriscopeSitePlugin/PeriscopeOptionsTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/PeriscopeOptionsTabPage.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/PeriscopeServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/PeriscopeServer.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/PeriscopeSiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/PeriscopeSiteContext.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/PeriscopeSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/PeriscopeSiteOptions.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/PeriscopeSitePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/PeriscopeSitePlugin.csproj -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("PeriscopeSitePluginTests")] 4 | -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Tools.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/Websocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/Websocket.cs -------------------------------------------------------------------------------- /PeriscopeSitePlugin/WebsocketMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePlugin/WebsocketMessage.cs -------------------------------------------------------------------------------- /PeriscopeSitePluginTests/ApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePluginTests/ApiTests.cs -------------------------------------------------------------------------------- /PeriscopeSitePluginTests/MessageParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePluginTests/MessageParserTests.cs -------------------------------------------------------------------------------- /PeriscopeSitePluginTests/MessageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePluginTests/MessageTests.cs -------------------------------------------------------------------------------- /PeriscopeSitePluginTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PeriscopeSitePluginTests/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePluginTests/TestHelper.cs -------------------------------------------------------------------------------- /PeriscopeSitePluginTests/ToolsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PeriscopeSitePluginTests/ToolsTests.cs -------------------------------------------------------------------------------- /PluginCommon/PluginCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PluginCommon/PluginCommon.csproj -------------------------------------------------------------------------------- /PluginCommon/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PluginCommon/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PluginCommon/Tools.cs -------------------------------------------------------------------------------- /PluginCommonTests/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PluginCommonTests/Class1.cs -------------------------------------------------------------------------------- /PluginCommonTests/PluginCommonTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/PluginCommonTests/PluginCommonTests.csproj -------------------------------------------------------------------------------- /PluginCommonTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/README.md -------------------------------------------------------------------------------- /ShowRoomIF/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomIF/Class1.cs -------------------------------------------------------------------------------- /ShowRoomIF/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomIF/Message.cs -------------------------------------------------------------------------------- /ShowRoomIF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShowRoomIF/ShowRoomIF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomIF/ShowRoomIF.csproj -------------------------------------------------------------------------------- /ShowRoomSitePlugin/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/Api.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/CommentPostPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/CommentPostPanel.xaml -------------------------------------------------------------------------------- /ShowRoomSitePlugin/CommentPostPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/CommentPostPanel.xaml.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/CommentPostPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/CommentPostPanelViewModel.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/DynamicJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/DynamicJson.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/Exceptions.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/IDataServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/IDataServer.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/IInternalMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/IInternalMessage.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/IMessageProvider1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/IMessageProvider1.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/IShowRoomSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/IShowRoomSiteOptions.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/IWebsocketMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/IWebsocketMessage.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/InternalMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/InternalMessageType.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/Low/LiveInfo/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/Low/LiveInfo/Class1.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/Message/MessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/Message/MessageContext.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/Message/MessageMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/Message/MessageMetadata.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/Message/MessageMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/Message/MessageMethods.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/Message/ShowRoomComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/Message/ShowRoomComment.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/Message/ShowRoomConnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/Message/ShowRoomConnected.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/MessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/MessageProvider.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/Metadata.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("ShowRoomSitePluginTests")] -------------------------------------------------------------------------------- /ShowRoomSitePlugin/ShowRoomCommentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/ShowRoomCommentProvider.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/ShowRoomOptionsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/ShowRoomOptionsPanel.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/ShowRoomOptionsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/ShowRoomOptionsPanel.xaml -------------------------------------------------------------------------------- /ShowRoomSitePlugin/ShowRoomOptionsTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/ShowRoomOptionsTabPage.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/ShowRoomServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/ShowRoomServer.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/ShowRoomSiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/ShowRoomSiteContext.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/ShowRoomSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/ShowRoomSiteOptions.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/ShowRoomSitePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/ShowRoomSitePlugin.csproj -------------------------------------------------------------------------------- /ShowRoomSitePlugin/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/Tools.cs -------------------------------------------------------------------------------- /ShowRoomSitePlugin/Websocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePlugin/Websocket.cs -------------------------------------------------------------------------------- /ShowRoomSitePluginTests/ApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePluginTests/ApiTests.cs -------------------------------------------------------------------------------- /ShowRoomSitePluginTests/MessageParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/ShowRoomSitePluginTests/MessageParserTests.cs -------------------------------------------------------------------------------- /ShowRoomSitePluginTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SitePluginCommon/ActiveCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommon/ActiveCounter.cs -------------------------------------------------------------------------------- /SitePluginCommon/AutoReconnection/IDummy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommon/AutoReconnection/IDummy.cs -------------------------------------------------------------------------------- /SitePluginCommon/AutoReconnection/IProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommon/AutoReconnection/IProvider.cs -------------------------------------------------------------------------------- /SitePluginCommon/AutoReconnector/IConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommon/AutoReconnector/IConnector.cs -------------------------------------------------------------------------------- /SitePluginCommon/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommon/Class1.cs -------------------------------------------------------------------------------- /SitePluginCommon/CommentProviderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommon/CommentProviderBase.cs -------------------------------------------------------------------------------- /SitePluginCommon/FirstCommentDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommon/FirstCommentDetector.cs -------------------------------------------------------------------------------- /SitePluginCommon/IActiveCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommon/IActiveCounter.cs -------------------------------------------------------------------------------- /SitePluginCommon/InfoMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommon/InfoMessage.cs -------------------------------------------------------------------------------- /SitePluginCommon/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommon/Metadata.cs -------------------------------------------------------------------------------- /SitePluginCommon/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SitePluginCommon/ServerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommon/ServerBase.cs -------------------------------------------------------------------------------- /SitePluginCommon/SiteContextBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommon/SiteContextBase.cs -------------------------------------------------------------------------------- /SitePluginCommon/SitePluginCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommon/SitePluginCommon.csproj -------------------------------------------------------------------------------- /SitePluginCommon/UserStoreManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommon/UserStoreManager.cs -------------------------------------------------------------------------------- /SitePluginCommon/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommon/Utils.cs -------------------------------------------------------------------------------- /SitePluginCommonTests/AutoReconnectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommonTests/AutoReconnectionTests.cs -------------------------------------------------------------------------------- /SitePluginCommonTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SitePluginCommonTests/UtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginCommonTests/UtilsTests.cs -------------------------------------------------------------------------------- /SitePluginTests/MessageMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginTests/MessageMetadataTests.cs -------------------------------------------------------------------------------- /SitePluginTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SitePluginTests/SitePluginTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/SitePluginTests/SitePluginTests.csproj -------------------------------------------------------------------------------- /TestSiteIF/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TestSiteIF/Message.cs -------------------------------------------------------------------------------- /TestSiteIF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestSiteIF/TestSiteIF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TestSiteIF/TestSiteIF.csproj -------------------------------------------------------------------------------- /TestSitePlugin/CommentPostPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TestSitePlugin/CommentPostPanel.xaml -------------------------------------------------------------------------------- /TestSitePlugin/CommentPostPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TestSitePlugin/CommentPostPanel.xaml.cs -------------------------------------------------------------------------------- /TestSitePlugin/CommentPostPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TestSitePlugin/CommentPostPanelViewModel.cs -------------------------------------------------------------------------------- /TestSitePlugin/Message/MessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TestSitePlugin/Message/MessageContext.cs -------------------------------------------------------------------------------- /TestSitePlugin/Message/TestComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TestSitePlugin/Message/TestComment.cs -------------------------------------------------------------------------------- /TestSitePlugin/Message/TestMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TestSitePlugin/Message/TestMetadata.cs -------------------------------------------------------------------------------- /TestSitePlugin/Message/TestMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TestSitePlugin/Message/TestMethods.cs -------------------------------------------------------------------------------- /TestSitePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestSitePlugin/TestCommentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TestSitePlugin/TestCommentProvider.cs -------------------------------------------------------------------------------- /TestSitePlugin/TestSiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TestSitePlugin/TestSiteContext.cs -------------------------------------------------------------------------------- /TestSitePlugin/TestSitePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TestSitePlugin/TestSitePlugin.csproj -------------------------------------------------------------------------------- /TestSitePlugin/TestUserStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TestSitePlugin/TestUserStore.cs -------------------------------------------------------------------------------- /TwicasIF/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasIF/Message.cs -------------------------------------------------------------------------------- /TwicasIF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TwicasIF/TwicasIF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasIF/TwicasIF.csproj -------------------------------------------------------------------------------- /TwicasSitePlugin/API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/API.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/CommentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/CommentData.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/CommentPostPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/CommentPostPanel.xaml -------------------------------------------------------------------------------- /TwicasSitePlugin/CommentPostPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/CommentPostPanel.xaml.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/CommentPostPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/CommentPostPanelViewModel.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/CurrentUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/CurrentUserInfo.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/DynamicJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/DynamicJson.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/Exceptions.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/ICommentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/ICommentData.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/IDataServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/IDataServer.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/Low/Comment/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/Low/Comment/Class1.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/Low/ListAll/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/Low/ListAll/Class1.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/Low/ResponseToPost/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/Low/ResponseToPost/Class1.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/LowObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/LowObjects.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/Message/ItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/Message/ItemType.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/Message/MessageMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/Message/MessageMetadata.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/Message/TwicasComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/Message/TwicasComment.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/Message/TwicasConnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/Message/TwicasConnected.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/Message/TwicasDisconnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/Message/TwicasDisconnected.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/Message/TwicasItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/Message/TwicasItem.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/Message/TwicasKiitos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/Message/TwicasKiitos.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/Metadata.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/MetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/MetadataProvider.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/StreamChecker2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/StreamChecker2.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/Tools.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/TwicasAutoReconnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/TwicasAutoReconnector.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/TwicasCommentProvider2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/TwicasCommentProvider2.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/TwicasCommentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/TwicasCommentViewModel.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/TwicasOptionsPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/TwicasOptionsPanel.xaml -------------------------------------------------------------------------------- /TwicasSitePlugin/TwicasOptionsPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/TwicasOptionsPanel.xaml.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/TwicasServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/TwicasServer.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/TwicasSiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/TwicasSiteContext.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/TwicasSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/TwicasSiteOptions.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/TwicasSiteOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/TwicasSiteOptionsViewModel.cs -------------------------------------------------------------------------------- /TwicasSitePlugin/TwicasSitePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/TwicasSitePlugin.csproj -------------------------------------------------------------------------------- /TwicasSitePlugin/WebsocketMessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePlugin/WebsocketMessageProvider.cs -------------------------------------------------------------------------------- /TwicasSitePluginTests/ApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePluginTests/ApiTests.cs -------------------------------------------------------------------------------- /TwicasSitePluginTests/InternalItemTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePluginTests/InternalItemTest.cs -------------------------------------------------------------------------------- /TwicasSitePluginTests/MessageMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePluginTests/MessageMetadataTests.cs -------------------------------------------------------------------------------- /TwicasSitePluginTests/MessageParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePluginTests/MessageParserTests.cs -------------------------------------------------------------------------------- /TwicasSitePluginTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TwicasSitePluginTests/SampleData/ListAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePluginTests/SampleData/ListAll.txt -------------------------------------------------------------------------------- /TwicasSitePluginTests/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePluginTests/TestHelper.cs -------------------------------------------------------------------------------- /TwicasSitePluginTests/ToolsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwicasSitePluginTests/ToolsTests.cs -------------------------------------------------------------------------------- /TwitchIF/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchIF/Message.cs -------------------------------------------------------------------------------- /TwitchIF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TwitchIF/TwitchIF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchIF/TwitchIF.csproj -------------------------------------------------------------------------------- /TwitchSitePlugin/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/Command.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/CommentPostPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/CommentPostPanel.xaml -------------------------------------------------------------------------------- /TwitchSitePlugin/CommentPostPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/CommentPostPanel.xaml.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/CommentPostPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/CommentPostPanelViewModel.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/CommentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/CommentProvider.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/ICommentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/ICommentData.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/IMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/IMetadataProvider.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/ITwitchSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/ITwitchSiteOptions.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/IWebSocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/IWebSocket.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/Low/ChannelProduct/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/Low/ChannelProduct/Class1.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/Low/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/Low/Class1.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/Me.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/Me.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/Message/MessageMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/Message/MessageMetadata.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/Message/TwitchComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/Message/TwitchComment.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/Message/TwitchConnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/Message/TwitchConnected.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/Message/TwitchDisconnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/Message/TwitchDisconnected.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/Message/TwitchNotice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/Message/TwitchNotice.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/MessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/MessageProvider.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/MetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/MetadataProvider.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/TabPagePanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/TabPagePanel.xaml -------------------------------------------------------------------------------- /TwitchSitePlugin/TabPagePanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/TabPagePanel.xaml.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/Tools.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/TwitchCommentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/TwitchCommentViewModel.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/TwitchOptionsTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/TwitchOptionsTabPage.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/TwitchSiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/TwitchSiteContext.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/TwitchSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/TwitchSiteOptions.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/TwitchSiteOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/TwitchSiteOptionsViewModel.cs -------------------------------------------------------------------------------- /TwitchSitePlugin/TwitchSitePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/TwitchSitePlugin.csproj -------------------------------------------------------------------------------- /TwitchSitePlugin/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePlugin/app.config -------------------------------------------------------------------------------- /TwitchSitePluginTests/ApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePluginTests/ApiTests.cs -------------------------------------------------------------------------------- /TwitchSitePluginTests/CommandParseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePluginTests/CommandParseTests.cs -------------------------------------------------------------------------------- /TwitchSitePluginTests/CommentViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePluginTests/CommentViewModelTests.cs -------------------------------------------------------------------------------- /TwitchSitePluginTests/MessageMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePluginTests/MessageMetadataTests.cs -------------------------------------------------------------------------------- /TwitchSitePluginTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TwitchSitePluginTests/SampleData/Streams.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePluginTests/SampleData/Streams.txt -------------------------------------------------------------------------------- /TwitchSitePluginTests/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePluginTests/TestHelper.cs -------------------------------------------------------------------------------- /TwitchSitePluginTests/ToolsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePluginTests/ToolsTests.cs -------------------------------------------------------------------------------- /TwitchSitePluginTests/TwitchSiteContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePluginTests/TwitchSiteContextTests.cs -------------------------------------------------------------------------------- /TwitchSitePluginTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/TwitchSitePluginTests/app.config -------------------------------------------------------------------------------- /WhowatchIF/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchIF/Message.cs -------------------------------------------------------------------------------- /WhowatchIF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WhowatchIF/WhowatchIF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchIF/WhowatchIF.csproj -------------------------------------------------------------------------------- /WhowatchSitePlugin/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/Api.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/Class1.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/CommentPostPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/CommentPostPanel.xaml -------------------------------------------------------------------------------- /WhowatchSitePlugin/CommentPostPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/CommentPostPanel.xaml.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/CommentPostPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/CommentPostPanelViewModel.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/CurrentUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/CurrentUserInfo.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/DataServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/DataServer.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/DynamicJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/DynamicJson.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/Exceptions.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/IDataServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/IDataServer.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/IMe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/IMe.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/IWebsocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/IWebsocket.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/IWhowatchSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/IWhowatchSiteOptions.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/InternalCommentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/InternalCommentProvider.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/InvalidInputException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/InvalidInputException.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/Low/LiveData/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/Low/LiveData/Class1.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/Low/Me/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/Low/Me/Class1.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/Low/PlayItems/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/Low/PlayItems/Class1.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/Low/Profile/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/Low/Profile/Profile.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/Message/WhowatchComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/Message/WhowatchComment.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/Message/WhowatchConnected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/Message/WhowatchConnected.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/Message/WhowatchItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/Message/WhowatchItem.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/Message/WhowatchNgComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/Message/WhowatchNgComment.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/MessageParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/MessageParser.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/MessageParsing/Shout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/MessageParsing/Shout.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/Metadata.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/MetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/MetadataProvider.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/PlayItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/PlayItem.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/TabPagePanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/TabPagePanel.xaml -------------------------------------------------------------------------------- /WhowatchSitePlugin/TabPagePanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/TabPagePanel.xaml.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/Tools.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/Websocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/Websocket.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/WhowatchCommentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/WhowatchCommentProvider.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/WhowatchCommentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/WhowatchCommentViewModel.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/WhowatchOptionsTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/WhowatchOptionsTabPage.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/WhowatchSiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/WhowatchSiteContext.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/WhowatchSiteOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/WhowatchSiteOptions.cs -------------------------------------------------------------------------------- /WhowatchSitePlugin/WhowatchSitePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePlugin/WhowatchSitePlugin.csproj -------------------------------------------------------------------------------- /WhowatchSitePluginTests/ApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePluginTests/ApiTests.cs -------------------------------------------------------------------------------- /WhowatchSitePluginTests/MessageMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePluginTests/MessageMetadataTests.cs -------------------------------------------------------------------------------- /WhowatchSitePluginTests/MessageParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePluginTests/MessageParserTests.cs -------------------------------------------------------------------------------- /WhowatchSitePluginTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WhowatchSitePluginTests/SampleData/LiveData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePluginTests/SampleData/LiveData.txt -------------------------------------------------------------------------------- /WhowatchSitePluginTests/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePluginTests/Tools.cs -------------------------------------------------------------------------------- /WhowatchSitePluginTests/ToolsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/WhowatchSitePluginTests/ToolsTests.cs -------------------------------------------------------------------------------- /YouTubeLiveIF/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YouTubeLiveIF/Message.cs -------------------------------------------------------------------------------- /YouTubeLiveIF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /YouTubeLiveIF/YouTubeLiveIF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YouTubeLiveIF/YouTubeLiveIF.csproj -------------------------------------------------------------------------------- /YouTubeLiveSitePlugin/ChannelLiveFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YouTubeLiveSitePlugin/ChannelLiveFinder.cs -------------------------------------------------------------------------------- /YouTubeLiveSitePlugin/IYouTubeSiteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YouTubeLiveSitePlugin/IYouTubeSiteContext.cs -------------------------------------------------------------------------------- /YouTubeLiveSitePlugin/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YouTubeLiveSitePlugin/Message.cs -------------------------------------------------------------------------------- /YouTubeLiveSitePlugin/Next/InternalMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YouTubeLiveSitePlugin/Next/InternalMessage.cs -------------------------------------------------------------------------------- /YouTubeLiveSitePlugin/Next/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YouTubeLiveSitePlugin/Next/Tools.cs -------------------------------------------------------------------------------- /YouTubeLiveSitePlugin/Test2/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YouTubeLiveSitePlugin/Test2/Exceptions.cs -------------------------------------------------------------------------------- /YouTubeLiveSitePlugin/Test2/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YouTubeLiveSitePlugin/Test2/Metadata.cs -------------------------------------------------------------------------------- /YouTubeLiveSitePlugin/Test2/ReloadManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YouTubeLiveSitePlugin/Test2/ReloadManager.cs -------------------------------------------------------------------------------- /YouTubeLiveSitePlugin/Test2/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YouTubeLiveSitePlugin/Test2/Tools.cs -------------------------------------------------------------------------------- /YouTubeLiveSitePlugin/Test2/VidResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YouTubeLiveSitePlugin/Test2/VidResolver.cs -------------------------------------------------------------------------------- /YouTubeLiveSitePluginTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /YouTubeLiveSitePluginTests/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YouTubeLiveSitePluginTests/Tools.cs -------------------------------------------------------------------------------- /YouTubeLiveSitePluginTests/ToolsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YouTubeLiveSitePluginTests/ToolsTests.cs -------------------------------------------------------------------------------- /YoyakuPlugin/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YoyakuPlugin/Converter.cs -------------------------------------------------------------------------------- /YoyakuPlugin/IOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YoyakuPlugin/IOptions.cs -------------------------------------------------------------------------------- /YoyakuPlugin/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YoyakuPlugin/Model.cs -------------------------------------------------------------------------------- /YoyakuPlugin/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YoyakuPlugin/Options.cs -------------------------------------------------------------------------------- /YoyakuPlugin/PluginBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YoyakuPlugin/PluginBody.cs -------------------------------------------------------------------------------- /YoyakuPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YoyakuPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /YoyakuPlugin/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YoyakuPlugin/SettingsView.xaml -------------------------------------------------------------------------------- /YoyakuPlugin/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YoyakuPlugin/SettingsView.xaml.cs -------------------------------------------------------------------------------- /YoyakuPlugin/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YoyakuPlugin/SettingsViewModel.cs -------------------------------------------------------------------------------- /YoyakuPlugin/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YoyakuPlugin/User.cs -------------------------------------------------------------------------------- /YoyakuPlugin/YoyakuPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YoyakuPlugin/YoyakuPlugin.csproj -------------------------------------------------------------------------------- /YoyakuPluginTests/CommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YoyakuPluginTests/CommandTests.cs -------------------------------------------------------------------------------- /YoyakuPluginTests/ModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YoyakuPluginTests/ModelTests.cs -------------------------------------------------------------------------------- /YoyakuPluginTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /YoyakuPluginTests/SettingsViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YoyakuPluginTests/SettingsViewModelTests.cs -------------------------------------------------------------------------------- /YoyakuPluginTests/YoyakuPluginTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommentViewerCollection/MultiCommentViewer/HEAD/YoyakuPluginTests/YoyakuPluginTests.csproj --------------------------------------------------------------------------------