├── .gitignore ├── LICENSE ├── README.md ├── doc ├── Thumbs.db └── screenshot.png └── src ├── Couchcoding.Logbert.Gui ├── .editorconfig ├── Controls │ ├── ColorDropDown.cs │ ├── CustomToolStripSystemRenderer.cs │ ├── DataGridViewEx.cs │ ├── GroupBoxEx.cs │ ├── InfoPanel.cs │ ├── LinkLabelEx.cs │ ├── ListBoxEx.cs │ ├── ListViewEx.cs │ ├── MenuStripEx.cs │ ├── PictureBoxEx.cs │ ├── TableLayoutPanelEx.cs │ ├── TextBoxEx.cs │ ├── ToolStripEx.cs │ └── TreeViewEx.cs ├── Couchcoding.Logbert.Gui.csproj ├── Dialogs │ └── DialogForm.cs ├── Helper │ ├── DpiHelper.cs │ └── OSHelper.cs ├── Interop │ └── Win32.cs └── Properties │ └── AssemblyInfo.cs ├── Couchcoding.Logbert.Theme ├── .editorconfig ├── Couchcoding.Logbert.Theme.csproj ├── Helper │ └── GdiCache.cs ├── Interfaces │ └── IThemable.cs ├── Metrics │ ├── ThemeMetrics.cs │ ├── VisualStudioBlueMetrics.cs │ ├── VisualStudioDarkMetrics.cs │ └── VisualStudioLightMetrics.cs ├── Palettes │ ├── ThemeColorPalette.cs │ ├── VisualStudioBluePalette.cs │ ├── VisualStudioDarkPalette.cs │ └── VisualStudioLightPalette.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── VisualStudioBlueResource.Designer.cs │ ├── VisualStudioBlueResource.resx │ ├── VisualStudioDarkResource.Designer.cs │ ├── VisualStudioDarkResource.resx │ ├── VisualStudioLightResource.Designer.cs │ └── VisualStudioLightResource.resx ├── Resources │ ├── FrmBookmarksTbNext_Blue.png │ ├── FrmBookmarksTbNext_Dark.png │ ├── FrmBookmarksTbNext_Light.png │ ├── FrmBookmarksTbPrevious_Blue.png │ ├── FrmBookmarksTbPrevious_Dark.png │ ├── FrmBookmarksTbPrevious_Light.png │ ├── FrmBookmarksTbRemove_Blue.png │ ├── FrmBookmarksTbRemove_Dark.png │ ├── FrmBookmarksTbRemove_Light.png │ ├── FrmBookmarks_Blue.png │ ├── FrmBookmarks_Dark.png │ ├── FrmBookmarks_Light.png │ ├── FrmFilterTbAdd_Blue.png │ ├── FrmFilterTbAdd_Dark.png │ ├── FrmFilterTbAdd_Light.png │ ├── FrmFilterTbEdit_Blue.png │ ├── FrmFilterTbEdit_Dark.png │ ├── FrmFilterTbEdit_Light.png │ ├── FrmFilterTbRemove_Blue.png │ ├── FrmFilterTbRemove_Dark.png │ ├── FrmFilterTbRemove_Light.png │ ├── FrmLogBookmark_Blue.png │ ├── FrmLogBookmark_Dark.png │ ├── FrmLogBookmark_Light.png │ ├── FrmLogTreeNodeCollapsed_Blue.png │ ├── FrmLogTreeNodeCollapsed_Dark.png │ ├── FrmLogTreeNodeCollapsed_Light.png │ ├── FrmLogTreeNodeExpanded_Blue.png │ ├── FrmLogTreeNodeExpanded_Dark.png │ ├── FrmLogTreeNodeExpanded_Light.png │ ├── FrmMainTbAbout_Blue.png │ ├── FrmMainTbAbout_Dark.png │ ├── FrmMainTbAbout_Light.png │ ├── FrmMainTbBookmark_Blue.png │ ├── FrmMainTbBookmark_Dark.png │ ├── FrmMainTbBookmark_Light.png │ ├── FrmMainTbBottom_Blue.png │ ├── FrmMainTbBottom_Dark.png │ ├── FrmMainTbBottom_Light.png │ ├── FrmMainTbClear_Blue.png │ ├── FrmMainTbClear_Dark.png │ ├── FrmMainTbClear_Light.png │ ├── FrmMainTbCloseAll_Blue.png │ ├── FrmMainTbCloseAll_Dark.png │ ├── FrmMainTbCloseAll_Light.png │ ├── FrmMainTbDebug_Blue.png │ ├── FrmMainTbDebug_Dark.png │ ├── FrmMainTbDebug_Light.png │ ├── FrmMainTbDetails_Blue.png │ ├── FrmMainTbDetails_Dark.png │ ├── FrmMainTbDetails_Light.png │ ├── FrmMainTbError_Blue.png │ ├── FrmMainTbError_Dark.png │ ├── FrmMainTbError_Light.png │ ├── FrmMainTbFatal_Blue.png │ ├── FrmMainTbFatal_Dark.png │ ├── FrmMainTbFatal_Light.png │ ├── FrmMainTbFilter_Blue.png │ ├── FrmMainTbFilter_Dark.png │ ├── FrmMainTbFilter_Light.png │ ├── FrmMainTbInfo_Blue.png │ ├── FrmMainTbInfo_Dark.png │ ├── FrmMainTbInfo_Light.png │ ├── FrmMainTbLogtree_Blue.png │ ├── FrmMainTbLogtree_Dark.png │ ├── FrmMainTbLogtree_Light.png │ ├── FrmMainTbNew_Blue.png │ ├── FrmMainTbNew_Dark.png │ ├── FrmMainTbNew_Light.png │ ├── FrmMainTbOpen_Blue.png │ ├── FrmMainTbOpen_Dark.png │ ├── FrmMainTbOpen_Light.png │ ├── FrmMainTbRefresh_Blue.png │ ├── FrmMainTbRefresh_Dark.png │ ├── FrmMainTbRefresh_Light.png │ ├── FrmMainTbSave_Blue.png │ ├── FrmMainTbSave_Dark.png │ ├── FrmMainTbSave_Light.png │ ├── FrmMainTbSearch_Blue.png │ ├── FrmMainTbSearch_Dark.png │ ├── FrmMainTbSearch_Light.png │ ├── FrmMainTbSettings_Blue.png │ ├── FrmMainTbSettings_Dark.png │ ├── FrmMainTbSettings_Light.png │ ├── FrmMainTbStart_Blue.png │ ├── FrmMainTbStart_Dark.png │ ├── FrmMainTbStart_Light.png │ ├── FrmMainTbStatistic_Blue.png │ ├── FrmMainTbStatistic_Dark.png │ ├── FrmMainTbStatistic_Light.png │ ├── FrmMainTbSync_Blue.png │ ├── FrmMainTbSync_Dark.png │ ├── FrmMainTbSync_Light.png │ ├── FrmMainTbTimeshift_Blue.png │ ├── FrmMainTbTimeshift_Dark.png │ ├── FrmMainTbTimeshift_Light.png │ ├── FrmMainTbTop_Blue.png │ ├── FrmMainTbTop_Dark.png │ ├── FrmMainTbTop_Light.png │ ├── FrmMainTbTraceLog_Blue.png │ ├── FrmMainTbTraceLog_Dark.png │ ├── FrmMainTbTraceLog_Light.png │ ├── FrmMainTbTrace_Blue.png │ ├── FrmMainTbTrace_Dark.png │ ├── FrmMainTbTrace_Light.png │ ├── FrmMainTbWarn_Blue.png │ ├── FrmMainTbWarn_Dark.png │ ├── FrmMainTbWarn_Light.png │ ├── FrmMainTbZoomIn_Blue.png │ ├── FrmMainTbZoomIn_Dark.png │ ├── FrmMainTbZoomIn_Light.png │ ├── FrmMainTbZoomOut_Blue.png │ ├── FrmMainTbZoomOut_Dark.png │ ├── FrmMainTbZoomOut_Light.png │ ├── FrmOptionsFontAndColor_Blue.png │ ├── FrmOptionsFontAndColor_Dark.png │ ├── FrmOptionsFontAndColor_Light.png │ ├── FrmScriptTbClearLog_Blue.png │ ├── FrmScriptTbClearLog_Dark.png │ ├── FrmScriptTbClearLog_Light.png │ ├── FrmScriptTbCopy_Blue.png │ ├── FrmScriptTbCopy_Dark.png │ ├── FrmScriptTbCopy_Light.png │ ├── FrmScriptTbCut_Blue.png │ ├── FrmScriptTbCut_Dark.png │ ├── FrmScriptTbCut_Light.png │ ├── FrmScriptTbPaste_Blue.png │ ├── FrmScriptTbPaste_Dark.png │ ├── FrmScriptTbPaste_Light.png │ ├── FrmScriptTbRedo_Blue.png │ ├── FrmScriptTbRedo_Dark.png │ ├── FrmScriptTbRedo_Light.png │ ├── FrmScriptTbStart_Blue.png │ ├── FrmScriptTbStart_Dark.png │ ├── FrmScriptTbStart_Light.png │ ├── FrmScriptTbStop_Blue.png │ ├── FrmScriptTbStop_Dark.png │ ├── FrmScriptTbStop_Light.png │ ├── FrmScriptTbUndo_Blue.png │ ├── FrmScriptTbUndo_Dark.png │ ├── FrmScriptTbUndo_Light.png │ ├── FrmScriptTbWordWrap_Blue.png │ ├── FrmScriptTbWordWrap_Dark.png │ ├── FrmScriptTbWordWrap_Light.png │ ├── FrmSearchOptions_Blue.png │ ├── FrmSearchOptions_Dark.png │ ├── FrmSearchOptions_Light.png │ ├── FrmStatisticTbLegend_Blue.png │ ├── FrmStatisticTbLegend_Dark.png │ ├── FrmStatisticTbLegend_Light.png │ ├── ThemeResources.cs │ ├── VisualStudioBlueResources.cs │ ├── VisualStudioDarkResources.cs │ └── VisualStudioLightResources.cs ├── Theme.cs ├── ThemeManager.cs └── Themes │ ├── BaseTheme.cs │ ├── VisualStudioBlueTheme.cs │ ├── VisualStudioDarkTheme.cs │ └── VisualStudioLightTheme.cs ├── Logbert Setup ├── Bitmaps │ ├── bannrbmp.bmp │ └── dlgbmp.bmp ├── Includes │ ├── ArpProperties.wxi │ ├── CstmUiFragment.wxs │ ├── GlobalDefines.wxi │ └── UIFragments │ │ └── CstmInstallDirDlg.wxs ├── Install │ ├── Files.wxi │ ├── Parts │ │ └── General.wxi │ └── Shortcuts.wxi ├── Localization │ └── en-US.wxl ├── Logbert Setup.wixproj ├── Product.wxs └── Resources │ └── LgbrtStpInst.ico ├── Logbert.sln └── Logbert ├── .editorconfig ├── App.config ├── Controls ├── ColorMap.Designer.cs ├── ColorMap.cs ├── ColorMap.resx ├── ColorPickerCtrl.Designer.cs ├── ColorPickerCtrl.cs ├── ColorPickerCtrl.resx ├── CustomDetailsControl.Designer.cs ├── CustomDetailsControl.cs ├── CustomDetailsControl.resx ├── DockContentEx.cs ├── DockPanelEx.cs ├── EventLogDetailsControl.Designer.cs ├── EventLogDetailsControl.cs ├── EventLogDetailsControl.resx ├── Log4NetDetailsControl.Designer.cs ├── Log4NetDetailsControl.cs ├── Log4NetDetailsControl.resx ├── OptionPanels │ ├── OptionPanelBase.cs │ ├── OptionPanelFontColor.Designer.cs │ ├── OptionPanelFontColor.cs │ ├── OptionPanelFontColor.resx │ ├── OptionPanelGeneral.Designer.cs │ ├── OptionPanelGeneral.cs │ ├── OptionPanelGeneral.resx │ ├── OptionPanelScriptEditor.Designer.cs │ ├── OptionPanelScriptEditor.cs │ └── OptionPanelScriptEditor.resx ├── SyslogDetailsControl.Designer.cs ├── SyslogDetailsControl.cs ├── SyslogDetailsControl.resx ├── ThemedListBoxEx.cs ├── WinDebugDetailsControl.Designer.cs ├── WinDebugDetailsControl.cs └── WinDebugDetailsControl.resx ├── Dialogs ├── Docking │ ├── FrmLogBookmarks.Designer.cs │ ├── FrmLogBookmarks.cs │ ├── FrmLogBookmarks.resx │ ├── FrmLogDetails.Designer.cs │ ├── FrmLogDetails.cs │ ├── FrmLogDetails.resx │ ├── FrmLogDocument.Designer.cs │ ├── FrmLogDocument.cs │ ├── FrmLogDocument.resx │ ├── FrmLogFilter.Designer.cs │ ├── FrmLogFilter.cs │ ├── FrmLogFilter.resx │ ├── FrmLogScript.Designer.cs │ ├── FrmLogScript.cs │ ├── FrmLogScript.resx │ ├── FrmLogStatistic.Designer.cs │ ├── FrmLogStatistic.cs │ ├── FrmLogStatistic.resx │ ├── FrmLogTree.Designer.cs │ ├── FrmLogTree.cs │ ├── FrmLogTree.resx │ ├── FrmLogWindow.Designer.cs │ ├── FrmLogWindow.cs │ ├── FrmLogWindow.resx │ ├── FrmWelcome.Designer.cs │ ├── FrmWelcome.cs │ └── FrmWelcome.resx ├── FrmAbout.Designer.cs ├── FrmAbout.cs ├── FrmAbout.resx ├── FrmAddEditFilter.Designer.cs ├── FrmAddEditFilter.cs ├── FrmAddEditFilter.resx ├── FrmColumnizer.Designer.cs ├── FrmColumnizer.cs ├── FrmColumnizer.resx ├── FrmColumnizerTest.Designer.cs ├── FrmColumnizerTest.cs ├── FrmColumnizerTest.resx ├── FrmEditTimeStampFormat.Designer.cs ├── FrmEditTimeStampFormat.cs ├── FrmEditTimeStampFormat.resx ├── FrmLogLevelMap.Designer.cs ├── FrmLogLevelMap.cs ├── FrmLogLevelMap.resx ├── FrmLogSearch.Designer.cs ├── FrmLogSearch.cs ├── FrmLogSearch.resx ├── FrmNew.Designer.cs ├── FrmNew.cs ├── FrmNew.resx ├── FrmOptions.Designer.cs ├── FrmOptions.cs ├── FrmOptions.resx ├── FrmTimestamps.Designer.cs ├── FrmTimestamps.cs └── FrmTimestamps.resx ├── Helper ├── Browser.cs ├── BrushCache.cs ├── DataProtection.cs ├── DelayedCallback.cs ├── EncodingWrapper.cs ├── Extensions.cs ├── FixedSizedQueue.cs ├── FlatColorTable.cs ├── FontCache.cs ├── GdiCache.cs ├── LogColumnData.cs ├── LogMessageSelectedEventArgs.cs ├── Logger.cs ├── MruManager.cs ├── ThreadAttachedDelayedCallback.cs ├── WaitCursor.cs └── Win32.cs ├── Interfaces ├── IBookmarkObserver.cs ├── IBookmarkProvider.cs ├── IDelayedCallbackHandler.cs ├── ILogContainer.cs ├── ILogFilterHandler.cs ├── ILogFilterProvider.cs ├── ILogHandler.cs ├── ILogPresenter.cs ├── ILogProvider.cs ├── ILogSettingsCtrl.cs ├── IOptionPanel.cs └── ISearchable.cs ├── Libraries ├── MoonSharp.Interpreter.dll ├── ScintillaNET.dll ├── WeifenLuo.WinFormsUI.Docking.ThemeVS2015.dll └── WeifenLuo.WinFormsUI.Docking.dll ├── Logbert.csproj ├── Logbert.ico ├── Logging ├── Filter │ ├── LogFilter.cs │ ├── LogFilterColumn.cs │ ├── LogFilterLevel.cs │ ├── LogFilterLogger.cs │ ├── LogFilterRegex.cs │ └── LogFilterString.cs ├── LogError.cs ├── LogLevel.cs ├── LogMessage.cs ├── LogMessageCustom.cs ├── LogMessageCustom.cs.bak ├── LogMessageEventlog.cs ├── LogMessageLog4Net.cs ├── LogMessageSyslog.cs └── LogMessageWinDebug.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── app.manifest ├── Receiver ├── CustomReceiver │ ├── Columnizer.cs │ ├── CustomDirReceiver │ │ ├── CustomDirReceiver.cs │ │ ├── CustomDirReceiverSettings.Designer.cs │ │ ├── CustomDirReceiverSettings.cs │ │ └── CustomDirReceiverSettings.resx │ ├── CustomFileReceiver │ │ ├── CustomFileReceiver.cs │ │ ├── CustomFileReceiverSettings.Designer.cs │ │ ├── CustomFileReceiverSettings.cs │ │ └── CustomFileReceiverSettings.resx │ ├── CustomHttpReceiver │ │ ├── BasicHttpAuthentication.cs │ │ ├── CustomHttpReceiver.cs │ │ ├── CustomHttpReceiverSettings.Designer.cs │ │ ├── CustomHttpReceiverSettings.cs │ │ └── CustomHttpReceiverSettings.resx │ ├── CustomTcpReceiver │ │ ├── CustomTcpReceiver.cs │ │ ├── CustomTcpReceiverSettings.Designer.cs │ │ ├── CustomTcpReceiverSettings.cs │ │ └── CustomTcpReceiverSettings.resx │ ├── CustomUdpReceiver │ │ ├── CustomUdpReceiver.cs │ │ ├── CustomUdpReceiverSettings.Designer.cs │ │ ├── CustomUdpReceiverSettings.cs │ │ └── CustomUdpReceiverSettings.resx │ ├── LogColumn.cs │ └── LogColumnType.cs ├── EventlogReceiver │ ├── EventlogReceiver.cs │ ├── EventlogReceiverSettings.Designer.cs │ ├── EventlogReceiverSettings.cs │ └── EventlogReceiverSettings.resx ├── Log4NetDirReceiver │ ├── Log4NetDirReceiver.cs │ ├── Log4NetDirReceiverSettings.Designer.cs │ ├── Log4NetDirReceiverSettings.cs │ └── Log4NetDirReceiverSettings.resx ├── Log4NetFileReceiver │ ├── Log4NetFileReceiver.cs │ ├── Log4NetFileReceiverSettings.Designer.cs │ ├── Log4NetFileReceiverSettings.cs │ └── Log4NetFileReceiverSettings.resx ├── Log4NetUdpReceiver │ ├── Log4NetUdpReceiver.cs │ ├── Log4NetUdpReceiverSettings.Designer.cs │ ├── Log4NetUdpReceiverSettings.cs │ └── Log4NetUdpReceiverSettings.resx ├── NLogDirReceiver │ ├── NLogDirReceiver.cs │ ├── NLogDirReceiverSettings.Designer.cs │ ├── NLogDirReceiverSettings.cs │ └── NLogDirReceiverSettings.resx ├── NLogFileReceiver │ ├── NLogFileReceiver.cs │ ├── NLogFileReceiverSettings.Designer.cs │ ├── NLogFileReceiverSettings.cs │ └── NLogFileReceiverSettings.resx ├── NLogTcpReceiver │ ├── NLogTcpReceiver.cs │ ├── NLogTcpReceiverSettings.Designer.cs │ ├── NLogTcpReceiverSettings.cs │ └── NLogTcpReceiverSettings.resx ├── NLogUdpReceiver │ ├── NLogUdpReceiver.cs │ ├── NLogUdpReceiverSettings.Designer.cs │ ├── NLogUdpReceiverSettings.cs │ └── NLogUdpReceiverSettings.resx ├── ReceiverBase.cs ├── SyslogFileReceiver │ ├── SyslogFileReceiver.cs │ ├── SyslogFileReceiverSettings.Designer.cs │ ├── SyslogFileReceiverSettings.cs │ └── SyslogFileReceiverSettings.resx ├── SyslogUdpReceiver │ ├── SyslogUdpReceiver.cs │ ├── SyslogUdpReceiverSettings.Designer.cs │ ├── SyslogUdpReceiverSettings.cs │ └── SyslogUdpReceiverSettings.resx ├── ValidationResult.cs └── WinDebugReceiver │ ├── DebugMonitor.cs │ ├── WinDebugReceiver.cs │ ├── WinDebugReceiverSettings.Designer.cs │ ├── WinDebugReceiverSettings.cs │ └── WinDebugReceiverSettings.resx └── Resources ├── Debug_Light.png ├── Error_Light.png ├── Fatal_Light.png ├── FindSymbol_6263.png ├── Info_Light.png ├── LogLevel_16x.png ├── Logbert Logo Background.png ├── Logbert Start Screen.png ├── NoBookmark.png ├── PencilAngled_16xMD_color.png ├── Remove_16xMD.png ├── RunTests_8790.png ├── Script_16x.png ├── StatusAnnotations_Information_16xLG.png ├── Trace_Light.png ├── VSO_Time_16x.png ├── Warn_Light.png ├── action_add_16xMD.png ├── arrow_Down_16xLG.png ├── arrow_Up_16xLG.png ├── eyedropper_16xLG.png ├── font_color.png ├── log_error.png ├── logbert.about.png └── properties_16xLG.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/README.md -------------------------------------------------------------------------------- /doc/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/doc/Thumbs.db -------------------------------------------------------------------------------- /doc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/doc/screenshot.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/.editorconfig -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Controls/ColorDropDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Controls/ColorDropDown.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Controls/CustomToolStripSystemRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Controls/CustomToolStripSystemRenderer.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Controls/DataGridViewEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Controls/DataGridViewEx.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Controls/GroupBoxEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Controls/GroupBoxEx.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Controls/InfoPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Controls/InfoPanel.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Controls/LinkLabelEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Controls/LinkLabelEx.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Controls/ListBoxEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Controls/ListBoxEx.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Controls/ListViewEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Controls/ListViewEx.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Controls/MenuStripEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Controls/MenuStripEx.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Controls/PictureBoxEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Controls/PictureBoxEx.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Controls/TableLayoutPanelEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Controls/TableLayoutPanelEx.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Controls/TextBoxEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Controls/TextBoxEx.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Controls/ToolStripEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Controls/ToolStripEx.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Controls/TreeViewEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Controls/TreeViewEx.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Couchcoding.Logbert.Gui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Couchcoding.Logbert.Gui.csproj -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Dialogs/DialogForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Dialogs/DialogForm.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Helper/DpiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Helper/DpiHelper.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Helper/OSHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Helper/OSHelper.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Interop/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Interop/Win32.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Gui/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Gui/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/.editorconfig -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Couchcoding.Logbert.Theme.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Couchcoding.Logbert.Theme.csproj -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Helper/GdiCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Helper/GdiCache.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Interfaces/IThemable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Interfaces/IThemable.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Metrics/ThemeMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Metrics/ThemeMetrics.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Metrics/VisualStudioBlueMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Metrics/VisualStudioBlueMetrics.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Metrics/VisualStudioDarkMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Metrics/VisualStudioDarkMetrics.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Metrics/VisualStudioLightMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Metrics/VisualStudioLightMetrics.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Palettes/ThemeColorPalette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Palettes/ThemeColorPalette.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Palettes/VisualStudioBluePalette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Palettes/VisualStudioBluePalette.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Palettes/VisualStudioDarkPalette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Palettes/VisualStudioDarkPalette.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Palettes/VisualStudioLightPalette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Palettes/VisualStudioLightPalette.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Properties/VisualStudioBlueResource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Properties/VisualStudioBlueResource.Designer.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Properties/VisualStudioBlueResource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Properties/VisualStudioBlueResource.resx -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Properties/VisualStudioDarkResource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Properties/VisualStudioDarkResource.Designer.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Properties/VisualStudioDarkResource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Properties/VisualStudioDarkResource.resx -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Properties/VisualStudioLightResource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Properties/VisualStudioLightResource.Designer.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Properties/VisualStudioLightResource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Properties/VisualStudioLightResource.resx -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbNext_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbNext_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbNext_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbNext_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbNext_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbNext_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbPrevious_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbPrevious_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbPrevious_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbPrevious_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbPrevious_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbPrevious_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbRemove_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbRemove_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbRemove_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbRemove_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbRemove_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmBookmarksTbRemove_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmBookmarks_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmBookmarks_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmBookmarks_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmBookmarks_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmBookmarks_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmBookmarks_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbAdd_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbAdd_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbAdd_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbAdd_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbAdd_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbAdd_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbEdit_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbEdit_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbEdit_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbEdit_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbEdit_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbEdit_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbRemove_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbRemove_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbRemove_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbRemove_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbRemove_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmFilterTbRemove_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmLogBookmark_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmLogBookmark_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmLogBookmark_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmLogBookmark_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmLogBookmark_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmLogBookmark_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmLogTreeNodeCollapsed_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmLogTreeNodeCollapsed_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmLogTreeNodeCollapsed_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmLogTreeNodeCollapsed_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmLogTreeNodeCollapsed_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmLogTreeNodeCollapsed_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmLogTreeNodeExpanded_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmLogTreeNodeExpanded_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmLogTreeNodeExpanded_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmLogTreeNodeExpanded_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmLogTreeNodeExpanded_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmLogTreeNodeExpanded_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbAbout_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbAbout_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbAbout_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbAbout_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbAbout_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbAbout_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbBookmark_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbBookmark_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbBookmark_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbBookmark_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbBookmark_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbBookmark_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbBottom_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbBottom_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbBottom_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbBottom_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbBottom_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbBottom_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbClear_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbClear_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbClear_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbClear_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbClear_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbClear_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbCloseAll_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbCloseAll_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbCloseAll_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbCloseAll_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbCloseAll_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbCloseAll_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbDebug_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbDebug_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbDebug_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbDebug_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbDebug_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbDebug_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbDetails_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbDetails_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbDetails_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbDetails_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbDetails_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbDetails_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbError_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbError_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbError_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbError_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbError_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbError_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbFatal_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbFatal_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbFatal_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbFatal_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbFatal_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbFatal_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbFilter_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbFilter_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbFilter_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbFilter_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbFilter_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbFilter_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbInfo_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbInfo_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbInfo_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbInfo_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbInfo_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbInfo_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbLogtree_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbLogtree_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbLogtree_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbLogtree_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbLogtree_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbLogtree_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbNew_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbNew_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbNew_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbNew_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbNew_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbNew_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbOpen_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbOpen_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbOpen_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbOpen_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbOpen_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbOpen_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbRefresh_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbRefresh_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbRefresh_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbRefresh_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbRefresh_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbRefresh_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSave_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSave_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSave_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSave_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSave_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSave_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSearch_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSearch_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSearch_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSearch_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSearch_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSearch_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSettings_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSettings_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSettings_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSettings_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSettings_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSettings_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbStart_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbStart_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbStart_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbStart_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbStart_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbStart_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbStatistic_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbStatistic_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbStatistic_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbStatistic_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbStatistic_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbStatistic_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSync_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSync_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSync_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSync_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSync_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbSync_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTimeshift_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTimeshift_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTimeshift_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTimeshift_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTimeshift_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTimeshift_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTop_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTop_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTop_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTop_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTop_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTop_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTraceLog_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTraceLog_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTraceLog_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTraceLog_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTraceLog_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTraceLog_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTrace_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTrace_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTrace_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTrace_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTrace_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbTrace_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbWarn_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbWarn_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbWarn_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbWarn_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbWarn_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbWarn_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbZoomIn_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbZoomIn_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbZoomIn_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbZoomIn_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbZoomIn_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbZoomIn_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbZoomOut_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbZoomOut_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbZoomOut_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbZoomOut_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmMainTbZoomOut_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmMainTbZoomOut_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmOptionsFontAndColor_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmOptionsFontAndColor_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmOptionsFontAndColor_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmOptionsFontAndColor_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmOptionsFontAndColor_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmOptionsFontAndColor_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbClearLog_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbClearLog_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbClearLog_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbClearLog_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbClearLog_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbClearLog_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbCopy_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbCopy_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbCopy_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbCopy_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbCopy_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbCopy_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbCut_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbCut_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbCut_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbCut_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbCut_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbCut_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbPaste_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbPaste_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbPaste_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbPaste_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbPaste_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbPaste_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbRedo_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbRedo_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbRedo_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbRedo_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbRedo_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbRedo_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbStart_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbStart_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbStart_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbStart_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbStart_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbStart_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbStop_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbStop_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbStop_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbStop_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbStop_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbStop_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbUndo_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbUndo_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbUndo_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbUndo_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbUndo_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbUndo_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbWordWrap_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbWordWrap_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbWordWrap_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbWordWrap_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbWordWrap_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmScriptTbWordWrap_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmSearchOptions_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmSearchOptions_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmSearchOptions_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmSearchOptions_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmSearchOptions_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmSearchOptions_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmStatisticTbLegend_Blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmStatisticTbLegend_Blue.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmStatisticTbLegend_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmStatisticTbLegend_Dark.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/FrmStatisticTbLegend_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/FrmStatisticTbLegend_Light.png -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/ThemeResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/ThemeResources.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/VisualStudioBlueResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/VisualStudioBlueResources.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/VisualStudioDarkResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/VisualStudioDarkResources.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Resources/VisualStudioLightResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Resources/VisualStudioLightResources.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Theme.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/ThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/ThemeManager.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Themes/BaseTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Themes/BaseTheme.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Themes/VisualStudioBlueTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Themes/VisualStudioBlueTheme.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Themes/VisualStudioDarkTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Themes/VisualStudioDarkTheme.cs -------------------------------------------------------------------------------- /src/Couchcoding.Logbert.Theme/Themes/VisualStudioLightTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Couchcoding.Logbert.Theme/Themes/VisualStudioLightTheme.cs -------------------------------------------------------------------------------- /src/Logbert Setup/Bitmaps/bannrbmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert Setup/Bitmaps/bannrbmp.bmp -------------------------------------------------------------------------------- /src/Logbert Setup/Bitmaps/dlgbmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert Setup/Bitmaps/dlgbmp.bmp -------------------------------------------------------------------------------- /src/Logbert Setup/Includes/ArpProperties.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert Setup/Includes/ArpProperties.wxi -------------------------------------------------------------------------------- /src/Logbert Setup/Includes/CstmUiFragment.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert Setup/Includes/CstmUiFragment.wxs -------------------------------------------------------------------------------- /src/Logbert Setup/Includes/GlobalDefines.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert Setup/Includes/GlobalDefines.wxi -------------------------------------------------------------------------------- /src/Logbert Setup/Includes/UIFragments/CstmInstallDirDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert Setup/Includes/UIFragments/CstmInstallDirDlg.wxs -------------------------------------------------------------------------------- /src/Logbert Setup/Install/Files.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert Setup/Install/Files.wxi -------------------------------------------------------------------------------- /src/Logbert Setup/Install/Parts/General.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert Setup/Install/Parts/General.wxi -------------------------------------------------------------------------------- /src/Logbert Setup/Install/Shortcuts.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert Setup/Install/Shortcuts.wxi -------------------------------------------------------------------------------- /src/Logbert Setup/Localization/en-US.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert Setup/Localization/en-US.wxl -------------------------------------------------------------------------------- /src/Logbert Setup/Logbert Setup.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert Setup/Logbert Setup.wixproj -------------------------------------------------------------------------------- /src/Logbert Setup/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert Setup/Product.wxs -------------------------------------------------------------------------------- /src/Logbert Setup/Resources/LgbrtStpInst.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert Setup/Resources/LgbrtStpInst.ico -------------------------------------------------------------------------------- /src/Logbert.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert.sln -------------------------------------------------------------------------------- /src/Logbert/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/.editorconfig -------------------------------------------------------------------------------- /src/Logbert/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/App.config -------------------------------------------------------------------------------- /src/Logbert/Controls/ColorMap.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/ColorMap.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/ColorMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/ColorMap.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/ColorMap.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/ColorMap.resx -------------------------------------------------------------------------------- /src/Logbert/Controls/ColorPickerCtrl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/ColorPickerCtrl.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/ColorPickerCtrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/ColorPickerCtrl.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/ColorPickerCtrl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/ColorPickerCtrl.resx -------------------------------------------------------------------------------- /src/Logbert/Controls/CustomDetailsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/CustomDetailsControl.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/CustomDetailsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/CustomDetailsControl.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/CustomDetailsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/CustomDetailsControl.resx -------------------------------------------------------------------------------- /src/Logbert/Controls/DockContentEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/DockContentEx.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/DockPanelEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/DockPanelEx.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/EventLogDetailsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/EventLogDetailsControl.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/EventLogDetailsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/EventLogDetailsControl.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/EventLogDetailsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/EventLogDetailsControl.resx -------------------------------------------------------------------------------- /src/Logbert/Controls/Log4NetDetailsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/Log4NetDetailsControl.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/Log4NetDetailsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/Log4NetDetailsControl.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/Log4NetDetailsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/Log4NetDetailsControl.resx -------------------------------------------------------------------------------- /src/Logbert/Controls/OptionPanels/OptionPanelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/OptionPanels/OptionPanelBase.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/OptionPanels/OptionPanelFontColor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/OptionPanels/OptionPanelFontColor.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/OptionPanels/OptionPanelFontColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/OptionPanels/OptionPanelFontColor.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/OptionPanels/OptionPanelFontColor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/OptionPanels/OptionPanelFontColor.resx -------------------------------------------------------------------------------- /src/Logbert/Controls/OptionPanels/OptionPanelGeneral.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/OptionPanels/OptionPanelGeneral.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/OptionPanels/OptionPanelGeneral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/OptionPanels/OptionPanelGeneral.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/OptionPanels/OptionPanelGeneral.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/OptionPanels/OptionPanelGeneral.resx -------------------------------------------------------------------------------- /src/Logbert/Controls/OptionPanels/OptionPanelScriptEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/OptionPanels/OptionPanelScriptEditor.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/OptionPanels/OptionPanelScriptEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/OptionPanels/OptionPanelScriptEditor.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/OptionPanels/OptionPanelScriptEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/OptionPanels/OptionPanelScriptEditor.resx -------------------------------------------------------------------------------- /src/Logbert/Controls/SyslogDetailsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/SyslogDetailsControl.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/SyslogDetailsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/SyslogDetailsControl.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/SyslogDetailsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/SyslogDetailsControl.resx -------------------------------------------------------------------------------- /src/Logbert/Controls/ThemedListBoxEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/ThemedListBoxEx.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/WinDebugDetailsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/WinDebugDetailsControl.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/WinDebugDetailsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/WinDebugDetailsControl.cs -------------------------------------------------------------------------------- /src/Logbert/Controls/WinDebugDetailsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Controls/WinDebugDetailsControl.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogBookmarks.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogBookmarks.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogBookmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogBookmarks.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogBookmarks.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogBookmarks.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogDetails.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogDetails.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogDetails.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogDetails.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogDetails.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogDocument.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogDocument.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogDocument.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogDocument.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogDocument.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogFilter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogFilter.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogFilter.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogFilter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogFilter.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogScript.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogScript.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogScript.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogScript.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogScript.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogStatistic.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogStatistic.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogStatistic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogStatistic.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogStatistic.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogStatistic.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogTree.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogTree.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogTree.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogTree.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogTree.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogWindow.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogWindow.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmLogWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmLogWindow.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmWelcome.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmWelcome.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmWelcome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmWelcome.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/Docking/FrmWelcome.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/Docking/FrmWelcome.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmAbout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmAbout.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmAbout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmAbout.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmAbout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmAbout.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmAddEditFilter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmAddEditFilter.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmAddEditFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmAddEditFilter.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmAddEditFilter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmAddEditFilter.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmColumnizer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmColumnizer.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmColumnizer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmColumnizer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmColumnizer.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmColumnizerTest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmColumnizerTest.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmColumnizerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmColumnizerTest.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmColumnizerTest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmColumnizerTest.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmEditTimeStampFormat.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmEditTimeStampFormat.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmEditTimeStampFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmEditTimeStampFormat.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmEditTimeStampFormat.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmEditTimeStampFormat.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmLogLevelMap.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmLogLevelMap.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmLogLevelMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmLogLevelMap.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmLogLevelMap.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmLogLevelMap.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmLogSearch.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmLogSearch.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmLogSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmLogSearch.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmLogSearch.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmLogSearch.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmNew.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmNew.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmNew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmNew.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmNew.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmNew.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmOptions.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmOptions.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmOptions.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmOptions.resx -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmTimestamps.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmTimestamps.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmTimestamps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmTimestamps.cs -------------------------------------------------------------------------------- /src/Logbert/Dialogs/FrmTimestamps.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Dialogs/FrmTimestamps.resx -------------------------------------------------------------------------------- /src/Logbert/Helper/Browser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/Browser.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/BrushCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/BrushCache.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/DataProtection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/DataProtection.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/DelayedCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/DelayedCallback.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/EncodingWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/EncodingWrapper.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/Extensions.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/FixedSizedQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/FixedSizedQueue.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/FlatColorTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/FlatColorTable.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/FontCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/FontCache.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/GdiCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/GdiCache.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/LogColumnData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/LogColumnData.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/LogMessageSelectedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/LogMessageSelectedEventArgs.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/Logger.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/MruManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/MruManager.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/ThreadAttachedDelayedCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/ThreadAttachedDelayedCallback.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/WaitCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/WaitCursor.cs -------------------------------------------------------------------------------- /src/Logbert/Helper/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Helper/Win32.cs -------------------------------------------------------------------------------- /src/Logbert/Interfaces/IBookmarkObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Interfaces/IBookmarkObserver.cs -------------------------------------------------------------------------------- /src/Logbert/Interfaces/IBookmarkProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Interfaces/IBookmarkProvider.cs -------------------------------------------------------------------------------- /src/Logbert/Interfaces/IDelayedCallbackHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Interfaces/IDelayedCallbackHandler.cs -------------------------------------------------------------------------------- /src/Logbert/Interfaces/ILogContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Interfaces/ILogContainer.cs -------------------------------------------------------------------------------- /src/Logbert/Interfaces/ILogFilterHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Interfaces/ILogFilterHandler.cs -------------------------------------------------------------------------------- /src/Logbert/Interfaces/ILogFilterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Interfaces/ILogFilterProvider.cs -------------------------------------------------------------------------------- /src/Logbert/Interfaces/ILogHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Interfaces/ILogHandler.cs -------------------------------------------------------------------------------- /src/Logbert/Interfaces/ILogPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Interfaces/ILogPresenter.cs -------------------------------------------------------------------------------- /src/Logbert/Interfaces/ILogProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Interfaces/ILogProvider.cs -------------------------------------------------------------------------------- /src/Logbert/Interfaces/ILogSettingsCtrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Interfaces/ILogSettingsCtrl.cs -------------------------------------------------------------------------------- /src/Logbert/Interfaces/IOptionPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Interfaces/IOptionPanel.cs -------------------------------------------------------------------------------- /src/Logbert/Interfaces/ISearchable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Interfaces/ISearchable.cs -------------------------------------------------------------------------------- /src/Logbert/Libraries/MoonSharp.Interpreter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Libraries/MoonSharp.Interpreter.dll -------------------------------------------------------------------------------- /src/Logbert/Libraries/ScintillaNET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Libraries/ScintillaNET.dll -------------------------------------------------------------------------------- /src/Logbert/Libraries/WeifenLuo.WinFormsUI.Docking.ThemeVS2015.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Libraries/WeifenLuo.WinFormsUI.Docking.ThemeVS2015.dll -------------------------------------------------------------------------------- /src/Logbert/Libraries/WeifenLuo.WinFormsUI.Docking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Libraries/WeifenLuo.WinFormsUI.Docking.dll -------------------------------------------------------------------------------- /src/Logbert/Logbert.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logbert.csproj -------------------------------------------------------------------------------- /src/Logbert/Logbert.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logbert.ico -------------------------------------------------------------------------------- /src/Logbert/Logging/Filter/LogFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logging/Filter/LogFilter.cs -------------------------------------------------------------------------------- /src/Logbert/Logging/Filter/LogFilterColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logging/Filter/LogFilterColumn.cs -------------------------------------------------------------------------------- /src/Logbert/Logging/Filter/LogFilterLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logging/Filter/LogFilterLevel.cs -------------------------------------------------------------------------------- /src/Logbert/Logging/Filter/LogFilterLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logging/Filter/LogFilterLogger.cs -------------------------------------------------------------------------------- /src/Logbert/Logging/Filter/LogFilterRegex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logging/Filter/LogFilterRegex.cs -------------------------------------------------------------------------------- /src/Logbert/Logging/Filter/LogFilterString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logging/Filter/LogFilterString.cs -------------------------------------------------------------------------------- /src/Logbert/Logging/LogError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logging/LogError.cs -------------------------------------------------------------------------------- /src/Logbert/Logging/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logging/LogLevel.cs -------------------------------------------------------------------------------- /src/Logbert/Logging/LogMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logging/LogMessage.cs -------------------------------------------------------------------------------- /src/Logbert/Logging/LogMessageCustom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logging/LogMessageCustom.cs -------------------------------------------------------------------------------- /src/Logbert/Logging/LogMessageCustom.cs.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logging/LogMessageCustom.cs.bak -------------------------------------------------------------------------------- /src/Logbert/Logging/LogMessageEventlog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logging/LogMessageEventlog.cs -------------------------------------------------------------------------------- /src/Logbert/Logging/LogMessageLog4Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logging/LogMessageLog4Net.cs -------------------------------------------------------------------------------- /src/Logbert/Logging/LogMessageSyslog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logging/LogMessageSyslog.cs -------------------------------------------------------------------------------- /src/Logbert/Logging/LogMessageWinDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Logging/LogMessageWinDebug.cs -------------------------------------------------------------------------------- /src/Logbert/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/MainForm.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/MainForm.cs -------------------------------------------------------------------------------- /src/Logbert/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/MainForm.resx -------------------------------------------------------------------------------- /src/Logbert/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Program.cs -------------------------------------------------------------------------------- /src/Logbert/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Logbert/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Logbert/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Logbert/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Properties/app.manifest -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/Columnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/Columnizer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomDirReceiver/CustomDirReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomDirReceiver/CustomDirReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomDirReceiver/CustomDirReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomDirReceiver/CustomDirReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomDirReceiver/CustomDirReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomDirReceiver/CustomDirReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomDirReceiver/CustomDirReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomDirReceiver/CustomDirReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomFileReceiver/CustomFileReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomFileReceiver/CustomFileReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomFileReceiver/CustomFileReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomFileReceiver/CustomFileReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomFileReceiver/CustomFileReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomFileReceiver/CustomFileReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomFileReceiver/CustomFileReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomFileReceiver/CustomFileReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomHttpReceiver/BasicHttpAuthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomHttpReceiver/BasicHttpAuthentication.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomHttpReceiver/CustomHttpReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomHttpReceiver/CustomHttpReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomHttpReceiver/CustomHttpReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomHttpReceiver/CustomHttpReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomHttpReceiver/CustomHttpReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomHttpReceiver/CustomHttpReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomHttpReceiver/CustomHttpReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomHttpReceiver/CustomHttpReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomTcpReceiver/CustomTcpReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomTcpReceiver/CustomTcpReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomTcpReceiver/CustomTcpReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomTcpReceiver/CustomTcpReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomTcpReceiver/CustomTcpReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomTcpReceiver/CustomTcpReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomTcpReceiver/CustomTcpReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomTcpReceiver/CustomTcpReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomUdpReceiver/CustomUdpReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomUdpReceiver/CustomUdpReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomUdpReceiver/CustomUdpReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomUdpReceiver/CustomUdpReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomUdpReceiver/CustomUdpReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomUdpReceiver/CustomUdpReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/CustomUdpReceiver/CustomUdpReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/CustomUdpReceiver/CustomUdpReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/LogColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/LogColumn.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/CustomReceiver/LogColumnType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/CustomReceiver/LogColumnType.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/EventlogReceiver/EventlogReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/EventlogReceiver/EventlogReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/EventlogReceiver/EventlogReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/EventlogReceiver/EventlogReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/EventlogReceiver/EventlogReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/EventlogReceiver/EventlogReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/EventlogReceiver/EventlogReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/EventlogReceiver/EventlogReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Receiver/Log4NetDirReceiver/Log4NetDirReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/Log4NetDirReceiver/Log4NetDirReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/Log4NetDirReceiver/Log4NetDirReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/Log4NetDirReceiver/Log4NetDirReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/Log4NetDirReceiver/Log4NetDirReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/Log4NetDirReceiver/Log4NetDirReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/Log4NetDirReceiver/Log4NetDirReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/Log4NetDirReceiver/Log4NetDirReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Receiver/Log4NetFileReceiver/Log4NetFileReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/Log4NetFileReceiver/Log4NetFileReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/Log4NetFileReceiver/Log4NetFileReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/Log4NetFileReceiver/Log4NetFileReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/Log4NetFileReceiver/Log4NetFileReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/Log4NetFileReceiver/Log4NetFileReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/Log4NetFileReceiver/Log4NetFileReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/Log4NetFileReceiver/Log4NetFileReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Receiver/Log4NetUdpReceiver/Log4NetUdpReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/Log4NetUdpReceiver/Log4NetUdpReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/Log4NetUdpReceiver/Log4NetUdpReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/Log4NetUdpReceiver/Log4NetUdpReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/Log4NetUdpReceiver/Log4NetUdpReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/Log4NetUdpReceiver/Log4NetUdpReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/Log4NetUdpReceiver/Log4NetUdpReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/Log4NetUdpReceiver/Log4NetUdpReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogDirReceiver/NLogDirReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogDirReceiver/NLogDirReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogDirReceiver/NLogDirReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogDirReceiver/NLogDirReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogDirReceiver/NLogDirReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogDirReceiver/NLogDirReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogDirReceiver/NLogDirReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogDirReceiver/NLogDirReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogFileReceiver/NLogFileReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogFileReceiver/NLogFileReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogFileReceiver/NLogFileReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogFileReceiver/NLogFileReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogFileReceiver/NLogFileReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogFileReceiver/NLogFileReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogFileReceiver/NLogFileReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogFileReceiver/NLogFileReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogTcpReceiver/NLogTcpReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogTcpReceiver/NLogTcpReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogTcpReceiver/NLogTcpReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogTcpReceiver/NLogTcpReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogTcpReceiver/NLogTcpReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogTcpReceiver/NLogTcpReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogTcpReceiver/NLogTcpReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogTcpReceiver/NLogTcpReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogUdpReceiver/NLogUdpReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogUdpReceiver/NLogUdpReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogUdpReceiver/NLogUdpReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogUdpReceiver/NLogUdpReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogUdpReceiver/NLogUdpReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogUdpReceiver/NLogUdpReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/NLogUdpReceiver/NLogUdpReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/NLogUdpReceiver/NLogUdpReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Receiver/ReceiverBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/ReceiverBase.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/SyslogFileReceiver/SyslogFileReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/SyslogFileReceiver/SyslogFileReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/SyslogFileReceiver/SyslogFileReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/SyslogFileReceiver/SyslogFileReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/SyslogFileReceiver/SyslogFileReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/SyslogFileReceiver/SyslogFileReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/SyslogFileReceiver/SyslogFileReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/SyslogFileReceiver/SyslogFileReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Receiver/SyslogUdpReceiver/SyslogUdpReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/SyslogUdpReceiver/SyslogUdpReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/SyslogUdpReceiver/SyslogUdpReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/SyslogUdpReceiver/SyslogUdpReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/SyslogUdpReceiver/SyslogUdpReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/SyslogUdpReceiver/SyslogUdpReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/SyslogUdpReceiver/SyslogUdpReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/SyslogUdpReceiver/SyslogUdpReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Receiver/ValidationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/ValidationResult.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/WinDebugReceiver/DebugMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/WinDebugReceiver/DebugMonitor.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/WinDebugReceiver/WinDebugReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/WinDebugReceiver/WinDebugReceiver.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/WinDebugReceiver/WinDebugReceiverSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/WinDebugReceiver/WinDebugReceiverSettings.Designer.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/WinDebugReceiver/WinDebugReceiverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/WinDebugReceiver/WinDebugReceiverSettings.cs -------------------------------------------------------------------------------- /src/Logbert/Receiver/WinDebugReceiver/WinDebugReceiverSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Receiver/WinDebugReceiver/WinDebugReceiverSettings.resx -------------------------------------------------------------------------------- /src/Logbert/Resources/Debug_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/Debug_Light.png -------------------------------------------------------------------------------- /src/Logbert/Resources/Error_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/Error_Light.png -------------------------------------------------------------------------------- /src/Logbert/Resources/Fatal_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/Fatal_Light.png -------------------------------------------------------------------------------- /src/Logbert/Resources/FindSymbol_6263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/FindSymbol_6263.png -------------------------------------------------------------------------------- /src/Logbert/Resources/Info_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/Info_Light.png -------------------------------------------------------------------------------- /src/Logbert/Resources/LogLevel_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/LogLevel_16x.png -------------------------------------------------------------------------------- /src/Logbert/Resources/Logbert Logo Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/Logbert Logo Background.png -------------------------------------------------------------------------------- /src/Logbert/Resources/Logbert Start Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/Logbert Start Screen.png -------------------------------------------------------------------------------- /src/Logbert/Resources/NoBookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/NoBookmark.png -------------------------------------------------------------------------------- /src/Logbert/Resources/PencilAngled_16xMD_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/PencilAngled_16xMD_color.png -------------------------------------------------------------------------------- /src/Logbert/Resources/Remove_16xMD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/Remove_16xMD.png -------------------------------------------------------------------------------- /src/Logbert/Resources/RunTests_8790.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/RunTests_8790.png -------------------------------------------------------------------------------- /src/Logbert/Resources/Script_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/Script_16x.png -------------------------------------------------------------------------------- /src/Logbert/Resources/StatusAnnotations_Information_16xLG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/StatusAnnotations_Information_16xLG.png -------------------------------------------------------------------------------- /src/Logbert/Resources/Trace_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/Trace_Light.png -------------------------------------------------------------------------------- /src/Logbert/Resources/VSO_Time_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/VSO_Time_16x.png -------------------------------------------------------------------------------- /src/Logbert/Resources/Warn_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/Warn_Light.png -------------------------------------------------------------------------------- /src/Logbert/Resources/action_add_16xMD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/action_add_16xMD.png -------------------------------------------------------------------------------- /src/Logbert/Resources/arrow_Down_16xLG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/arrow_Down_16xLG.png -------------------------------------------------------------------------------- /src/Logbert/Resources/arrow_Up_16xLG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/arrow_Up_16xLG.png -------------------------------------------------------------------------------- /src/Logbert/Resources/eyedropper_16xLG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/eyedropper_16xLG.png -------------------------------------------------------------------------------- /src/Logbert/Resources/font_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/font_color.png -------------------------------------------------------------------------------- /src/Logbert/Resources/log_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/log_error.png -------------------------------------------------------------------------------- /src/Logbert/Resources/logbert.about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/logbert.about.png -------------------------------------------------------------------------------- /src/Logbert/Resources/properties_16xLG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/couchcoding/Logbert/HEAD/src/Logbert/Resources/properties_16xLG.png --------------------------------------------------------------------------------