├── .devcontainer └── devcontainer.json ├── .github ├── copilot-instructions.md └── workflows │ ├── build_dotnet.yml │ └── test_dotnet.yml ├── .gitignore ├── Build-DebugPack.ps1 ├── Build-ReleasePack.ps1 ├── CHANGELOG.md ├── GitVersion.yml ├── ISSUE_TEMPLATE.md ├── LICENSE ├── Licenses ├── CsvHelper__33.1.0.html ├── DockPanelSuite.ThemeVS2015__3.1.1.html ├── GitVersion.Core__6.5.0.html ├── Microsoft.Build.Tasks.Core__18.0.2.html ├── Microsoft.Build__18.0.2.html ├── Microsoft.NET.Test.Sdk__18.0.1.html ├── Moq__4.20.72.html ├── NLog__6.0.6.html ├── NUnit3TestAdapter__5.2.0.html ├── NUnit__4.4.0.html ├── Newtonsoft.Json__13.0.4.html ├── NuGet.CommandLine__7.0.1.html ├── NuGet.Versioning__7.0.1.html ├── Nuke.Common__10.0.0.html ├── SSH.NET__2025.1.0.html ├── System.Drawing.Common__10.0.0.html ├── System.Resources.Extensions__10.0.0.html ├── Vanara.PInvoke.RstrtMgr__4.2.1.html ├── Vanara.PInvoke.Shell32__4.2.1.html ├── Vanara.PInvoke.User32__4.2.1.html ├── WinformsUI.Docking.license.txt └── chocolatey__2.5.1.txt ├── README.md ├── appveyor-release.yml ├── appveyor.gitversion.yml ├── appveyor.yml ├── chocolatey ├── logexpert.portable.nuspec.template └── tools │ ├── LICENSE.txt.template │ ├── LogExpert.exe.gui │ ├── VERIFICATION.txt.template │ ├── chocolateyinstall.ps1 │ └── chocolateyuninstall.ps1 ├── global.json ├── lib ├── 3rdparty.txt ├── CookComputing.XmlRpcV2.dll ├── MdiTabControl.dll ├── WeifenLuo.WinFormsUI.Docking.dll └── nunit.framework.dll └── src ├── .editorconfig ├── AutoColumnizer ├── AutoColumnizer.cs ├── AutoColumnizer.csproj └── AutoColumnizer.manifest.json ├── ColumnizerLib.UnitTests ├── ColumnTests.cs ├── Extensions │ └── LogLineExtensionsTests.cs └── LogExpert.ColumnizerLib.Tests.csproj ├── ColumnizerLib ├── Column.cs ├── ColumnizedLogLine.cs ├── ColumnizerLib.csproj ├── ColumnizerLib.nuspec ├── Extensions │ └── LogLineExtensions.cs ├── IAutoLogLineColumnizerCallback.cs ├── IAutoLogLineMemoryColumnizerCallback.cs ├── IColumn.cs ├── IColumnMemory.cs ├── IColumnizedLogLine.cs ├── IColumnizedLogLineMemory.cs ├── IColumnizerConfigurator.cs ├── IColumnizerConfiguratorMemory.cs ├── IColumnizerPriority.cs ├── IColumnizerPriorityMemory.cs ├── IContextMenuEntry.cs ├── IFileSystemCallback.cs ├── IFileSystemPlugin.cs ├── IInitColumnizer.cs ├── IInitColumnizerMemory.cs ├── IKeywordAction.cs ├── ILogExpertCallback.cs ├── ILogExpertCallbackMemory.cs ├── ILogExpertLogger.cs ├── ILogExpertPlugin.cs ├── ILogExpertPluginConfigurator.cs ├── ILogFileInfo.cs ├── ILogLine.cs ├── ILogLineColumnizer.cs ├── ILogLineColumnizerCallback.cs ├── ILogLineMemory.cs ├── ILogLineMemoryColumnizer.cs ├── ILogLineMemoryColumnizerCallback.cs ├── ILogLineMemoryXmlColumnizer.cs ├── ILogLineSpan.cs ├── ILogLineSpanColumnizer.cs ├── ILogLineXmlColumnizer.cs ├── IPluginContext.cs ├── IPluginLifecycle.cs ├── IPreProcessColumnizer.cs ├── IPreProcessColumnizerMemory.cs ├── ITextValue.cs ├── ITextValueMemory.cs ├── ITextValueSpan.cs ├── IXmlLogConfiguration.cs ├── LineEntry.cs ├── LineEntryMemory.cs ├── LogLine.cs ├── Priority.cs ├── Resources.Designer.cs ├── Resources.de.resx └── Resources.resx ├── CsvColumnizer ├── CsvColumn.cs ├── CsvColumnizer.cs ├── CsvColumnizer.csproj ├── CsvColumnizer.manifest.json ├── CsvColumnizerConfig.cs ├── CsvColumnizerConfigDlg.Designer.cs ├── CsvColumnizerConfigDlg.cs ├── CsvColumnizerConfigDlg.resx ├── CsvLogLine.cs ├── Resources.Designer.cs ├── Resources.de.resx └── Resources.resx ├── DefaultPlugins ├── DefaultPlugins.csproj ├── DefaultPlugins.manifest.json └── ProcessLauncher.cs ├── Directory.Build.props ├── Directory.Packages.props ├── FlashIconHighlighter ├── FlashIconHighlighter.csproj ├── FlashIconHighlighter.manifest.json ├── FlashIconPlugin.cs └── Win32Stuff.cs ├── GlassfishColumnizer ├── GlassFishLogLine.cs ├── GlassfishColumnizer.cs ├── GlassfishColumnizer.csproj ├── GlassfishColumnizer.manifest.json └── XmlConfig.cs ├── HelpSmith ├── LogExpert.chm ├── LogExpert.hsm ├── LogExpert_files │ ├── Bookmark_comment.gif │ ├── Bookmark_comment_column.gif │ ├── CSV_Columnizer_Config.gif │ ├── CSV_Columnizer_example.gif │ ├── Filter_color.gif │ ├── Filter_contextmenu.gif │ ├── Image(1).bmp │ ├── Image(1).gif │ ├── Image(10).gif │ ├── Image(11).gif │ ├── Image(12).gif │ ├── Image(13).gif │ ├── Image(14).gif │ ├── Image(15).gif │ ├── Image(16).gif │ ├── Image(17).gif │ ├── Image(18).gif │ ├── Image(19).gif │ ├── Image(2).gif │ ├── Image(20).gif │ ├── Image(21).gif │ ├── Image(22).gif │ ├── Image(23).gif │ ├── Image(24).gif │ ├── Image(25).gif │ ├── Image(26).gif │ ├── Image(3).gif │ ├── Image(4).gif │ ├── Image(5).gif │ ├── Image(6).gif │ ├── Image(7).gif │ ├── Image(8).gif │ ├── Image(9).gif │ ├── LogExpert_Helptitle.gif │ ├── LogLover.gif │ ├── Show_bubbles.gif │ ├── Tab_Context_menu.gif │ ├── TimeSpreadView_1.gif │ ├── XMLColumnizer.gif │ ├── XMLColumnizer_Example.gif │ ├── advanced_button_indicator.gif │ ├── bookmarks.gif │ ├── context_menu.gif │ ├── eminus.gif │ ├── eminus_eclipse_prefs.gif │ ├── eminus_settings.gif │ ├── eminus_toolbar.gif │ ├── external_tools.gif │ ├── filter_dirty.gif │ ├── filter_save_list.gif │ ├── highlight_groups.gif │ ├── hilighting.gif │ ├── settings1(1).gif │ ├── settings1(2).gif │ ├── settings1(3).gif │ ├── settings1.gif │ ├── settings2(1).gif │ ├── settings2.gif │ ├── settings2_marker.gif │ ├── settings4(1).gif │ ├── settings4.gif │ ├── settings5(1).gif │ ├── settings5.gif │ ├── settings6(1).gif │ ├── settings6.gif │ ├── settings7(1).gif │ ├── settings7.gif │ ├── settings8.gif │ ├── settings9.gif │ ├── timesync_1.gif │ ├── timesync_2.gif │ └── timesync_3.gif └── screenshots │ ├── Bookmark_comment.gif │ ├── Bookmark_comment.ssd │ ├── Bookmark_comment_column.gif │ ├── Bookmark_comment_column.ssd │ ├── Bookmarks.ssd │ ├── CSV_Columnizer_Config.gif │ ├── CSV_Columnizer_Config.ssd │ ├── CSV_Columnizer_example.gif │ ├── ColumnHeader_Contextmenu.gif │ ├── ColumnHeader_Contextmenu.ssd │ ├── Column_Filter_Example.gif │ ├── Column_Filter_Example.ssd │ ├── Columnizer.ssd │ ├── Columns.ssd │ ├── Content menu.ssd │ ├── Context menu.ssd │ ├── DateTimeControl.ssd │ ├── ExternalTools.ssd │ ├── File not found.ssd │ ├── Filter_Pro.ssd │ ├── Filter_color.gif │ ├── Filter_color.ssd │ ├── Filter_contextmenu.gif │ ├── Filter_contextmenu.ssd │ ├── FollowTail_Indicator.gif │ ├── FollowTail_Indicator.ssd │ ├── Hilighting.ssd │ ├── LEDs.ssd │ ├── Settings_Page1.ssd │ ├── Settings_Page2.ssd │ ├── Settings_Page2_with_marker.ssd │ ├── Settings_Page4.ssd │ ├── Settings_Page5.ssd │ ├── Settings_Page6.ssd │ ├── Settings_Page7.ssd │ ├── Show_bubbles.gif │ ├── Show_bubbles.ssd │ ├── Tab_Context_menu.gif │ ├── Tab_Context_menu.ssd │ ├── TimeSpreadView_1.gif │ ├── TimeSpreadView_1.ssd │ ├── ToolArgsHelp.ssd │ ├── XMLColumnizer.gif │ ├── XMLColumnizer.ssd │ ├── XMLColumnizer_Example.gif │ ├── advanced_button_indicator.gif │ ├── bookmarks.gif │ ├── clf.gif │ ├── columnizer.gif │ ├── columns.gif │ ├── context_menu.gif │ ├── datetime_drag.gif │ ├── default_columnizer.gif │ ├── eminus.gif │ ├── eminus.ssd │ ├── eminus_context_menu.ssd │ ├── eminus_eclipse_prefs.gif │ ├── eminus_eclipse_prefs.ssd │ ├── eminus_settings.gif │ ├── eminus_settings.ssd │ ├── eminus_toolbar.gif │ ├── eminus_toolbar.ssd │ ├── external_tools.gif │ ├── file_not_found.gif │ ├── filter.gif │ ├── filter_dirty.gif │ ├── filter_pro.gif │ ├── filter_save_list.gif │ ├── filter_save_list.ssd │ ├── highlight_groups.gif │ ├── highlight_groups.ssd │ ├── hilighting.gif │ ├── led.gif │ ├── modal_plugin_config.ssd │ ├── scroll_timestamp.gif │ ├── search_dlg.gif │ ├── settings1.gif │ ├── settings2.gif │ ├── settings2_marker.gif │ ├── settings4.gif │ ├── settings5.gif │ ├── settings6.gif │ ├── settings7.gif │ ├── settings8.gif │ ├── settings9.gif │ ├── timeshift_edit.gif │ ├── timeshift_menu.SSD │ ├── timeshift_menu.gif │ ├── timestamp_columnizer.gif │ ├── timesync_1.gif │ ├── timesync_1.ssd │ ├── timesync_2.gif │ ├── timesync_2.ssd │ ├── timesync_3.gif │ ├── timesync_3.ssd │ └── tool_args_help.gif ├── JsonColumnizer ├── ColumnWithName.cs ├── JsonColumn.cs ├── JsonColumnizer.cs ├── JsonColumnizer.csproj └── JsonColumnizer.manifest.json ├── JsonCompactColumnizer ├── JsonCompactColumnizer.cs ├── JsonCompactColumnizer.csproj ├── JsonCompactColumnizer.manifest.json ├── Resources.Designer.cs ├── Resources.de.resx └── Resources.resx ├── Log4jXmlColumnizer ├── Log4JLogLine.cs ├── Log4jColumnEntry.cs ├── Log4jXmlColumnizer.cs ├── Log4jXmlColumnizer.csproj ├── Log4jXmlColumnizer.manifest.json ├── Log4jXmlColumnizerConfig.cs ├── Log4jXmlColumnizerConfigDlg.Designer.cs ├── Log4jXmlColumnizerConfigDlg.cs ├── Log4jXmlColumnizerConfigDlg.resx ├── Resources.Designer.cs ├── Resources.de.resx ├── Resources.resx ├── XmlConfig.cs └── logexpert.ico ├── LogExpert.Benchmarks ├── Directory.Build.props ├── Directory.Build.targets ├── LogExpert.Benchmarks.csproj └── StreamReaderBenchmarks.cs ├── LogExpert.Configuration ├── ConfigManager.cs ├── LogExpert.Configuration.csproj ├── Resources.Designer.cs ├── Resources.de.resx └── Resources.resx ├── LogExpert.Core ├── Callback │ ├── ColumnizerCallback.cs │ └── ColumnizerCallbackMemory.cs ├── Classes │ ├── Attributes │ │ └── JsonColumnizerPropertyAttribute.cs │ ├── Bookmark │ │ └── BookmarkDataProvider.cs │ ├── Columnizer │ │ ├── ClfColumnizer.cs │ │ ├── ColumnizerPicker.cs │ │ ├── SquareBracketColumnizer.cs │ │ ├── TimeFormatDeterminer.cs │ │ └── TimestampColumnizer.cs │ ├── DateTimeParser │ │ ├── DateFormatPartAdjuster.cs │ │ ├── Parser.cs │ │ ├── Section.cs │ │ ├── Token.cs │ │ └── Tokenizer.cs │ ├── FileSystemCallback.cs │ ├── Filter │ │ ├── Filter.cs │ │ ├── FilterCancelHandler.cs │ │ ├── FilterParams.cs │ │ ├── FilterPipe.cs │ │ └── FilterStarter.cs │ ├── Highlight │ │ ├── ActionEntry.cs │ │ ├── HighlightEntry.cs │ │ └── HighlightMatchEntry.cs │ ├── IPC │ │ ├── IpcMessage.cs │ │ ├── IpcMessageType.cs │ │ └── LoadPayload.cs │ ├── JsonConverters │ │ ├── ColumnizerJsonConverter.cs │ │ └── EncodingJsonConverter.cs │ ├── Log │ │ ├── BatchedProgressReporter.cs │ │ ├── LogBuffer.cs │ │ ├── LogBufferCacheEntry.cs │ │ ├── LogStreamReaderBase.cs │ │ ├── LogfileReader.cs │ │ ├── PositionAwareStreamReaderBase.cs │ │ ├── PositionAwareStreamReaderChannel.cs │ │ ├── PositionAwareStreamReaderLegacy.cs │ │ ├── PositionAwareStreamReaderPipeline.cs │ │ ├── PositionAwareStreamReaderSystem.cs │ │ ├── RolloverFilenameBuilder.cs │ │ └── RolloverFilenameHandler.cs │ ├── ObjectClone.cs │ ├── ParamParser.cs │ ├── PatternBlock.cs │ ├── Persister │ │ ├── FilterTabData.cs │ │ ├── PersistenceData.cs │ │ ├── Persister.cs │ │ ├── PersisterXML.cs │ │ ├── ProjectData.cs │ │ ├── ProjectPersister.cs │ │ └── ProjectPersisterXML.cs │ ├── QualityInfo.cs │ ├── SpreadEntry.cs │ ├── SysoutPipe.cs │ ├── UsedComponents.cs │ ├── Util.cs │ └── xml │ │ ├── XmlBlockSplitter.cs │ │ └── XmlLogReader.cs ├── Config │ ├── ColorEntry.cs │ ├── ColumnizerHistoryEntry.cs │ ├── ColumnizerMaskEntry.cs │ ├── ExportImportFlags.cs │ ├── HighlightMaskEntry.cs │ ├── ImportResult.cs │ ├── LoadResult.cs │ ├── MultiFileOption.cs │ ├── Preferences.cs │ ├── RegexHistory.cs │ ├── SessionSaveLocation.cs │ ├── Settings.cs │ ├── SettingsFlags.cs │ └── ToolEntry.cs ├── Entities │ ├── Bookmark.cs │ ├── BookmarkCollection.cs │ ├── BookmarkOverlay.cs │ ├── DebugOptions.cs │ ├── DefaultLogfileColumnizer.cs │ ├── EncodingOptions.cs │ ├── FileViewContext.cs │ ├── HighlightGroup.cs │ ├── LogEventData.cs │ ├── LogFileException.cs │ ├── MultifileOptions.cs │ ├── Range.cs │ ├── ReloadMemento.cs │ ├── RowHeightEntry.cs │ └── SearchParams.cs ├── Enums │ ├── DragOrientations.cs │ ├── ProjectLoadDlgResult.cs │ ├── ReaderType.cs │ └── WindowTypes.cs ├── EventArguments │ ├── BookmarkEventArgs.cs │ ├── ColumnizerEventArgs.cs │ ├── ConfigChangedEventArgs.cs │ ├── ContextMenuPluginEventArgs.cs │ ├── CurrentHighlightGroupChangedEventArgs.cs │ ├── FilterListChangedEventArgs.cs │ ├── GuiStateEventArgs.cs │ ├── LoadFileEventArgs.cs │ ├── OverlayEventArgs.cs │ ├── PatternArgs.cs │ ├── ProgressEventArgs.cs │ ├── SelectLineEventArgs.cs │ ├── StatusEventArgs.cs │ └── SyncModeEventArgs.cs ├── Extensions │ └── IEnumerable.cs ├── Helpers │ └── RegexHelper.cs ├── Interface │ ├── IBackgroundProcessCancelHandler.cs │ ├── IBookmarkData.cs │ ├── IBookmarkView.cs │ ├── IConfigManager.cs │ ├── IFileViewContext.cs │ ├── ILogExpertProxy.cs │ ├── ILogPaintContext.cs │ ├── ILogStreamReader.cs │ ├── ILogStreamReaderMemory.cs │ ├── ILogStreamReaderSpan.cs │ ├── ILogTabWindow.cs │ ├── ILogView.cs │ ├── ILogWindow.cs │ ├── IPipeline.cs │ ├── IPluginRegistry.cs │ ├── ISharedToolWindow.cs │ └── ISpanLineReader.cs ├── LogExpert.Core.csproj ├── Properties │ └── AssemblyInfo.cs └── Structs │ └── ActEntry.cs ├── LogExpert.Persister.Tests ├── LogExpert.Persister.Tests.csproj └── PersisterTests.cs ├── LogExpert.Resources ├── LogExpert.Resources.csproj ├── Resources.Designer.cs ├── Resources.de.Designer.cs ├── Resources.de.resx ├── Resources.resx └── images │ ├── bmp │ ├── LogExpert.bmp │ └── Pro_Filter.bmp │ ├── gif │ ├── LogExpert-Icon.gif │ └── LogLover.gif │ ├── icons │ ├── Icon1.ico │ ├── Icon2.ico │ ├── bubble.ico │ └── logexpert.ico │ └── png │ └── 48 │ ├── Add.png │ ├── ArrowDown.png │ ├── ArrowLeft.png │ ├── ArrowRight.png │ ├── ArrowUp.png │ ├── Arrow_menu_close.png │ ├── Arrow_menu_open.png │ ├── Bookmark_add.png │ ├── Bookmark_added.png │ ├── Bookmark_manager.png │ ├── Bookmark_remove.png │ ├── Bookmarks.png │ ├── Check_circle.png │ ├── Close.png │ ├── Deceased.png │ ├── Delete.png │ ├── Exit.png │ ├── Favorite.png │ ├── File_open.png │ ├── Filter.png │ ├── Folder_open.png │ ├── Restart_alt.png │ ├── Search.png │ ├── Settings.png │ ├── Star.png │ └── bookmark_bubbles.png ├── LogExpert.Tests ├── BufferShiftTest.cs ├── CSVColumnizerTest.cs ├── ColumnizerJsonConverterTests.cs ├── ColumnizerPickerTest.cs ├── ConfigManagerTest.cs ├── Data │ ├── 50 MB UTF16.txt │ ├── 50 MB UTF8.txt │ └── 50 MB.txt ├── DateFormatParserTest.cs ├── Extensions │ └── EnumerableTests.cs ├── Helpers │ └── RegexHelperTests.cs ├── IPC │ ├── ActiveWindowTrackingTests.cs │ ├── LockInstancePriorityTests.cs │ └── OneInstanceIpcTests.cs ├── JSONSaveTest.cs ├── JsonColumnizerTest.cs ├── JsonCompactColumnizerTest.cs ├── LocalFileSystemTest.cs ├── LogExpert.Tests.csproj ├── LogStreamReaderTest.cs ├── LogWindowTest.cs ├── ReaderTest.cs ├── RollingNameTest.cs ├── RolloverHandlerTest.cs ├── RolloverHandlerTestBase.cs ├── SquareBracketColumnizerTest.cs └── TestData │ ├── CsvTest_01.csv │ ├── JsonColumnizerTest_01.txt │ ├── JsonCompactColumnizerTest_01.json │ ├── JsonCompactColumnizerTest_02.json │ ├── JsonCompactColumnizerTest_03.json │ ├── SquareBracketColumnizerTest_01.txt │ ├── SquareBracketColumnizerTest_02.txt │ ├── SquareBracketColumnizerTest_03.txt │ ├── SquareBracketColumnizerTest_04.txt │ ├── SquareBracketColumnizerTest_05.txt │ ├── XmlTest_01.xml │ ├── organizations-1000.csv │ ├── organizations-10000.csv │ └── people-10000.csv ├── LogExpert.UI ├── Controls │ ├── BufferedDataGridView.Designer.cs │ ├── BufferedDataGridView.cs │ ├── ColorComboBox.cs │ ├── DateTimeDragControl.Designer.cs │ ├── DateTimeDragControl.cs │ ├── DateTimeDragControl.resx │ ├── KnobControl.Designer.cs │ ├── KnobControl.cs │ ├── KnobControl.resx │ ├── LogCellEditingControl.cs │ ├── LogGridCell.cs │ ├── LogTabControl.cs │ ├── LogTextColumn.cs │ └── LogWindow │ │ ├── ColumnCache.cs │ │ ├── LogExpertCallback.cs │ │ ├── LogWindow.cs │ │ ├── LogWindow.designer.cs │ │ ├── LogWindow.resx │ │ ├── PatternWindow.Designer.cs │ │ ├── PatternWindow.cs │ │ ├── PatternWindow.resx │ │ ├── RangeFinder.cs │ │ ├── TimeSpreadCalculator.cs │ │ ├── TimeSpreadigControl.Designer.cs │ │ ├── TimeSpreadigControl.cs │ │ ├── TimeSpreadigControl.resx │ │ └── TimeSyncList.cs ├── Dialogs │ ├── AboutBox.Designer.cs │ ├── AboutBox.cs │ ├── AboutBox.resx │ ├── AllowOnlyOneInstanceErrorDialog.Designer.cs │ ├── AllowOnlyOneInstanceErrorDialog.cs │ ├── BookmarkCommentDlg.Designer.cs │ ├── BookmarkCommentDlg.cs │ ├── BookmarkCommentDlg.resx │ ├── BookmarkWindow.Designer.cs │ ├── BookmarkWindow.cs │ ├── BookmarkWindow.resx │ ├── ChooseIconDlg.Designer.cs │ ├── ChooseIconDlg.cs │ ├── ChooseIconDlg.resx │ ├── Eminus │ │ ├── Eminus.cs │ │ ├── EminusConfig.cs │ │ ├── EminusConfigDlg.Designer.cs │ │ ├── EminusConfigDlg.cs │ │ └── EminusConfigDlg.resx │ ├── ExceptionWindow.Designer.cs │ ├── ExceptionWindow.cs │ ├── ExceptionWindow.resx │ ├── FilterColumnChooser.Designer.cs │ ├── FilterColumnChooser.cs │ ├── FilterColumnChooser.resx │ ├── FilterSelectorForm.Designer.cs │ ├── FilterSelectorForm.cs │ ├── FilterSelectorForm.resx │ ├── GotoLineDialog.Designer.cs │ ├── GotoLineDialog.cs │ ├── GotoLineDialog.resx │ ├── HighlightDialog.Designer.cs │ ├── HighlightDialog.cs │ ├── HighlightDialog.resx │ ├── ImportSettingsDialog.Designer.cs │ ├── ImportSettingsDialog.cs │ ├── ImportSettingsDialog.resx │ ├── KeywordActionDlg.Designer.cs │ ├── KeywordActionDlg.cs │ ├── KeywordActionDlg.resx │ ├── LogTabWindow │ │ ├── LogTabWindow.cs │ │ ├── LogTabWindow.designer.cs │ │ └── LogTabWindow.resx │ ├── MultiFileMaskDialog.Designer.cs │ ├── MultiFileMaskDialog.cs │ ├── MultiFileMaskDialog.resx │ ├── MultiLoadRequestDialog.Designer.cs │ ├── MultiLoadRequestDialog.cs │ ├── MultiLoadRequestDialog.resx │ ├── OpenUriDialog.Designer.cs │ ├── OpenUriDialog.cs │ ├── OpenUriDialog.resx │ ├── ParamRequesterDialog.Designer.cs │ ├── ParamRequesterDialog.cs │ ├── ParamRequesterDialog.resx │ ├── PluginHashDialog.Designer.cs │ ├── PluginHashDialog.cs │ ├── PluginHashDialog.resx │ ├── PluginTrustDialog.Designer.cs │ ├── PluginTrustDialog.cs │ ├── PluginTrustDialog.resx │ ├── ProjectLoadDlg.Designer.cs │ ├── ProjectLoadDlg.cs │ ├── ProjectLoadDlg.resx │ ├── RegexHelperDialog.Designer.cs │ ├── RegexHelperDialog.cs │ ├── RegexHelperDialog.resx │ ├── SearchDialog.Designer.cs │ ├── SearchDialog.cs │ ├── SearchDialog.resx │ ├── SearchProgressDialog.Designer.cs │ ├── SearchProgressDialog.cs │ ├── SearchProgressDialog.resx │ ├── SettingsDialog.Designer.cs │ ├── SettingsDialog.cs │ ├── SettingsDialog.resx │ ├── TabRenameDialog.Designer.cs │ ├── TabRenameDialog.cs │ ├── TabRenameDialog.resx │ ├── ToolArgsDialog.Designer.cs │ ├── ToolArgsDialog.cs │ └── ToolArgsDialog.resx ├── Entities │ ├── ArgParser.cs │ ├── PaintHelper.cs │ └── WindowFileEntry.cs ├── Extensions │ ├── BookmarkExporter.cs │ ├── ComboBoxExtensions.cs │ ├── FormExtensions.cs │ ├── LockFinder.cs │ ├── LockFinderException.cs │ ├── LogWindow │ │ ├── AbstractLogTabWindow.cs │ │ └── StaticLogTabWindowData.cs │ ├── NativeMethods.cs │ ├── ResourceHelper.cs │ └── Utils.cs ├── Interface │ └── ILogPaintContextUI.cs └── LogExpert.UI.csproj ├── LogExpert.sln ├── LogExpert ├── Classes │ ├── CommandLine │ │ ├── CmdLine.cs │ │ ├── CmdLineException.cs │ │ ├── CmdLineInt.cs │ │ ├── CmdLineParameter.cs │ │ └── ConsoleCmdLine.cs │ ├── LogExpertApplicationContext.cs │ └── LogExpertProxy.cs ├── Controls │ └── LogTabPage.cs ├── DebugWindow.Designer.cs ├── HighlightThread.cs ├── LogExpert.csproj ├── NLog.config ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ └── app.manifest ├── Start.cmd ├── app.config └── logexpert.ico ├── PluginHashGenerator.Tool ├── PluginHashGenerator.Tool.csproj └── Program.cs ├── PluginRegistry.Tests ├── ArchitecturalTests.cs ├── AssemblyInspectorTests.cs ├── LazyPluginLoaderTests.cs ├── LogExpert.PluginRegistry.Tests.csproj ├── PathTraversalProtectionTests.cs ├── PerformanceTests.cs ├── PluginCacheTests.cs ├── PluginEventBusTests.cs ├── PluginHashCalculatorTests.cs ├── PluginHashVerificationTests.cs ├── PluginIntegrationTests.cs ├── PluginLoadProgressTests.cs ├── PluginManifestTests.cs ├── PluginManifestVersionParsingTests.cs ├── PluginPermissionManagerTests.cs ├── PluginRegistryTests.cs ├── PluginTypeInfoTests.cs └── PluginValidatorTests.cs ├── PluginRegistry ├── AssemblyInspector.cs ├── CacheStatistics.cs ├── DefaultPluginLoader.cs ├── Events │ └── CommonEvents.cs ├── FileSystem │ ├── LocalFileSystem.cs │ └── LogFileInfo.cs ├── Interfaces │ ├── IPluginEventBus.cs │ ├── IPluginLoader.cs │ └── IPluginValidator.cs ├── LazyPluginLoader.cs ├── LazyPluginProxy.cs ├── LogExpert.PluginRegistry.csproj ├── PluginCache.cs ├── PluginContext.cs ├── PluginErrorMessages.cs ├── PluginEventBus.cs ├── PluginHashCalculator.cs ├── PluginHashGenerator.Generated.cs ├── PluginHashGenerator.targets ├── PluginLoadProgressEventArgs.cs ├── PluginLoadStatus.cs ├── PluginLogger.cs ├── PluginManifest.cs ├── PluginPermission.cs ├── PluginPermissions.cs ├── PluginRegistry.cs ├── PluginTypeInfo.cs ├── PluginValidator.cs └── TrustedPluginConfig.cs ├── RegexColumnizer.UnitTests ├── LogExpert.RegexColumnizer.Tests.csproj ├── RegexColumnizerAdvancedParsingTests.cs ├── RegexColumnizerConfigSerializationTests.cs ├── RegexColumnizerErrorHandlingTests.cs ├── RegexColumnizerLoadConfigTests.cs ├── RegexColumnizerTests.cs ├── TestData │ ├── apache-log-config.json │ ├── empty-config.json │ ├── invalid-json.json │ ├── legacy-config.xml │ ├── null-config.json │ └── valid-config.json └── TestLogLine.cs ├── RegexColumnizer ├── RegexColumnizer.cs ├── RegexColumnizer.csproj ├── RegexColumnizer.manifest.json ├── RegexColumnizerConfig.cs ├── RegexColumnizerConfigDialog.Designer.cs ├── RegexColumnizerConfigDialog.cs ├── RegexColumnizerConfigDialog.resx ├── Resources.Designer.cs ├── Resources.de.resx └── Resources.resx ├── SDK ├── API │ └── LogExpert-API.chm ├── Columnizer │ ├── Columnizer.sln │ └── Columnizer │ │ ├── ExampleColumnizer.cs │ │ ├── ExampleColumnizer.csproj │ │ └── WebsphereColumnizer.cs ├── ContextMenu │ ├── ContextMenu.sln │ └── ContextMenu │ │ ├── ColumnizerLib.dll │ │ ├── ContextMenu.csproj │ │ └── PipeExample.cs ├── CsvColumnizer │ ├── ColumnizerLib.dll │ ├── CsvColumnizer.cs │ ├── CsvColumnizer.csproj │ ├── CsvColumnizer.sln │ ├── CsvColumnizerConfigDlg.Designer.cs │ ├── CsvColumnizerConfigDlg.cs │ ├── CsvColumnizerConfigDlg.resx │ └── csvreader │ │ ├── ..svnbridge │ │ ├── LumenWorks.Framework.IO.dll │ │ └── LumenWorks.Framework.IO.pdb │ │ ├── LumenWorks.Framework.IO.XML │ │ ├── LumenWorks.Framework.IO.dll │ │ └── LumenWorks.Framework.IO.pdb ├── HelpSmith │ ├── SDK.chm │ ├── SDK.hsm │ ├── SDK_files │ │ ├── Image(1).jpg │ │ ├── LogExpert_Helptitle.gif │ │ ├── LogExpert_Helptitle_SDK.gif │ │ ├── contextmenu.gif │ │ ├── embedded_config.gif │ │ ├── highlight_dlg.gif │ │ ├── locate(1).gif │ │ ├── locate.gif │ │ └── modal_config.gif │ └── images │ │ ├── LogExpert_Helptitle.gif │ │ ├── LogExpert_Helptitle_SDK.gif │ │ ├── contextmenu.gif │ │ ├── embedded_config.gif │ │ ├── highlight_dlg.gif │ │ ├── locate.gif │ │ └── modal_config.gif ├── Log4jXmlColumnizer │ ├── ColumnizerLib.dll │ ├── Log4jXmlColumnizer.cs │ ├── Log4jXmlColumnizer.csproj │ ├── Log4jXmlColumnizer.sln │ ├── Log4jXmlColumnizerConfigDlg.Designer.cs │ ├── Log4jXmlColumnizerConfigDlg.cs │ ├── Log4jXmlColumnizerConfigDlg.resx │ └── logexpert.ico └── deploy.cmd ├── SftpFileSystem.Resources ├── Resources.Designer.cs ├── Resources.de.resx ├── Resources.resx └── SftpFileSystem.Resources.csproj ├── SftpFileSystemx64 ├── ConfigData.cs ├── ConfigDialog.Designer.cs ├── ConfigDialog.cs ├── ConfigDialog.resx ├── CredentialCache.cs ├── Credentials.cs ├── FailedKeyDialog.Designer.cs ├── FailedKeyDialog.cs ├── FailedKeyDialog.resx ├── KeyType.cs ├── LoginDialog.Designer.cs ├── LoginDialog.cs ├── LoginDialog.resx ├── PrivateKeyPasswordDialog.Designer.cs ├── PrivateKeyPasswordDialog.cs ├── PrivateKeyPasswordDialog.resx ├── SftpFileSystem.cs ├── SftpFileSystem.manifest.json ├── SftpFileSystemx64.csproj └── SftpLogFileInfo.cs ├── SftpFileSystemx86 └── SftpFileSystemx86.csproj ├── Solution Items ├── AssemblyInfo.cs ├── Key.Public.snk ├── Key.snk └── usedComponents.json ├── TestResult.xml ├── docs ├── PLUGIN_DEVELOPMENT_GUIDE.md ├── PLUGIN_HASH_MANAGEMENT.md ├── examples │ └── plugin-manifest-example.json └── performance │ ├── BENCHMARK_SUMMARY.md │ └── PIPELINES_IMPLEMENTATION_STRATEGY.md ├── schemas └── plugin-manifest.schema.json └── setup ├── CodeDependencies.iss ├── ExtraFunctions.iss └── LogExpertInstaller.iss /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/workflows/build_dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/.github/workflows/build_dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/test_dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/.github/workflows/test_dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/.gitignore -------------------------------------------------------------------------------- /Build-DebugPack.ps1: -------------------------------------------------------------------------------- 1 | ./build.ps1 Pack --Configuration Debug -------------------------------------------------------------------------------- /Build-ReleasePack.ps1: -------------------------------------------------------------------------------- 1 | ./build.ps1 Pack --Configuration Release -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/LICENSE -------------------------------------------------------------------------------- /Licenses/CsvHelper__33.1.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/CsvHelper__33.1.0.html -------------------------------------------------------------------------------- /Licenses/DockPanelSuite.ThemeVS2015__3.1.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/DockPanelSuite.ThemeVS2015__3.1.1.html -------------------------------------------------------------------------------- /Licenses/GitVersion.Core__6.5.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/GitVersion.Core__6.5.0.html -------------------------------------------------------------------------------- /Licenses/Microsoft.Build.Tasks.Core__18.0.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/Microsoft.Build.Tasks.Core__18.0.2.html -------------------------------------------------------------------------------- /Licenses/Microsoft.Build__18.0.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/Microsoft.Build__18.0.2.html -------------------------------------------------------------------------------- /Licenses/Microsoft.NET.Test.Sdk__18.0.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/Microsoft.NET.Test.Sdk__18.0.1.html -------------------------------------------------------------------------------- /Licenses/Moq__4.20.72.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/Moq__4.20.72.html -------------------------------------------------------------------------------- /Licenses/NLog__6.0.6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/NLog__6.0.6.html -------------------------------------------------------------------------------- /Licenses/NUnit3TestAdapter__5.2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/NUnit3TestAdapter__5.2.0.html -------------------------------------------------------------------------------- /Licenses/NUnit__4.4.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/NUnit__4.4.0.html -------------------------------------------------------------------------------- /Licenses/Newtonsoft.Json__13.0.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/Newtonsoft.Json__13.0.4.html -------------------------------------------------------------------------------- /Licenses/NuGet.CommandLine__7.0.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/NuGet.CommandLine__7.0.1.html -------------------------------------------------------------------------------- /Licenses/NuGet.Versioning__7.0.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/NuGet.Versioning__7.0.1.html -------------------------------------------------------------------------------- /Licenses/Nuke.Common__10.0.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/Nuke.Common__10.0.0.html -------------------------------------------------------------------------------- /Licenses/SSH.NET__2025.1.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/SSH.NET__2025.1.0.html -------------------------------------------------------------------------------- /Licenses/System.Drawing.Common__10.0.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/System.Drawing.Common__10.0.0.html -------------------------------------------------------------------------------- /Licenses/System.Resources.Extensions__10.0.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/System.Resources.Extensions__10.0.0.html -------------------------------------------------------------------------------- /Licenses/Vanara.PInvoke.RstrtMgr__4.2.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/Vanara.PInvoke.RstrtMgr__4.2.1.html -------------------------------------------------------------------------------- /Licenses/Vanara.PInvoke.Shell32__4.2.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/Vanara.PInvoke.Shell32__4.2.1.html -------------------------------------------------------------------------------- /Licenses/Vanara.PInvoke.User32__4.2.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/Vanara.PInvoke.User32__4.2.1.html -------------------------------------------------------------------------------- /Licenses/WinformsUI.Docking.license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/WinformsUI.Docking.license.txt -------------------------------------------------------------------------------- /Licenses/chocolatey__2.5.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/Licenses/chocolatey__2.5.1.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/README.md -------------------------------------------------------------------------------- /appveyor-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/appveyor-release.yml -------------------------------------------------------------------------------- /appveyor.gitversion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/appveyor.gitversion.yml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/appveyor.yml -------------------------------------------------------------------------------- /chocolatey/logexpert.portable.nuspec.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/chocolatey/logexpert.portable.nuspec.template -------------------------------------------------------------------------------- /chocolatey/tools/LICENSE.txt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/chocolatey/tools/LICENSE.txt.template -------------------------------------------------------------------------------- /chocolatey/tools/LogExpert.exe.gui: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chocolatey/tools/VERIFICATION.txt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/chocolatey/tools/VERIFICATION.txt.template -------------------------------------------------------------------------------- /chocolatey/tools/chocolateyinstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/chocolatey/tools/chocolateyinstall.ps1 -------------------------------------------------------------------------------- /chocolatey/tools/chocolateyuninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/chocolatey/tools/chocolateyuninstall.ps1 -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/global.json -------------------------------------------------------------------------------- /lib/3rdparty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/lib/3rdparty.txt -------------------------------------------------------------------------------- /lib/CookComputing.XmlRpcV2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/lib/CookComputing.XmlRpcV2.dll -------------------------------------------------------------------------------- /lib/MdiTabControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/lib/MdiTabControl.dll -------------------------------------------------------------------------------- /lib/WeifenLuo.WinFormsUI.Docking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/lib/WeifenLuo.WinFormsUI.Docking.dll -------------------------------------------------------------------------------- /lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/lib/nunit.framework.dll -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/AutoColumnizer/AutoColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/AutoColumnizer/AutoColumnizer.cs -------------------------------------------------------------------------------- /src/AutoColumnizer/AutoColumnizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/AutoColumnizer/AutoColumnizer.csproj -------------------------------------------------------------------------------- /src/AutoColumnizer/AutoColumnizer.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/AutoColumnizer/AutoColumnizer.manifest.json -------------------------------------------------------------------------------- /src/ColumnizerLib.UnitTests/ColumnTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib.UnitTests/ColumnTests.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/Column.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/Column.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ColumnizedLogLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ColumnizedLogLine.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ColumnizerLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ColumnizerLib.csproj -------------------------------------------------------------------------------- /src/ColumnizerLib/ColumnizerLib.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ColumnizerLib.nuspec -------------------------------------------------------------------------------- /src/ColumnizerLib/Extensions/LogLineExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/Extensions/LogLineExtensions.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IAutoLogLineColumnizerCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IAutoLogLineColumnizerCallback.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IAutoLogLineMemoryColumnizerCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IAutoLogLineMemoryColumnizerCallback.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IColumn.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IColumnMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IColumnMemory.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IColumnizedLogLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IColumnizedLogLine.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IColumnizedLogLineMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IColumnizedLogLineMemory.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IColumnizerConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IColumnizerConfigurator.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IColumnizerConfiguratorMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IColumnizerConfiguratorMemory.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IColumnizerPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IColumnizerPriority.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IColumnizerPriorityMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IColumnizerPriorityMemory.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IContextMenuEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IContextMenuEntry.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IFileSystemCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IFileSystemCallback.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IFileSystemPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IFileSystemPlugin.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IInitColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IInitColumnizer.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IInitColumnizerMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IInitColumnizerMemory.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IKeywordAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IKeywordAction.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogExpertCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogExpertCallback.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogExpertCallbackMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogExpertCallbackMemory.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogExpertLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogExpertLogger.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogExpertPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogExpertPlugin.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogExpertPluginConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogExpertPluginConfigurator.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogFileInfo.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogLine.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogLineColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogLineColumnizer.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogLineColumnizerCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogLineColumnizerCallback.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogLineMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogLineMemory.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogLineMemoryColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogLineMemoryColumnizer.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogLineMemoryColumnizerCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogLineMemoryColumnizerCallback.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogLineMemoryXmlColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogLineMemoryXmlColumnizer.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogLineSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogLineSpan.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogLineSpanColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogLineSpanColumnizer.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ILogLineXmlColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ILogLineXmlColumnizer.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IPluginContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IPluginContext.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IPluginLifecycle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IPluginLifecycle.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IPreProcessColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IPreProcessColumnizer.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IPreProcessColumnizerMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IPreProcessColumnizerMemory.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ITextValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ITextValue.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ITextValueMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ITextValueMemory.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/ITextValueSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/ITextValueSpan.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/IXmlLogConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/IXmlLogConfiguration.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/LineEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/LineEntry.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/LineEntryMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/LineEntryMemory.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/LogLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/LogLine.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/Priority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/Priority.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/Resources.Designer.cs -------------------------------------------------------------------------------- /src/ColumnizerLib/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/Resources.de.resx -------------------------------------------------------------------------------- /src/ColumnizerLib/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/ColumnizerLib/Resources.resx -------------------------------------------------------------------------------- /src/CsvColumnizer/CsvColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/CsvColumnizer/CsvColumn.cs -------------------------------------------------------------------------------- /src/CsvColumnizer/CsvColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/CsvColumnizer/CsvColumnizer.cs -------------------------------------------------------------------------------- /src/CsvColumnizer/CsvColumnizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/CsvColumnizer/CsvColumnizer.csproj -------------------------------------------------------------------------------- /src/CsvColumnizer/CsvColumnizer.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/CsvColumnizer/CsvColumnizer.manifest.json -------------------------------------------------------------------------------- /src/CsvColumnizer/CsvColumnizerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/CsvColumnizer/CsvColumnizerConfig.cs -------------------------------------------------------------------------------- /src/CsvColumnizer/CsvColumnizerConfigDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/CsvColumnizer/CsvColumnizerConfigDlg.Designer.cs -------------------------------------------------------------------------------- /src/CsvColumnizer/CsvColumnizerConfigDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/CsvColumnizer/CsvColumnizerConfigDlg.cs -------------------------------------------------------------------------------- /src/CsvColumnizer/CsvColumnizerConfigDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/CsvColumnizer/CsvColumnizerConfigDlg.resx -------------------------------------------------------------------------------- /src/CsvColumnizer/CsvLogLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/CsvColumnizer/CsvLogLine.cs -------------------------------------------------------------------------------- /src/CsvColumnizer/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/CsvColumnizer/Resources.Designer.cs -------------------------------------------------------------------------------- /src/CsvColumnizer/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/CsvColumnizer/Resources.de.resx -------------------------------------------------------------------------------- /src/CsvColumnizer/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/CsvColumnizer/Resources.resx -------------------------------------------------------------------------------- /src/DefaultPlugins/DefaultPlugins.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/DefaultPlugins/DefaultPlugins.csproj -------------------------------------------------------------------------------- /src/DefaultPlugins/DefaultPlugins.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/DefaultPlugins/DefaultPlugins.manifest.json -------------------------------------------------------------------------------- /src/DefaultPlugins/ProcessLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/DefaultPlugins/ProcessLauncher.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/FlashIconHighlighter/FlashIconHighlighter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/FlashIconHighlighter/FlashIconHighlighter.csproj -------------------------------------------------------------------------------- /src/FlashIconHighlighter/FlashIconHighlighter.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/FlashIconHighlighter/FlashIconHighlighter.manifest.json -------------------------------------------------------------------------------- /src/FlashIconHighlighter/FlashIconPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/FlashIconHighlighter/FlashIconPlugin.cs -------------------------------------------------------------------------------- /src/FlashIconHighlighter/Win32Stuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/FlashIconHighlighter/Win32Stuff.cs -------------------------------------------------------------------------------- /src/GlassfishColumnizer/GlassFishLogLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/GlassfishColumnizer/GlassFishLogLine.cs -------------------------------------------------------------------------------- /src/GlassfishColumnizer/GlassfishColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/GlassfishColumnizer/GlassfishColumnizer.cs -------------------------------------------------------------------------------- /src/GlassfishColumnizer/GlassfishColumnizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/GlassfishColumnizer/GlassfishColumnizer.csproj -------------------------------------------------------------------------------- /src/GlassfishColumnizer/GlassfishColumnizer.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/GlassfishColumnizer/GlassfishColumnizer.manifest.json -------------------------------------------------------------------------------- /src/GlassfishColumnizer/XmlConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/GlassfishColumnizer/XmlConfig.cs -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert.chm -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert.hsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert.hsm -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Bookmark_comment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Bookmark_comment.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Bookmark_comment_column.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Bookmark_comment_column.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/CSV_Columnizer_Config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/CSV_Columnizer_Config.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/CSV_Columnizer_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/CSV_Columnizer_example.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Filter_color.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Filter_color.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Filter_contextmenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Filter_contextmenu.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(1).bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(1).bmp -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(1).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(1).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(10).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(10).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(11).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(11).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(12).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(12).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(13).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(13).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(14).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(14).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(15).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(15).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(16).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(16).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(17).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(17).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(18).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(18).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(19).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(19).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(2).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(2).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(20).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(20).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(21).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(21).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(22).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(22).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(23).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(23).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(24).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(24).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(25).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(25).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(26).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(26).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(3).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(3).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(4).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(4).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(5).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(5).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(6).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(6).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(7).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(7).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(8).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(8).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Image(9).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Image(9).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/LogExpert_Helptitle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/LogExpert_Helptitle.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/LogLover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/LogLover.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Show_bubbles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Show_bubbles.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/Tab_Context_menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/Tab_Context_menu.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/TimeSpreadView_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/TimeSpreadView_1.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/XMLColumnizer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/XMLColumnizer.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/XMLColumnizer_Example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/XMLColumnizer_Example.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/advanced_button_indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/advanced_button_indicator.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/bookmarks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/bookmarks.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/context_menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/context_menu.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/eminus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/eminus.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/eminus_eclipse_prefs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/eminus_eclipse_prefs.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/eminus_settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/eminus_settings.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/eminus_toolbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/eminus_toolbar.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/external_tools.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/external_tools.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/filter_dirty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/filter_dirty.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/filter_save_list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/filter_save_list.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/highlight_groups.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/highlight_groups.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/hilighting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/hilighting.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings1(1).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings1(1).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings1(2).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings1(2).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings1(3).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings1(3).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings1.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings2(1).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings2(1).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings2.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings2_marker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings2_marker.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings4(1).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings4(1).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings4.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings5(1).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings5(1).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings5.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings6(1).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings6(1).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings6.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings7(1).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings7(1).gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings7.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings8.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/settings9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/settings9.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/timesync_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/timesync_1.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/timesync_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/timesync_2.gif -------------------------------------------------------------------------------- /src/HelpSmith/LogExpert_files/timesync_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/LogExpert_files/timesync_3.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Bookmark_comment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Bookmark_comment.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Bookmark_comment.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Bookmark_comment.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Bookmark_comment_column.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Bookmark_comment_column.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Bookmark_comment_column.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Bookmark_comment_column.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Bookmarks.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Bookmarks.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/CSV_Columnizer_Config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/CSV_Columnizer_Config.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/CSV_Columnizer_Config.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/CSV_Columnizer_Config.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/CSV_Columnizer_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/CSV_Columnizer_example.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/ColumnHeader_Contextmenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/ColumnHeader_Contextmenu.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/ColumnHeader_Contextmenu.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/ColumnHeader_Contextmenu.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Column_Filter_Example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Column_Filter_Example.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Column_Filter_Example.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Column_Filter_Example.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Columnizer.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Columnizer.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Columns.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Columns.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Content menu.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Content menu.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Context menu.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Context menu.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/DateTimeControl.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/DateTimeControl.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/ExternalTools.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/ExternalTools.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/File not found.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/File not found.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Filter_Pro.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Filter_Pro.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Filter_color.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Filter_color.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Filter_color.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Filter_color.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Filter_contextmenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Filter_contextmenu.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Filter_contextmenu.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Filter_contextmenu.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/FollowTail_Indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/FollowTail_Indicator.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/FollowTail_Indicator.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/FollowTail_Indicator.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Hilighting.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Hilighting.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/LEDs.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/LEDs.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Settings_Page1.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Settings_Page1.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Settings_Page2.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Settings_Page2.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Settings_Page2_with_marker.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Settings_Page2_with_marker.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Settings_Page4.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Settings_Page4.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Settings_Page5.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Settings_Page5.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Settings_Page6.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Settings_Page6.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Settings_Page7.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Settings_Page7.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Show_bubbles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Show_bubbles.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Show_bubbles.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Show_bubbles.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Tab_Context_menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Tab_Context_menu.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/Tab_Context_menu.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/Tab_Context_menu.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/TimeSpreadView_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/TimeSpreadView_1.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/TimeSpreadView_1.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/TimeSpreadView_1.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/ToolArgsHelp.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/ToolArgsHelp.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/XMLColumnizer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/XMLColumnizer.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/XMLColumnizer.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/XMLColumnizer.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/XMLColumnizer_Example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/XMLColumnizer_Example.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/advanced_button_indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/advanced_button_indicator.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/bookmarks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/bookmarks.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/clf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/clf.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/columnizer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/columnizer.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/columns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/columns.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/context_menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/context_menu.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/datetime_drag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/datetime_drag.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/default_columnizer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/default_columnizer.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/eminus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/eminus.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/eminus.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/eminus.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/eminus_context_menu.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/eminus_context_menu.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/eminus_eclipse_prefs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/eminus_eclipse_prefs.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/eminus_eclipse_prefs.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/eminus_eclipse_prefs.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/eminus_settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/eminus_settings.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/eminus_settings.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/eminus_settings.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/eminus_toolbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/eminus_toolbar.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/eminus_toolbar.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/eminus_toolbar.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/external_tools.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/external_tools.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/file_not_found.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/file_not_found.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/filter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/filter.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/filter_dirty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/filter_dirty.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/filter_pro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/filter_pro.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/filter_save_list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/filter_save_list.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/filter_save_list.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/filter_save_list.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/highlight_groups.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/highlight_groups.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/highlight_groups.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/highlight_groups.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/hilighting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/hilighting.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/led.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/led.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/modal_plugin_config.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/modal_plugin_config.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/scroll_timestamp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/scroll_timestamp.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/search_dlg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/search_dlg.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/settings1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/settings1.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/settings2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/settings2.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/settings2_marker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/settings2_marker.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/settings4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/settings4.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/settings5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/settings5.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/settings6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/settings6.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/settings7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/settings7.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/settings8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/settings8.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/settings9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/settings9.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/timeshift_edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/timeshift_edit.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/timeshift_menu.SSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/timeshift_menu.SSD -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/timeshift_menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/timeshift_menu.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/timestamp_columnizer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/timestamp_columnizer.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/timesync_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/timesync_1.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/timesync_1.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/timesync_1.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/timesync_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/timesync_2.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/timesync_2.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/timesync_2.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/timesync_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/timesync_3.gif -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/timesync_3.ssd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/timesync_3.ssd -------------------------------------------------------------------------------- /src/HelpSmith/screenshots/tool_args_help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/HelpSmith/screenshots/tool_args_help.gif -------------------------------------------------------------------------------- /src/JsonColumnizer/ColumnWithName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/JsonColumnizer/ColumnWithName.cs -------------------------------------------------------------------------------- /src/JsonColumnizer/JsonColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/JsonColumnizer/JsonColumn.cs -------------------------------------------------------------------------------- /src/JsonColumnizer/JsonColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/JsonColumnizer/JsonColumnizer.cs -------------------------------------------------------------------------------- /src/JsonColumnizer/JsonColumnizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/JsonColumnizer/JsonColumnizer.csproj -------------------------------------------------------------------------------- /src/JsonColumnizer/JsonColumnizer.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/JsonColumnizer/JsonColumnizer.manifest.json -------------------------------------------------------------------------------- /src/JsonCompactColumnizer/JsonCompactColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/JsonCompactColumnizer/JsonCompactColumnizer.cs -------------------------------------------------------------------------------- /src/JsonCompactColumnizer/JsonCompactColumnizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/JsonCompactColumnizer/JsonCompactColumnizer.csproj -------------------------------------------------------------------------------- /src/JsonCompactColumnizer/JsonCompactColumnizer.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/JsonCompactColumnizer/JsonCompactColumnizer.manifest.json -------------------------------------------------------------------------------- /src/JsonCompactColumnizer/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/JsonCompactColumnizer/Resources.Designer.cs -------------------------------------------------------------------------------- /src/JsonCompactColumnizer/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/JsonCompactColumnizer/Resources.de.resx -------------------------------------------------------------------------------- /src/JsonCompactColumnizer/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/JsonCompactColumnizer/Resources.resx -------------------------------------------------------------------------------- /src/Log4jXmlColumnizer/Log4JLogLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Log4jXmlColumnizer/Log4JLogLine.cs -------------------------------------------------------------------------------- /src/Log4jXmlColumnizer/Log4jColumnEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Log4jXmlColumnizer/Log4jColumnEntry.cs -------------------------------------------------------------------------------- /src/Log4jXmlColumnizer/Log4jXmlColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Log4jXmlColumnizer/Log4jXmlColumnizer.cs -------------------------------------------------------------------------------- /src/Log4jXmlColumnizer/Log4jXmlColumnizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Log4jXmlColumnizer/Log4jXmlColumnizer.csproj -------------------------------------------------------------------------------- /src/Log4jXmlColumnizer/Log4jXmlColumnizer.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Log4jXmlColumnizer/Log4jXmlColumnizer.manifest.json -------------------------------------------------------------------------------- /src/Log4jXmlColumnizer/Log4jXmlColumnizerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Log4jXmlColumnizer/Log4jXmlColumnizerConfig.cs -------------------------------------------------------------------------------- /src/Log4jXmlColumnizer/Log4jXmlColumnizerConfigDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Log4jXmlColumnizer/Log4jXmlColumnizerConfigDlg.cs -------------------------------------------------------------------------------- /src/Log4jXmlColumnizer/Log4jXmlColumnizerConfigDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Log4jXmlColumnizer/Log4jXmlColumnizerConfigDlg.resx -------------------------------------------------------------------------------- /src/Log4jXmlColumnizer/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Log4jXmlColumnizer/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Log4jXmlColumnizer/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Log4jXmlColumnizer/Resources.de.resx -------------------------------------------------------------------------------- /src/Log4jXmlColumnizer/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Log4jXmlColumnizer/Resources.resx -------------------------------------------------------------------------------- /src/Log4jXmlColumnizer/XmlConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Log4jXmlColumnizer/XmlConfig.cs -------------------------------------------------------------------------------- /src/Log4jXmlColumnizer/logexpert.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Log4jXmlColumnizer/logexpert.ico -------------------------------------------------------------------------------- /src/LogExpert.Benchmarks/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Benchmarks/Directory.Build.props -------------------------------------------------------------------------------- /src/LogExpert.Benchmarks/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Benchmarks/Directory.Build.targets -------------------------------------------------------------------------------- /src/LogExpert.Benchmarks/LogExpert.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Benchmarks/LogExpert.Benchmarks.csproj -------------------------------------------------------------------------------- /src/LogExpert.Benchmarks/StreamReaderBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Benchmarks/StreamReaderBenchmarks.cs -------------------------------------------------------------------------------- /src/LogExpert.Configuration/ConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Configuration/ConfigManager.cs -------------------------------------------------------------------------------- /src/LogExpert.Configuration/LogExpert.Configuration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Configuration/LogExpert.Configuration.csproj -------------------------------------------------------------------------------- /src/LogExpert.Configuration/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Configuration/Resources.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.Configuration/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Configuration/Resources.de.resx -------------------------------------------------------------------------------- /src/LogExpert.Configuration/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Configuration/Resources.resx -------------------------------------------------------------------------------- /src/LogExpert.Core/Callback/ColumnizerCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Callback/ColumnizerCallback.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Callback/ColumnizerCallbackMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Callback/ColumnizerCallbackMemory.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Columnizer/ClfColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Columnizer/ClfColumnizer.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Columnizer/ColumnizerPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Columnizer/ColumnizerPicker.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/DateTimeParser/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/DateTimeParser/Parser.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/DateTimeParser/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/DateTimeParser/Section.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/DateTimeParser/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/DateTimeParser/Token.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/DateTimeParser/Tokenizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/DateTimeParser/Tokenizer.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/FileSystemCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/FileSystemCallback.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Filter/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Filter/Filter.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Filter/FilterCancelHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Filter/FilterCancelHandler.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Filter/FilterParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Filter/FilterParams.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Filter/FilterPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Filter/FilterPipe.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Filter/FilterStarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Filter/FilterStarter.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Highlight/ActionEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Highlight/ActionEntry.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Highlight/HighlightEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Highlight/HighlightEntry.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/IPC/IpcMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/IPC/IpcMessage.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/IPC/IpcMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/IPC/IpcMessageType.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/IPC/LoadPayload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/IPC/LoadPayload.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Log/BatchedProgressReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Log/BatchedProgressReporter.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Log/LogBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Log/LogBuffer.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Log/LogBufferCacheEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Log/LogBufferCacheEntry.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Log/LogStreamReaderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Log/LogStreamReaderBase.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Log/LogfileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Log/LogfileReader.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Log/RolloverFilenameBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Log/RolloverFilenameBuilder.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Log/RolloverFilenameHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Log/RolloverFilenameHandler.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/ObjectClone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/ObjectClone.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/ParamParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/ParamParser.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/PatternBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/PatternBlock.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Persister/FilterTabData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Persister/FilterTabData.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Persister/PersistenceData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Persister/PersistenceData.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Persister/Persister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Persister/Persister.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Persister/PersisterXML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Persister/PersisterXML.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Persister/ProjectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Persister/ProjectData.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Persister/ProjectPersister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Persister/ProjectPersister.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/QualityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/QualityInfo.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/SpreadEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/SpreadEntry.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/SysoutPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/SysoutPipe.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/UsedComponents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/UsedComponents.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/Util.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/xml/XmlBlockSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/xml/XmlBlockSplitter.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Classes/xml/XmlLogReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Classes/xml/XmlLogReader.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Config/ColorEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Config/ColorEntry.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Config/ColumnizerHistoryEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Config/ColumnizerHistoryEntry.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Config/ColumnizerMaskEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Config/ColumnizerMaskEntry.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Config/ExportImportFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Config/ExportImportFlags.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Config/HighlightMaskEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Config/HighlightMaskEntry.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Config/ImportResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Config/ImportResult.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Config/LoadResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Config/LoadResult.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Config/MultiFileOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Config/MultiFileOption.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Config/Preferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Config/Preferences.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Config/RegexHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Config/RegexHistory.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Config/SessionSaveLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Config/SessionSaveLocation.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Config/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Config/Settings.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Config/SettingsFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Config/SettingsFlags.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Config/ToolEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Config/ToolEntry.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Entities/Bookmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Entities/Bookmark.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Entities/BookmarkCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Entities/BookmarkCollection.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Entities/BookmarkOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Entities/BookmarkOverlay.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Entities/DebugOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Entities/DebugOptions.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Entities/DefaultLogfileColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Entities/DefaultLogfileColumnizer.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Entities/EncodingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Entities/EncodingOptions.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Entities/FileViewContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Entities/FileViewContext.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Entities/HighlightGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Entities/HighlightGroup.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Entities/LogEventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Entities/LogEventData.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Entities/LogFileException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Entities/LogFileException.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Entities/MultifileOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Entities/MultifileOptions.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Entities/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Entities/Range.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Entities/ReloadMemento.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Entities/ReloadMemento.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Entities/RowHeightEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Entities/RowHeightEntry.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Entities/SearchParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Entities/SearchParams.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Enums/DragOrientations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Enums/DragOrientations.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Enums/ProjectLoadDlgResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Enums/ProjectLoadDlgResult.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Enums/ReaderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Enums/ReaderType.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Enums/WindowTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Enums/WindowTypes.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/EventArguments/BookmarkEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/EventArguments/BookmarkEventArgs.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/EventArguments/ColumnizerEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/EventArguments/ColumnizerEventArgs.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/EventArguments/GuiStateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/EventArguments/GuiStateEventArgs.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/EventArguments/LoadFileEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/EventArguments/LoadFileEventArgs.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/EventArguments/OverlayEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/EventArguments/OverlayEventArgs.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/EventArguments/PatternArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/EventArguments/PatternArgs.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/EventArguments/ProgressEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/EventArguments/ProgressEventArgs.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/EventArguments/SelectLineEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/EventArguments/SelectLineEventArgs.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/EventArguments/StatusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/EventArguments/StatusEventArgs.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/EventArguments/SyncModeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/EventArguments/SyncModeEventArgs.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Extensions/IEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Extensions/IEnumerable.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Helpers/RegexHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Helpers/RegexHelper.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/IBookmarkData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/IBookmarkData.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/IBookmarkView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/IBookmarkView.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/IConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/IConfigManager.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/IFileViewContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/IFileViewContext.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/ILogExpertProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/ILogExpertProxy.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/ILogPaintContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/ILogPaintContext.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/ILogStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/ILogStreamReader.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/ILogStreamReaderMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/ILogStreamReaderMemory.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/ILogStreamReaderSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/ILogStreamReaderSpan.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/ILogTabWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/ILogTabWindow.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/ILogView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/ILogView.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/ILogWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/ILogWindow.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/IPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/IPipeline.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/IPluginRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/IPluginRegistry.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/ISharedToolWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/ISharedToolWindow.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Interface/ISpanLineReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Interface/ISpanLineReader.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/LogExpert.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/LogExpert.Core.csproj -------------------------------------------------------------------------------- /src/LogExpert.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LogExpert.Core/Structs/ActEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Core/Structs/ActEntry.cs -------------------------------------------------------------------------------- /src/LogExpert.Persister.Tests/PersisterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Persister.Tests/PersisterTests.cs -------------------------------------------------------------------------------- /src/LogExpert.Resources/LogExpert.Resources.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/LogExpert.Resources.csproj -------------------------------------------------------------------------------- /src/LogExpert.Resources/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/Resources.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.Resources/Resources.de.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/Resources.de.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.Resources/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/Resources.de.resx -------------------------------------------------------------------------------- /src/LogExpert.Resources/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/Resources.resx -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/bmp/LogExpert.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/bmp/LogExpert.bmp -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/bmp/Pro_Filter.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/bmp/Pro_Filter.bmp -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/gif/LogExpert-Icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/gif/LogExpert-Icon.gif -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/gif/LogLover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/gif/LogLover.gif -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/icons/Icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/icons/Icon1.ico -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/icons/Icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/icons/Icon2.ico -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/icons/bubble.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/icons/bubble.ico -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/icons/logexpert.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/icons/logexpert.ico -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Add.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/ArrowDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/ArrowDown.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/ArrowLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/ArrowLeft.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/ArrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/ArrowRight.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/ArrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/ArrowUp.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Arrow_menu_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Arrow_menu_close.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Arrow_menu_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Arrow_menu_open.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Bookmark_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Bookmark_add.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Bookmark_added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Bookmark_added.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Bookmark_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Bookmark_manager.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Bookmark_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Bookmark_remove.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Bookmarks.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Check_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Check_circle.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Close.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Deceased.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Deceased.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Delete.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Exit.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Favorite.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/File_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/File_open.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Filter.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Folder_open.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Restart_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Restart_alt.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Search.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Settings.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/Star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/Star.png -------------------------------------------------------------------------------- /src/LogExpert.Resources/images/png/48/bookmark_bubbles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Resources/images/png/48/bookmark_bubbles.png -------------------------------------------------------------------------------- /src/LogExpert.Tests/BufferShiftTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/BufferShiftTest.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/CSVColumnizerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/CSVColumnizerTest.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/ColumnizerJsonConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/ColumnizerJsonConverterTests.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/ColumnizerPickerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/ColumnizerPickerTest.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/ConfigManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/ConfigManagerTest.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/Data/50 MB UTF16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/Data/50 MB UTF16.txt -------------------------------------------------------------------------------- /src/LogExpert.Tests/Data/50 MB UTF8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/Data/50 MB UTF8.txt -------------------------------------------------------------------------------- /src/LogExpert.Tests/Data/50 MB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/Data/50 MB.txt -------------------------------------------------------------------------------- /src/LogExpert.Tests/DateFormatParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/DateFormatParserTest.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/Extensions/EnumerableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/Extensions/EnumerableTests.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/Helpers/RegexHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/Helpers/RegexHelperTests.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/IPC/ActiveWindowTrackingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/IPC/ActiveWindowTrackingTests.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/IPC/LockInstancePriorityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/IPC/LockInstancePriorityTests.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/IPC/OneInstanceIpcTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/IPC/OneInstanceIpcTests.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/JSONSaveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/JSONSaveTest.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/JsonColumnizerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/JsonColumnizerTest.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/JsonCompactColumnizerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/JsonCompactColumnizerTest.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/LocalFileSystemTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/LocalFileSystemTest.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/LogExpert.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/LogExpert.Tests.csproj -------------------------------------------------------------------------------- /src/LogExpert.Tests/LogStreamReaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/LogStreamReaderTest.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/LogWindowTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/LogWindowTest.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/ReaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/ReaderTest.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/RollingNameTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/RollingNameTest.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/RolloverHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/RolloverHandlerTest.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/RolloverHandlerTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/RolloverHandlerTestBase.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/SquareBracketColumnizerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/SquareBracketColumnizerTest.cs -------------------------------------------------------------------------------- /src/LogExpert.Tests/TestData/CsvTest_01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/TestData/CsvTest_01.csv -------------------------------------------------------------------------------- /src/LogExpert.Tests/TestData/JsonColumnizerTest_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/TestData/JsonColumnizerTest_01.txt -------------------------------------------------------------------------------- /src/LogExpert.Tests/TestData/JsonCompactColumnizerTest_01.json: -------------------------------------------------------------------------------- 1 | {"@t":"2019-02-14T03:55:41.1300445Z","@m":"Test"} -------------------------------------------------------------------------------- /src/LogExpert.Tests/TestData/JsonCompactColumnizerTest_02.json: -------------------------------------------------------------------------------- 1 | {"time":"2019-02-14T03:55:41.1300445Z","@m":"Test"} -------------------------------------------------------------------------------- /src/LogExpert.Tests/TestData/JsonCompactColumnizerTest_03.json: -------------------------------------------------------------------------------- 1 | {"time":"2019-02-14T03:55:41.1300445Z","m":"Test"} -------------------------------------------------------------------------------- /src/LogExpert.Tests/TestData/XmlTest_01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/TestData/XmlTest_01.xml -------------------------------------------------------------------------------- /src/LogExpert.Tests/TestData/organizations-1000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/TestData/organizations-1000.csv -------------------------------------------------------------------------------- /src/LogExpert.Tests/TestData/organizations-10000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/TestData/organizations-10000.csv -------------------------------------------------------------------------------- /src/LogExpert.Tests/TestData/people-10000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.Tests/TestData/people-10000.csv -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/BufferedDataGridView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/BufferedDataGridView.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/BufferedDataGridView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/BufferedDataGridView.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/ColorComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/ColorComboBox.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/DateTimeDragControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/DateTimeDragControl.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/DateTimeDragControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/DateTimeDragControl.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/DateTimeDragControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/DateTimeDragControl.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/KnobControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/KnobControl.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/KnobControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/KnobControl.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/KnobControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/KnobControl.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/LogCellEditingControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/LogCellEditingControl.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/LogGridCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/LogGridCell.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/LogTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/LogTabControl.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/LogTextColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/LogTextColumn.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/LogWindow/ColumnCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/LogWindow/ColumnCache.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/LogWindow/LogExpertCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/LogWindow/LogExpertCallback.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/LogWindow/LogWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/LogWindow/LogWindow.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/LogWindow/LogWindow.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/LogWindow/LogWindow.designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/LogWindow/LogWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/LogWindow/LogWindow.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/LogWindow/PatternWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/LogWindow/PatternWindow.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/LogWindow/PatternWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/LogWindow/PatternWindow.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/LogWindow/RangeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/LogWindow/RangeFinder.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/LogWindow/TimeSpreadigControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/LogWindow/TimeSpreadigControl.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Controls/LogWindow/TimeSyncList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Controls/LogWindow/TimeSyncList.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/AboutBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/AboutBox.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/AboutBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/AboutBox.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/AboutBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/AboutBox.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/BookmarkCommentDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/BookmarkCommentDlg.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/BookmarkCommentDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/BookmarkCommentDlg.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/BookmarkCommentDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/BookmarkCommentDlg.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/BookmarkWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/BookmarkWindow.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/BookmarkWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/BookmarkWindow.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/BookmarkWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/BookmarkWindow.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ChooseIconDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ChooseIconDlg.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ChooseIconDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ChooseIconDlg.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ChooseIconDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ChooseIconDlg.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/Eminus/Eminus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/Eminus/Eminus.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/Eminus/EminusConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/Eminus/EminusConfig.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/Eminus/EminusConfigDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/Eminus/EminusConfigDlg.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/Eminus/EminusConfigDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/Eminus/EminusConfigDlg.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ExceptionWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ExceptionWindow.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ExceptionWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ExceptionWindow.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ExceptionWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ExceptionWindow.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/FilterColumnChooser.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/FilterColumnChooser.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/FilterColumnChooser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/FilterColumnChooser.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/FilterColumnChooser.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/FilterColumnChooser.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/FilterSelectorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/FilterSelectorForm.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/FilterSelectorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/FilterSelectorForm.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/FilterSelectorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/FilterSelectorForm.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/GotoLineDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/GotoLineDialog.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/GotoLineDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/GotoLineDialog.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/GotoLineDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/GotoLineDialog.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/HighlightDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/HighlightDialog.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/HighlightDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/HighlightDialog.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/HighlightDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/HighlightDialog.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ImportSettingsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ImportSettingsDialog.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ImportSettingsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ImportSettingsDialog.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ImportSettingsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ImportSettingsDialog.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/KeywordActionDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/KeywordActionDlg.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/KeywordActionDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/KeywordActionDlg.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/KeywordActionDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/KeywordActionDlg.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/LogTabWindow/LogTabWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/LogTabWindow/LogTabWindow.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/LogTabWindow/LogTabWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/LogTabWindow/LogTabWindow.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/MultiFileMaskDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/MultiFileMaskDialog.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/MultiFileMaskDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/MultiFileMaskDialog.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/MultiFileMaskDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/MultiFileMaskDialog.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/MultiLoadRequestDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/MultiLoadRequestDialog.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/MultiLoadRequestDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/MultiLoadRequestDialog.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/OpenUriDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/OpenUriDialog.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/OpenUriDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/OpenUriDialog.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/OpenUriDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/OpenUriDialog.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ParamRequesterDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ParamRequesterDialog.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ParamRequesterDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ParamRequesterDialog.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ParamRequesterDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ParamRequesterDialog.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/PluginHashDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/PluginHashDialog.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/PluginHashDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/PluginHashDialog.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/PluginHashDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/PluginHashDialog.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/PluginTrustDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/PluginTrustDialog.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/PluginTrustDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/PluginTrustDialog.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/PluginTrustDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/PluginTrustDialog.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ProjectLoadDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ProjectLoadDlg.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ProjectLoadDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ProjectLoadDlg.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ProjectLoadDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ProjectLoadDlg.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/RegexHelperDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/RegexHelperDialog.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/RegexHelperDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/RegexHelperDialog.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/RegexHelperDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/RegexHelperDialog.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/SearchDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/SearchDialog.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/SearchDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/SearchDialog.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/SearchDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/SearchDialog.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/SearchProgressDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/SearchProgressDialog.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/SearchProgressDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/SearchProgressDialog.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/SearchProgressDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/SearchProgressDialog.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/SettingsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/SettingsDialog.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/SettingsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/SettingsDialog.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/SettingsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/SettingsDialog.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/TabRenameDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/TabRenameDialog.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/TabRenameDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/TabRenameDialog.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/TabRenameDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/TabRenameDialog.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ToolArgsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ToolArgsDialog.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ToolArgsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ToolArgsDialog.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Dialogs/ToolArgsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Dialogs/ToolArgsDialog.resx -------------------------------------------------------------------------------- /src/LogExpert.UI/Entities/ArgParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Entities/ArgParser.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Entities/PaintHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Entities/PaintHelper.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Entities/WindowFileEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Entities/WindowFileEntry.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Extensions/BookmarkExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Extensions/BookmarkExporter.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Extensions/ComboBoxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Extensions/ComboBoxExtensions.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Extensions/FormExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Extensions/FormExtensions.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Extensions/LockFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Extensions/LockFinder.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Extensions/LockFinderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Extensions/LockFinderException.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Extensions/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Extensions/NativeMethods.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Extensions/ResourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Extensions/ResourceHelper.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Extensions/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Extensions/Utils.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/Interface/ILogPaintContextUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/Interface/ILogPaintContextUI.cs -------------------------------------------------------------------------------- /src/LogExpert.UI/LogExpert.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.UI/LogExpert.UI.csproj -------------------------------------------------------------------------------- /src/LogExpert.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert.sln -------------------------------------------------------------------------------- /src/LogExpert/Classes/CommandLine/CmdLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/Classes/CommandLine/CmdLine.cs -------------------------------------------------------------------------------- /src/LogExpert/Classes/CommandLine/CmdLineException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/Classes/CommandLine/CmdLineException.cs -------------------------------------------------------------------------------- /src/LogExpert/Classes/CommandLine/CmdLineInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/Classes/CommandLine/CmdLineInt.cs -------------------------------------------------------------------------------- /src/LogExpert/Classes/CommandLine/CmdLineParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/Classes/CommandLine/CmdLineParameter.cs -------------------------------------------------------------------------------- /src/LogExpert/Classes/CommandLine/ConsoleCmdLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/Classes/CommandLine/ConsoleCmdLine.cs -------------------------------------------------------------------------------- /src/LogExpert/Classes/LogExpertApplicationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/Classes/LogExpertApplicationContext.cs -------------------------------------------------------------------------------- /src/LogExpert/Classes/LogExpertProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/Classes/LogExpertProxy.cs -------------------------------------------------------------------------------- /src/LogExpert/Controls/LogTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/Controls/LogTabPage.cs -------------------------------------------------------------------------------- /src/LogExpert/DebugWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/DebugWindow.Designer.cs -------------------------------------------------------------------------------- /src/LogExpert/HighlightThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/HighlightThread.cs -------------------------------------------------------------------------------- /src/LogExpert/LogExpert.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/LogExpert.csproj -------------------------------------------------------------------------------- /src/LogExpert/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/NLog.config -------------------------------------------------------------------------------- /src/LogExpert/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/Program.cs -------------------------------------------------------------------------------- /src/LogExpert/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LogExpert/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/Properties/app.manifest -------------------------------------------------------------------------------- /src/LogExpert/Start.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/Start.cmd -------------------------------------------------------------------------------- /src/LogExpert/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/app.config -------------------------------------------------------------------------------- /src/LogExpert/logexpert.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/LogExpert/logexpert.ico -------------------------------------------------------------------------------- /src/PluginHashGenerator.Tool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginHashGenerator.Tool/Program.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/ArchitecturalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/ArchitecturalTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/AssemblyInspectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/AssemblyInspectorTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/LazyPluginLoaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/LazyPluginLoaderTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/PathTraversalProtectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/PathTraversalProtectionTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/PerformanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/PerformanceTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/PluginCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/PluginCacheTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/PluginEventBusTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/PluginEventBusTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/PluginHashCalculatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/PluginHashCalculatorTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/PluginHashVerificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/PluginHashVerificationTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/PluginIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/PluginIntegrationTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/PluginLoadProgressTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/PluginLoadProgressTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/PluginManifestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/PluginManifestTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/PluginPermissionManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/PluginPermissionManagerTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/PluginRegistryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/PluginRegistryTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/PluginTypeInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/PluginTypeInfoTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry.Tests/PluginValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry.Tests/PluginValidatorTests.cs -------------------------------------------------------------------------------- /src/PluginRegistry/AssemblyInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/AssemblyInspector.cs -------------------------------------------------------------------------------- /src/PluginRegistry/CacheStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/CacheStatistics.cs -------------------------------------------------------------------------------- /src/PluginRegistry/DefaultPluginLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/DefaultPluginLoader.cs -------------------------------------------------------------------------------- /src/PluginRegistry/Events/CommonEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/Events/CommonEvents.cs -------------------------------------------------------------------------------- /src/PluginRegistry/FileSystem/LocalFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/FileSystem/LocalFileSystem.cs -------------------------------------------------------------------------------- /src/PluginRegistry/FileSystem/LogFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/FileSystem/LogFileInfo.cs -------------------------------------------------------------------------------- /src/PluginRegistry/Interfaces/IPluginEventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/Interfaces/IPluginEventBus.cs -------------------------------------------------------------------------------- /src/PluginRegistry/Interfaces/IPluginLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/Interfaces/IPluginLoader.cs -------------------------------------------------------------------------------- /src/PluginRegistry/Interfaces/IPluginValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/Interfaces/IPluginValidator.cs -------------------------------------------------------------------------------- /src/PluginRegistry/LazyPluginLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/LazyPluginLoader.cs -------------------------------------------------------------------------------- /src/PluginRegistry/LazyPluginProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/LazyPluginProxy.cs -------------------------------------------------------------------------------- /src/PluginRegistry/LogExpert.PluginRegistry.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/LogExpert.PluginRegistry.csproj -------------------------------------------------------------------------------- /src/PluginRegistry/PluginCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginCache.cs -------------------------------------------------------------------------------- /src/PluginRegistry/PluginContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginContext.cs -------------------------------------------------------------------------------- /src/PluginRegistry/PluginErrorMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginErrorMessages.cs -------------------------------------------------------------------------------- /src/PluginRegistry/PluginEventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginEventBus.cs -------------------------------------------------------------------------------- /src/PluginRegistry/PluginHashCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginHashCalculator.cs -------------------------------------------------------------------------------- /src/PluginRegistry/PluginHashGenerator.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginHashGenerator.Generated.cs -------------------------------------------------------------------------------- /src/PluginRegistry/PluginHashGenerator.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginHashGenerator.targets -------------------------------------------------------------------------------- /src/PluginRegistry/PluginLoadProgressEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginLoadProgressEventArgs.cs -------------------------------------------------------------------------------- /src/PluginRegistry/PluginLoadStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginLoadStatus.cs -------------------------------------------------------------------------------- /src/PluginRegistry/PluginLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginLogger.cs -------------------------------------------------------------------------------- /src/PluginRegistry/PluginManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginManifest.cs -------------------------------------------------------------------------------- /src/PluginRegistry/PluginPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginPermission.cs -------------------------------------------------------------------------------- /src/PluginRegistry/PluginPermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginPermissions.cs -------------------------------------------------------------------------------- /src/PluginRegistry/PluginRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginRegistry.cs -------------------------------------------------------------------------------- /src/PluginRegistry/PluginTypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginTypeInfo.cs -------------------------------------------------------------------------------- /src/PluginRegistry/PluginValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/PluginValidator.cs -------------------------------------------------------------------------------- /src/PluginRegistry/TrustedPluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/PluginRegistry/TrustedPluginConfig.cs -------------------------------------------------------------------------------- /src/RegexColumnizer.UnitTests/RegexColumnizerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/RegexColumnizer.UnitTests/RegexColumnizerTests.cs -------------------------------------------------------------------------------- /src/RegexColumnizer.UnitTests/TestData/empty-config.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/RegexColumnizer.UnitTests/TestData/invalid-json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/RegexColumnizer.UnitTests/TestData/invalid-json.json -------------------------------------------------------------------------------- /src/RegexColumnizer.UnitTests/TestData/legacy-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/RegexColumnizer.UnitTests/TestData/legacy-config.xml -------------------------------------------------------------------------------- /src/RegexColumnizer.UnitTests/TestData/null-config.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /src/RegexColumnizer.UnitTests/TestData/valid-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/RegexColumnizer.UnitTests/TestData/valid-config.json -------------------------------------------------------------------------------- /src/RegexColumnizer.UnitTests/TestLogLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/RegexColumnizer.UnitTests/TestLogLine.cs -------------------------------------------------------------------------------- /src/RegexColumnizer/RegexColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/RegexColumnizer/RegexColumnizer.cs -------------------------------------------------------------------------------- /src/RegexColumnizer/RegexColumnizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/RegexColumnizer/RegexColumnizer.csproj -------------------------------------------------------------------------------- /src/RegexColumnizer/RegexColumnizer.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/RegexColumnizer/RegexColumnizer.manifest.json -------------------------------------------------------------------------------- /src/RegexColumnizer/RegexColumnizerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/RegexColumnizer/RegexColumnizerConfig.cs -------------------------------------------------------------------------------- /src/RegexColumnizer/RegexColumnizerConfigDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/RegexColumnizer/RegexColumnizerConfigDialog.cs -------------------------------------------------------------------------------- /src/RegexColumnizer/RegexColumnizerConfigDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/RegexColumnizer/RegexColumnizerConfigDialog.resx -------------------------------------------------------------------------------- /src/RegexColumnizer/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/RegexColumnizer/Resources.Designer.cs -------------------------------------------------------------------------------- /src/RegexColumnizer/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/RegexColumnizer/Resources.de.resx -------------------------------------------------------------------------------- /src/RegexColumnizer/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/RegexColumnizer/Resources.resx -------------------------------------------------------------------------------- /src/SDK/API/LogExpert-API.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/API/LogExpert-API.chm -------------------------------------------------------------------------------- /src/SDK/Columnizer/Columnizer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/Columnizer/Columnizer.sln -------------------------------------------------------------------------------- /src/SDK/Columnizer/Columnizer/ExampleColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/Columnizer/Columnizer/ExampleColumnizer.cs -------------------------------------------------------------------------------- /src/SDK/Columnizer/Columnizer/ExampleColumnizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/Columnizer/Columnizer/ExampleColumnizer.csproj -------------------------------------------------------------------------------- /src/SDK/Columnizer/Columnizer/WebsphereColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/Columnizer/Columnizer/WebsphereColumnizer.cs -------------------------------------------------------------------------------- /src/SDK/ContextMenu/ContextMenu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/ContextMenu/ContextMenu.sln -------------------------------------------------------------------------------- /src/SDK/ContextMenu/ContextMenu/ColumnizerLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/ContextMenu/ContextMenu/ColumnizerLib.dll -------------------------------------------------------------------------------- /src/SDK/ContextMenu/ContextMenu/ContextMenu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/ContextMenu/ContextMenu/ContextMenu.csproj -------------------------------------------------------------------------------- /src/SDK/ContextMenu/ContextMenu/PipeExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/ContextMenu/ContextMenu/PipeExample.cs -------------------------------------------------------------------------------- /src/SDK/CsvColumnizer/ColumnizerLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/CsvColumnizer/ColumnizerLib.dll -------------------------------------------------------------------------------- /src/SDK/CsvColumnizer/CsvColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/CsvColumnizer/CsvColumnizer.cs -------------------------------------------------------------------------------- /src/SDK/CsvColumnizer/CsvColumnizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/CsvColumnizer/CsvColumnizer.csproj -------------------------------------------------------------------------------- /src/SDK/CsvColumnizer/CsvColumnizer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/CsvColumnizer/CsvColumnizer.sln -------------------------------------------------------------------------------- /src/SDK/CsvColumnizer/CsvColumnizerConfigDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/CsvColumnizer/CsvColumnizerConfigDlg.Designer.cs -------------------------------------------------------------------------------- /src/SDK/CsvColumnizer/CsvColumnizerConfigDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/CsvColumnizer/CsvColumnizerConfigDlg.cs -------------------------------------------------------------------------------- /src/SDK/CsvColumnizer/CsvColumnizerConfigDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/CsvColumnizer/CsvColumnizerConfigDlg.resx -------------------------------------------------------------------------------- /src/SDK/HelpSmith/SDK.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/SDK.chm -------------------------------------------------------------------------------- /src/SDK/HelpSmith/SDK.hsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/SDK.hsm -------------------------------------------------------------------------------- /src/SDK/HelpSmith/SDK_files/Image(1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/SDK_files/Image(1).jpg -------------------------------------------------------------------------------- /src/SDK/HelpSmith/SDK_files/LogExpert_Helptitle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/SDK_files/LogExpert_Helptitle.gif -------------------------------------------------------------------------------- /src/SDK/HelpSmith/SDK_files/LogExpert_Helptitle_SDK.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/SDK_files/LogExpert_Helptitle_SDK.gif -------------------------------------------------------------------------------- /src/SDK/HelpSmith/SDK_files/contextmenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/SDK_files/contextmenu.gif -------------------------------------------------------------------------------- /src/SDK/HelpSmith/SDK_files/embedded_config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/SDK_files/embedded_config.gif -------------------------------------------------------------------------------- /src/SDK/HelpSmith/SDK_files/highlight_dlg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/SDK_files/highlight_dlg.gif -------------------------------------------------------------------------------- /src/SDK/HelpSmith/SDK_files/locate(1).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/SDK_files/locate(1).gif -------------------------------------------------------------------------------- /src/SDK/HelpSmith/SDK_files/locate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/SDK_files/locate.gif -------------------------------------------------------------------------------- /src/SDK/HelpSmith/SDK_files/modal_config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/SDK_files/modal_config.gif -------------------------------------------------------------------------------- /src/SDK/HelpSmith/images/LogExpert_Helptitle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/images/LogExpert_Helptitle.gif -------------------------------------------------------------------------------- /src/SDK/HelpSmith/images/LogExpert_Helptitle_SDK.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/images/LogExpert_Helptitle_SDK.gif -------------------------------------------------------------------------------- /src/SDK/HelpSmith/images/contextmenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/images/contextmenu.gif -------------------------------------------------------------------------------- /src/SDK/HelpSmith/images/embedded_config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/images/embedded_config.gif -------------------------------------------------------------------------------- /src/SDK/HelpSmith/images/highlight_dlg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/images/highlight_dlg.gif -------------------------------------------------------------------------------- /src/SDK/HelpSmith/images/locate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/images/locate.gif -------------------------------------------------------------------------------- /src/SDK/HelpSmith/images/modal_config.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/HelpSmith/images/modal_config.gif -------------------------------------------------------------------------------- /src/SDK/Log4jXmlColumnizer/ColumnizerLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/Log4jXmlColumnizer/ColumnizerLib.dll -------------------------------------------------------------------------------- /src/SDK/Log4jXmlColumnizer/Log4jXmlColumnizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/Log4jXmlColumnizer/Log4jXmlColumnizer.cs -------------------------------------------------------------------------------- /src/SDK/Log4jXmlColumnizer/Log4jXmlColumnizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/Log4jXmlColumnizer/Log4jXmlColumnizer.csproj -------------------------------------------------------------------------------- /src/SDK/Log4jXmlColumnizer/Log4jXmlColumnizer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/Log4jXmlColumnizer/Log4jXmlColumnizer.sln -------------------------------------------------------------------------------- /src/SDK/Log4jXmlColumnizer/Log4jXmlColumnizerConfigDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/Log4jXmlColumnizer/Log4jXmlColumnizerConfigDlg.cs -------------------------------------------------------------------------------- /src/SDK/Log4jXmlColumnizer/logexpert.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/Log4jXmlColumnizer/logexpert.ico -------------------------------------------------------------------------------- /src/SDK/deploy.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SDK/deploy.cmd -------------------------------------------------------------------------------- /src/SftpFileSystem.Resources/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystem.Resources/Resources.Designer.cs -------------------------------------------------------------------------------- /src/SftpFileSystem.Resources/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystem.Resources/Resources.de.resx -------------------------------------------------------------------------------- /src/SftpFileSystem.Resources/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystem.Resources/Resources.resx -------------------------------------------------------------------------------- /src/SftpFileSystemx64/ConfigData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/ConfigData.cs -------------------------------------------------------------------------------- /src/SftpFileSystemx64/ConfigDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/ConfigDialog.Designer.cs -------------------------------------------------------------------------------- /src/SftpFileSystemx64/ConfigDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/ConfigDialog.cs -------------------------------------------------------------------------------- /src/SftpFileSystemx64/ConfigDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/ConfigDialog.resx -------------------------------------------------------------------------------- /src/SftpFileSystemx64/CredentialCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/CredentialCache.cs -------------------------------------------------------------------------------- /src/SftpFileSystemx64/Credentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/Credentials.cs -------------------------------------------------------------------------------- /src/SftpFileSystemx64/FailedKeyDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/FailedKeyDialog.Designer.cs -------------------------------------------------------------------------------- /src/SftpFileSystemx64/FailedKeyDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/FailedKeyDialog.cs -------------------------------------------------------------------------------- /src/SftpFileSystemx64/FailedKeyDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/FailedKeyDialog.resx -------------------------------------------------------------------------------- /src/SftpFileSystemx64/KeyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/KeyType.cs -------------------------------------------------------------------------------- /src/SftpFileSystemx64/LoginDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/LoginDialog.Designer.cs -------------------------------------------------------------------------------- /src/SftpFileSystemx64/LoginDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/LoginDialog.cs -------------------------------------------------------------------------------- /src/SftpFileSystemx64/LoginDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/LoginDialog.resx -------------------------------------------------------------------------------- /src/SftpFileSystemx64/PrivateKeyPasswordDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/PrivateKeyPasswordDialog.Designer.cs -------------------------------------------------------------------------------- /src/SftpFileSystemx64/PrivateKeyPasswordDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/PrivateKeyPasswordDialog.cs -------------------------------------------------------------------------------- /src/SftpFileSystemx64/PrivateKeyPasswordDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/PrivateKeyPasswordDialog.resx -------------------------------------------------------------------------------- /src/SftpFileSystemx64/SftpFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/SftpFileSystem.cs -------------------------------------------------------------------------------- /src/SftpFileSystemx64/SftpFileSystem.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/SftpFileSystem.manifest.json -------------------------------------------------------------------------------- /src/SftpFileSystemx64/SftpFileSystemx64.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/SftpFileSystemx64.csproj -------------------------------------------------------------------------------- /src/SftpFileSystemx64/SftpLogFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx64/SftpLogFileInfo.cs -------------------------------------------------------------------------------- /src/SftpFileSystemx86/SftpFileSystemx86.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/SftpFileSystemx86/SftpFileSystemx86.csproj -------------------------------------------------------------------------------- /src/Solution Items/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Solution Items/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Solution Items/Key.Public.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Solution Items/Key.Public.snk -------------------------------------------------------------------------------- /src/Solution Items/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Solution Items/Key.snk -------------------------------------------------------------------------------- /src/Solution Items/usedComponents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/Solution Items/usedComponents.json -------------------------------------------------------------------------------- /src/TestResult.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/TestResult.xml -------------------------------------------------------------------------------- /src/docs/PLUGIN_DEVELOPMENT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/docs/PLUGIN_DEVELOPMENT_GUIDE.md -------------------------------------------------------------------------------- /src/docs/PLUGIN_HASH_MANAGEMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/docs/PLUGIN_HASH_MANAGEMENT.md -------------------------------------------------------------------------------- /src/docs/examples/plugin-manifest-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/docs/examples/plugin-manifest-example.json -------------------------------------------------------------------------------- /src/docs/performance/BENCHMARK_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/docs/performance/BENCHMARK_SUMMARY.md -------------------------------------------------------------------------------- /src/docs/performance/PIPELINES_IMPLEMENTATION_STRATEGY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/docs/performance/PIPELINES_IMPLEMENTATION_STRATEGY.md -------------------------------------------------------------------------------- /src/schemas/plugin-manifest.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/schemas/plugin-manifest.schema.json -------------------------------------------------------------------------------- /src/setup/CodeDependencies.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/setup/CodeDependencies.iss -------------------------------------------------------------------------------- /src/setup/ExtraFunctions.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/setup/ExtraFunctions.iss -------------------------------------------------------------------------------- /src/setup/LogExpertInstaller.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogExperts/LogExpert/HEAD/src/setup/LogExpertInstaller.iss --------------------------------------------------------------------------------