├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── Build ├── AdvancedLogViewer.msbuild ├── BuildRelease.bat ├── Definitions │ ├── Portable.txt │ └── UpdatedAppDescription.xml ├── Installer │ ├── Product.wxs │ ├── SimpleUI.wxs │ └── wix │ │ ├── LICENSE.TXT │ │ ├── LuxTasks.dll │ │ ├── Microsoft.Deployment.Compression.Cab.dll │ │ ├── Microsoft.Deployment.Compression.dll │ │ ├── Microsoft.Deployment.Resources.dll │ │ ├── Microsoft.Deployment.WindowsInstaller.Package.dll │ │ ├── Microsoft.Deployment.WindowsInstaller.dll │ │ ├── ThmViewer.exe │ │ ├── WixBalExtension.dll │ │ ├── WixComPlusExtension.dll │ │ ├── WixCop.exe │ │ ├── WixDependencyExtension.dll │ │ ├── WixDifxAppExtension.dll │ │ ├── WixDirectXExtension.dll │ │ ├── WixFirewallExtension.dll │ │ ├── WixGamingExtension.dll │ │ ├── WixHttpExtension.dll │ │ ├── WixIIsExtension.dll │ │ ├── WixLuxExtension.dll │ │ ├── WixMsmqExtension.dll │ │ ├── WixNetFxExtension.dll │ │ ├── WixPSExtension.dll │ │ ├── WixSqlExtension.dll │ │ ├── WixTagExtension.dll │ │ ├── WixTasks.dll │ │ ├── WixUIExtension.dll │ │ ├── WixUtilExtension.dll │ │ ├── WixVSExtension.MSBuild12.dll │ │ ├── WixVSExtension.MSBuild14.dll │ │ ├── WixVSExtension.dll │ │ ├── candle.exe │ │ ├── candle.exe.config │ │ ├── darice.cub │ │ ├── dark.exe │ │ ├── dark.exe.config │ │ ├── difxapp_x64.wixlib │ │ ├── difxapp_x86.wixlib │ │ ├── heat.exe │ │ ├── heat.exe.config │ │ ├── insignia.exe │ │ ├── insignia.exe.config │ │ ├── light.exe │ │ ├── light.exe.config │ │ ├── lit.exe │ │ ├── lit.exe.config │ │ ├── lux.exe │ │ ├── lux.exe.config │ │ ├── lux.targets │ │ ├── melt.exe │ │ ├── melt.exe.config │ │ ├── mergemod.cub │ │ ├── mergemod.dll │ │ ├── mspatchc.dll │ │ ├── nit.exe │ │ ├── nit.exe.config │ │ ├── pyro.exe │ │ ├── pyro.exe.config │ │ ├── retina.exe │ │ ├── retina.exe.config │ │ ├── shine.exe │ │ ├── shine.exe.config │ │ ├── smoke.exe │ │ ├── smoke.exe.config │ │ ├── torch.exe │ │ ├── torch.exe.config │ │ ├── wconsole.dll │ │ ├── winterop.dll │ │ ├── wix.dll │ │ ├── wix.targets │ │ ├── wix200x.targets │ │ └── wix2010.targets ├── Tasks │ ├── ScarfSail.MSBuild.Tasks.dll │ └── ScarfSail.MSBuild.Tasks │ │ ├── DeleteFolder.cs │ │ ├── GenerateHistoryMdFromHistoryXml.cs │ │ ├── GenerateWebUpdateXmlFromHistoryXml.cs │ │ ├── GetAssemblyVersion.cs │ │ ├── GetLatestFile.cs │ │ ├── ScarfSail.MSBuild.Tasks.csproj │ │ ├── ScarfSail.MSBuild.Tasks.sln │ │ └── UpdateReadmeMdFromHistoryXml.cs └── Utils │ └── 7-Zip │ ├── 7-zip.chm │ ├── 7-zip.dll │ ├── 7z.dll │ ├── 7z.exe │ ├── 7z.sfx │ ├── 7zCon.sfx │ ├── 7zFM.exe │ ├── 7zG.exe │ ├── Archive.exe │ ├── History.txt │ ├── Lang │ ├── af.txt │ ├── ar.txt │ ├── ast.txt │ ├── az.txt │ ├── ba.txt │ ├── be.txt │ ├── bg.txt │ ├── bn.txt │ ├── br.txt │ ├── ca.txt │ ├── cs.txt │ ├── cy.txt │ ├── da.txt │ ├── de.txt │ ├── el.txt │ ├── en.ttt │ ├── eo.txt │ ├── es.txt │ ├── et.txt │ ├── eu.txt │ ├── ext.txt │ ├── fa.txt │ ├── fi.txt │ ├── fr.txt │ ├── fur.txt │ ├── fy.txt │ ├── gl.txt │ ├── gu.txt │ ├── he.txt │ ├── hi.txt │ ├── hr.txt │ ├── hu.txt │ ├── hy.txt │ ├── id.txt │ ├── io.txt │ ├── is.txt │ ├── it.txt │ ├── ja.txt │ ├── ka.txt │ ├── kk.txt │ ├── ko.txt │ ├── ku-ckb.txt │ ├── ku.txt │ ├── lt.txt │ ├── lv.txt │ ├── mk.txt │ ├── mn.txt │ ├── mr.txt │ ├── ms.txt │ ├── nb.txt │ ├── ne.txt │ ├── nl.txt │ ├── nn.txt │ ├── pa-in.txt │ ├── pl.txt │ ├── ps.txt │ ├── pt-br.txt │ ├── pt.txt │ ├── ro.txt │ ├── ru.txt │ ├── sa.txt │ ├── si.txt │ ├── sk.txt │ ├── sl.txt │ ├── sq.txt │ ├── sr-spc.txt │ ├── sr-spl.txt │ ├── sv.txt │ ├── ta.txt │ ├── th.txt │ ├── tr.txt │ ├── tt.txt │ ├── ug.txt │ ├── uk.txt │ ├── uz.txt │ ├── va.txt │ ├── vi.txt │ ├── zh-cn.txt │ └── zh-tw.txt │ ├── License.txt │ ├── Uninstall.exe │ ├── descript.ion │ ├── readme.txt │ └── test │ ├── AdvancedLogViewer.Common.dll │ ├── AdvancedLogViewer.exe │ ├── AdvancedLogViewer.exe.config │ ├── Data │ ├── ParserPatterns.def │ └── SystemLogAdjusters.xml │ ├── History.xml │ ├── Scarfsail.Common.dll │ ├── Scarfsail.Logging.dll │ ├── Scarfsail.SoftwareUpdates.dll │ ├── XDMessaging.dll │ └── log4net.dll ├── Directory.Build.props ├── Directory.Build.targets ├── README.md ├── Release ├── AdvancedLogViewer.xml ├── History.md ├── History.xml └── bin │ ├── AdvancedLogViewer_2.3.4.msi │ ├── AdvancedLogViewer_2.4.1.msi │ ├── AdvancedLogViewer_2.5.1.msi │ ├── AdvancedLogViewer_2.5.3.msi │ ├── AdvancedLogViewer_2.5.4.msi │ ├── AdvancedLogViewer_2.5.5.msi │ ├── AdvancedLogViewer_2.6.1.msi │ ├── AdvancedLogViewer_3.0.1.msi │ ├── AdvancedLogViewer_3.0.2.msi │ ├── AdvancedLogViewer_3.1.1.msi │ ├── AdvancedLogViewer_3.1.2.msi │ ├── AdvancedLogViewer_3.1.3.msi │ ├── AdvancedLogViewer_3.2.1.msi │ ├── AdvancedLogViewer_3.2.2.msi │ ├── AdvancedLogViewer_3.2.3.msi │ ├── AdvancedLogViewer_3.2.4.msi │ ├── AdvancedLogViewer_4.0.1.msi │ ├── AdvancedLogViewer_5.0.0.msi │ ├── AdvancedLogViewer_5.0.0.zip │ ├── AdvancedLogViewer_5.0.0_Update.exe │ ├── AdvancedLogViewer_5.0.1.msi │ ├── AdvancedLogViewer_5.0.1.zip │ ├── AdvancedLogViewer_5.0.1_Update.exe │ ├── AdvancedLogViewer_5.0.2.msi │ ├── AdvancedLogViewer_5.0.2.zip │ ├── AdvancedLogViewer_5.0.2_Update.exe │ ├── AdvancedLogViewer_5.1.1.msi │ ├── AdvancedLogViewer_5.1.1.zip │ ├── AdvancedLogViewer_5.1.1_Update.exe │ ├── AdvancedLogViewer_5.2.1.msi │ ├── AdvancedLogViewer_5.2.1.zip │ ├── AdvancedLogViewer_5.2.1_Update.exe │ ├── AdvancedLogViewer_5.3.1.msi │ ├── AdvancedLogViewer_5.3.1.zip │ ├── AdvancedLogViewer_5.3.1_Update.exe │ ├── AdvancedLogViewer_5.4.1.msi │ ├── AdvancedLogViewer_5.4.1.zip │ ├── AdvancedLogViewer_5.4.1_Update.exe │ ├── AdvancedLogViewer_5.4.2.msi │ ├── AdvancedLogViewer_5.4.2.zip │ ├── AdvancedLogViewer_5.4.2_Update.exe │ ├── AdvancedLogViewer_5.4.3.msi │ ├── AdvancedLogViewer_5.4.3.zip │ ├── AdvancedLogViewer_5.4.3_Update.exe │ ├── AdvancedLogViewer_5.4.4.msi │ ├── AdvancedLogViewer_5.4.4.zip │ ├── AdvancedLogViewer_5.4.4_Update.exe │ ├── AdvancedLogViewer_5.5.1.msi │ ├── AdvancedLogViewer_5.5.1.zip │ ├── AdvancedLogViewer_5.5.1_Update.exe │ ├── AdvancedLogViewer_5.6.1.msi │ ├── AdvancedLogViewer_5.6.1.zip │ ├── AdvancedLogViewer_5.6.1_Update.exe │ ├── AdvancedLogViewer_5.6.2.msi │ ├── AdvancedLogViewer_5.6.2.zip │ ├── AdvancedLogViewer_5.6.2_Update.exe │ ├── AdvancedLogViewer_5.6.3.msi │ ├── AdvancedLogViewer_5.6.3.zip │ ├── AdvancedLogViewer_5.6.3_Update.exe │ ├── AdvancedLogViewer_5.7.1.msi │ ├── AdvancedLogViewer_5.7.1.zip │ ├── AdvancedLogViewer_5.7.1_Update.exe │ ├── AdvancedLogViewer_6.0.1.msi │ ├── AdvancedLogViewer_6.0.1.zip │ ├── AdvancedLogViewer_6.0.1_Update.exe │ ├── AdvancedLogViewer_6.0.2.msi │ ├── AdvancedLogViewer_6.0.2.zip │ ├── AdvancedLogViewer_6.0.2_Update.exe │ ├── AdvancedLogViewer_6.1.1.msi │ ├── AdvancedLogViewer_6.1.1.zip │ ├── AdvancedLogViewer_6.1.1_Update.exe │ ├── AdvancedLogViewer_6.1.2.msi │ ├── AdvancedLogViewer_6.1.2.zip │ ├── AdvancedLogViewer_6.1.2_Update.exe │ ├── AdvancedLogViewer_6.2.1.msi │ ├── AdvancedLogViewer_6.2.1.zip │ ├── AdvancedLogViewer_6.2.1_Update.exe │ ├── AdvancedLogViewer_6.2.2.msi │ ├── AdvancedLogViewer_6.2.2.zip │ ├── AdvancedLogViewer_6.2.2_Update.exe │ ├── AdvancedLogViewer_6.5.2.msi │ ├── AdvancedLogViewer_6.5.2.zip │ ├── AdvancedLogViewer_6.5.2_Update.exe │ ├── AdvancedLogViewer_7.0.1.msi │ ├── AdvancedLogViewer_7.0.1.zip │ ├── AdvancedLogViewer_7.0.1_Update.exe │ ├── AdvancedLogViewer_7.0.2.msi │ ├── AdvancedLogViewer_7.0.2.zip │ ├── AdvancedLogViewer_7.0.2_Update.exe │ ├── AdvancedLogViewer_7.5.1.msi │ ├── AdvancedLogViewer_7.5.1.zip │ ├── AdvancedLogViewer_7.5.1_Update.exe │ ├── AdvancedLogViewer_7.5.2.msi │ ├── AdvancedLogViewer_7.5.2.zip │ ├── AdvancedLogViewer_7.5.2_Update.exe │ ├── AdvancedLogViewer_7.5.3.msi │ ├── AdvancedLogViewer_7.5.3.zip │ ├── AdvancedLogViewer_7.5.3_Update.exe │ ├── AdvancedLogViewer_7.5.4.msi │ ├── AdvancedLogViewer_7.5.4.zip │ ├── AdvancedLogViewer_7.5.4_Update.exe │ ├── AdvancedLogViewer_7.6.0.msi │ ├── AdvancedLogViewer_7.6.0.zip │ ├── AdvancedLogViewer_7.6.0_Update.exe │ ├── AdvancedLogViewer_8.0.2.msi │ ├── AdvancedLogViewer_8.0.2.zip │ ├── AdvancedLogViewer_8.0.2_Update.exe │ ├── AdvancedLogViewer_8.1.0.msi │ ├── AdvancedLogViewer_8.1.0.zip │ ├── AdvancedLogViewer_8.1.0_Update.exe │ └── AdvancedLogViewer_update_portable.txt ├── Src ├── .gitignore ├── .vscode │ └── launch.json ├── 3rdParty │ ├── Scarfsail │ │ ├── Common │ │ │ ├── BL │ │ │ │ ├── ApplicationHistoryXml2Html.cs │ │ │ │ ├── FileAssociation.cs │ │ │ │ ├── IniFile.cs │ │ │ │ ├── KeyValueCache.cs │ │ │ │ ├── PluginEngine.cs │ │ │ │ └── XmlSerializable.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Scarfsail.Common.csproj │ │ │ ├── Scarfsail.Common.csproj.user │ │ │ ├── UI │ │ │ │ ├── ApplicationHistoryDlg.Designer.cs │ │ │ │ ├── ApplicationHistoryDlg.cs │ │ │ │ ├── ApplicationHistoryDlg.resx │ │ │ │ ├── Controls │ │ │ │ │ ├── ColorPicker.cs │ │ │ │ │ ├── DateTimeEdit.Designer.cs │ │ │ │ │ ├── DateTimeEdit.cs │ │ │ │ │ ├── DateTimeEdit.resx │ │ │ │ │ ├── EditableListView.Designer.cs │ │ │ │ │ ├── EditableListView.cs │ │ │ │ │ ├── EditableListView.resx │ │ │ │ │ ├── MarkerPanel.Designer.cs │ │ │ │ │ ├── MarkerPanel.cs │ │ │ │ │ ├── MarkerPanel.resx │ │ │ │ │ ├── NativeTabControl.cs │ │ │ │ │ ├── TimeLinePanel.Designer.cs │ │ │ │ │ ├── TimeLinePanel.cs │ │ │ │ │ └── TimeLinePanel.resx │ │ │ │ ├── CustomMessageBox.Designer.cs │ │ │ │ ├── CustomMessageBox.cs │ │ │ │ ├── CustomMessageBox.resx │ │ │ │ ├── DrawBackgroundImage.cs │ │ │ │ ├── InputBox.Designer.cs │ │ │ │ ├── InputBox.cs │ │ │ │ ├── InputBox.resx │ │ │ │ ├── ListOfShortcutsDlg.Designer.cs │ │ │ │ ├── ListOfShortcutsDlg.cs │ │ │ │ ├── ListOfShortcutsDlg.resx │ │ │ │ ├── Shortcuts │ │ │ │ │ ├── ShortcutItem.cs │ │ │ │ │ └── ShortcutManager.cs │ │ │ │ └── SyntaxHighlighter │ │ │ │ │ ├── AutoCompleteForm.cs │ │ │ │ │ ├── AutoCompleteForm.resx │ │ │ │ │ ├── Fontdictionary.cs │ │ │ │ │ ├── HighlightDescriptor.cs │ │ │ │ │ ├── HighlightDescriptorCollection.cs │ │ │ │ │ ├── SeperaratorCollection.cs │ │ │ │ │ ├── SyntaxHighlightingTextBox.cs │ │ │ │ │ └── Win32.cs │ │ │ └── Utils │ │ │ │ ├── ExternalTextDiff.cs │ │ │ │ ├── StringIgnoreCaseEqualityComparer.cs │ │ │ │ └── WinFormHelper.cs │ │ ├── Logging │ │ │ ├── Extensions │ │ │ │ ├── LogSeverity.cs │ │ │ │ └── PerformanceLogger.cs │ │ │ ├── Log.cs │ │ │ ├── ReadMe.txt │ │ │ ├── Scarfsail.Logging.csproj │ │ │ └── Scarfsail.Logging.csproj.user │ │ └── SoftwareUpdates │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Scarfsail.SoftwareUpdates.csproj │ │ │ ├── Scarfsail.SoftwareUpdates.csproj.user │ │ │ ├── SoftwareUpdatesClient.cs │ │ │ ├── SoftwareUpdatesClientSettings.cs │ │ │ ├── UI │ │ │ ├── AssemblyInfo.cs │ │ │ ├── DownloadFileProgressDialog.Designer.cs │ │ │ ├── DownloadFileProgressDialog.cs │ │ │ ├── DownloadFileProgressDialog.resx │ │ │ ├── NewVersionFoundDialog.Designer.cs │ │ │ ├── NewVersionFoundDialog.cs │ │ │ └── NewVersionFoundDialog.resx │ │ │ ├── UpdateDefinitionXml.cs │ │ │ ├── UpdateEventArgs.cs │ │ │ ├── UpdateFoundEventArgs.cs │ │ │ ├── UpdateType.cs │ │ │ └── UpdatesHistoryInfo.cs │ ├── SqlLinq │ │ ├── Bin │ │ │ ├── ILMerge.exe │ │ │ ├── QueryAnythingMerged.dll │ │ │ ├── QueryAnythingMerged.pdb │ │ │ └── merge.bat │ │ ├── GoldParser.dll │ │ ├── Kackman.RuntimeTypeLoader.dll │ │ ├── LinqStatistics.UnitTests │ │ │ ├── CovarianceTests.cs │ │ │ ├── LinqStatistics.UnitTests.csproj │ │ │ ├── MedianTests.cs │ │ │ ├── ModeTests.cs │ │ │ ├── RangeTests.cs │ │ │ ├── StandardDeviationTests.cs │ │ │ ├── TestData.cs │ │ │ └── VarianceTests.cs │ │ ├── LinqStatistics │ │ │ ├── EnumerableStats.cs │ │ │ ├── EnumerableStatsCovariance.cs │ │ │ ├── EnumerableStatsMedian.cs │ │ │ ├── EnumerableStatsMode.cs │ │ │ ├── EnumerableStatsPearson.cs │ │ │ ├── EnumerableStatsRange.cs │ │ │ ├── EnumerableStatsStandardDeviation.cs │ │ │ ├── EnumerableStatsStandardDeviationP.cs │ │ │ ├── EnumerableStatsVariance.cs │ │ │ ├── EnumerableStatsVarianceP.cs │ │ │ └── LinqStatistics.csproj │ │ ├── Local.testsettings │ │ ├── QueryAnything.UnitTests │ │ │ ├── AuthoringTests.txt │ │ │ ├── DistinctTests.cs │ │ │ ├── DynamicTests.cs │ │ │ ├── GroupByTests.cs │ │ │ ├── HavingTests.cs │ │ │ ├── OrderByTests.cs │ │ │ ├── Person.cs │ │ │ ├── QueryAnything.UnitTests.csproj │ │ │ ├── ScalarTests.cs │ │ │ ├── SelectTests.cs │ │ │ ├── SimpleTests.cs │ │ │ ├── SimpleWhereTests.cs │ │ │ ├── StandardDeviationTests.cs │ │ │ ├── TestData.cs │ │ │ └── VarianceTests.cs │ │ ├── QueryAnything │ │ │ ├── EnumerableQuery.cs │ │ │ ├── Query.cs │ │ │ ├── QueryAnything.csproj │ │ │ ├── ScalarQuery.cs │ │ │ ├── SqlLinq.cs │ │ │ └── obj │ │ │ │ └── x86 │ │ │ │ └── Debug │ │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ │ └── QueryAnything.csproj.CoreCompileInputs.cache │ │ ├── SQL-ANSI-89.4.grm │ │ ├── SourcePage.txt │ │ ├── SqlLinq.vsmdi │ │ ├── SqlLinq │ │ │ ├── Exceptions.cs │ │ │ ├── ExpressionFactory.cs │ │ │ ├── GroupByCall.cs │ │ │ ├── ParserFactory.cs │ │ │ ├── SQL 89.cs │ │ │ ├── SQL-ANSI-89.4.cgt │ │ │ ├── SqlLinq.csproj │ │ │ ├── SqlParser.cs │ │ │ ├── SyntaxNodeAttribute.cs │ │ │ ├── SyntaxRuleFactory.cs │ │ │ ├── SyntaxTree │ │ │ │ ├── Aggregates │ │ │ │ │ ├── AggregateNode.cs │ │ │ │ │ ├── AverageNode.cs │ │ │ │ │ ├── CountAllNode.cs │ │ │ │ │ ├── MaxNode.cs │ │ │ │ │ ├── MinNode.cs │ │ │ │ │ ├── StandardDeviationNode.cs │ │ │ │ │ ├── StandardDeviationPNode.cs │ │ │ │ │ ├── SumNode.cs │ │ │ │ │ ├── VarianceNode.cs │ │ │ │ │ └── VariancePNode.cs │ │ │ │ ├── Clauses │ │ │ │ │ ├── FromClause.cs │ │ │ │ │ ├── GroupByClause.cs │ │ │ │ │ ├── HavingClause.cs │ │ │ │ │ ├── OrderByClause.cs │ │ │ │ │ ├── OrderByItem.cs │ │ │ │ │ ├── OrderByValueItem.cs │ │ │ │ │ ├── WhereClause.cs │ │ │ │ │ └── vssver2.scc │ │ │ │ ├── ColumnSource.cs │ │ │ │ ├── Columns.cs │ │ │ │ ├── FieldReference.cs │ │ │ │ ├── Functions │ │ │ │ │ ├── FunctionNode.cs │ │ │ │ │ └── Value.cs │ │ │ │ ├── Literals │ │ │ │ │ ├── BooleanLiteral.cs │ │ │ │ │ ├── DateLiteral.cs │ │ │ │ │ ├── IntegerLiteral.cs │ │ │ │ │ ├── Literal.cs │ │ │ │ │ ├── LiteralNode.cs │ │ │ │ │ ├── NullLiteral.cs │ │ │ │ │ ├── RealLiteral.cs │ │ │ │ │ └── StringLiteral.cs │ │ │ │ ├── NodeWithId.cs │ │ │ │ ├── NonTerminalNode.cs │ │ │ │ ├── Predicates │ │ │ │ │ ├── Arithmetic │ │ │ │ │ │ ├── ArithmeticNode.cs │ │ │ │ │ │ ├── DivideNode.cs │ │ │ │ │ │ ├── MinusNode.cs │ │ │ │ │ │ ├── MultiplyNode.cs │ │ │ │ │ │ ├── NegateNode.cs │ │ │ │ │ │ └── PlusNode.cs │ │ │ │ │ ├── Boolean │ │ │ │ │ │ ├── AndNode.cs │ │ │ │ │ │ ├── NotNode.cs │ │ │ │ │ │ ├── OrNode.cs │ │ │ │ │ │ └── vssver2.scc │ │ │ │ │ ├── Comparison │ │ │ │ │ │ ├── BetweenNode.cs │ │ │ │ │ │ ├── EqualityNode.cs │ │ │ │ │ │ ├── GreaterThanNode.cs │ │ │ │ │ │ ├── GreaterThanOrEqualNode.cs │ │ │ │ │ │ ├── InEqualityNode.cs │ │ │ │ │ │ ├── InNode.cs │ │ │ │ │ │ ├── IsNotNullNode.cs │ │ │ │ │ │ ├── IsNullNode.cs │ │ │ │ │ │ ├── LessThanNode.cs │ │ │ │ │ │ ├── LessThanOrEqualNode.cs │ │ │ │ │ │ ├── LikeNode.cs │ │ │ │ │ │ ├── NotBetweenNode.cs │ │ │ │ │ │ ├── NotInNode.cs │ │ │ │ │ │ └── NotLikeNode.cs │ │ │ │ │ ├── PredicateNode.cs │ │ │ │ │ └── TupleNode.cs │ │ │ │ ├── SelectNode.cs │ │ │ │ ├── SyntaxNode.cs │ │ │ │ └── TerminalNode.cs │ │ │ └── TypeHelpers.cs │ │ └── TraceAndTestImpact.testsettings │ └── XDMessaging-2.0.3.0 │ │ ├── bin │ │ └── XDMessaging.dll │ │ ├── demo │ │ └── C# │ │ │ ├── Messenger │ │ │ ├── Messenger.Designer.cs │ │ │ ├── Messenger.cs │ │ │ ├── Messenger.csproj │ │ │ ├── Messenger.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── bin │ │ │ │ └── Debug │ │ │ │ ├── Messenger.vshost.exe │ │ │ │ └── Messenger.vshost.exe.manifest │ │ │ └── Samples.sln │ │ └── source │ │ ├── AssemblyInfo.cs │ │ ├── Concrete │ │ ├── IOStream │ │ │ ├── XDIOStreamBroadcast.cs │ │ │ └── XDIOStreamListener.cs │ │ ├── MailSlot │ │ │ ├── MailSlotThreadInfo.cs │ │ │ ├── Native.cs │ │ │ ├── XDMailSlotBroadcast.cs │ │ │ └── XDMailSlotListener.cs │ │ ├── MultiBroadcast │ │ │ ├── NetworkRelayBroadcast.cs │ │ │ ├── NetworkRelayListener.cs │ │ │ └── XDMultiBroadcast.cs │ │ └── WindowsMessaging │ │ │ ├── Native.cs │ │ │ ├── WindowEnumFilter.cs │ │ │ ├── WindowsEnum.cs │ │ │ └── XDWindowsMessaging.cs │ │ ├── DataGram.cs │ │ ├── Interfaces │ │ ├── IXDBroadcast.cs │ │ └── IXDListener.cs │ │ ├── XDBroadcast.cs │ │ ├── XDListener.cs │ │ ├── XDMessageEventArgs.cs │ │ ├── XDMessaging.csproj │ │ └── XDTransportMode.cs ├── AdvancedLogBrowser │ ├── AdvancedLogBrowser.csproj │ ├── AssemblyInfo.cs │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── UI │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ └── MainForm.resx ├── AdvancedLogViewer.BL │ ├── AdvancedLogViewer.BL.csproj │ ├── AssemblyInfo.cs │ ├── ColorHighlight │ │ ├── ColorHighlightEntry.cs │ │ ├── ColorHighlightGroup.cs │ │ └── ColorHighlightManager.cs │ ├── Comm │ │ ├── CommDatagram.cs │ │ ├── CommManager.cs │ │ ├── MessageType.cs │ │ └── Messages │ │ │ ├── BaseMessage.cs │ │ │ └── LogViewerInstance.cs │ ├── Filters │ │ ├── FilterEntry.cs │ │ └── FilterManager.cs │ ├── FindText │ │ ├── FindTextSettings.cs │ │ └── SearchHistory.cs │ ├── LogAdjuster │ │ ├── LogAdjuster.cs │ │ └── LogAdjusters.cs │ ├── LogBrowser │ │ ├── LogBrowserSettings.cs │ │ └── LogsAroundSettings.cs │ ├── MergeFiles.cs │ ├── MessageContentExtraction │ │ ├── CustomMessageExtractor.cs │ │ ├── MessageContentExtractor.cs │ │ ├── MessageContentExtractorAction.cs │ │ └── MessageContentExtractorConfig.cs │ ├── PluginManager.cs │ ├── Settings │ │ ├── AlvSettings.cs │ │ ├── AutomaticUpdates.cs │ │ ├── MainFormUI.cs │ │ ├── RecentFiles.cs │ │ ├── TextDiff.cs │ │ └── TextEditor.cs │ └── TotalCmdIntegration.cs ├── AdvancedLogViewer.Common │ ├── AdvancedLogViewer.Common.csproj │ ├── Data │ │ └── ParserPatterns.def │ ├── Globals.cs │ ├── Parser │ │ ├── ColumnDescription.cs │ │ ├── LogEntry.cs │ │ ├── LogParser.cs │ │ ├── LogPartsFileNameStrategies │ │ │ ├── DotSuffixStrategy.cs │ │ │ ├── LogPartsFileNameFinder.cs │ │ │ ├── LogPartsFileNameStrategy.cs │ │ │ └── NumericWildcardStrategy.cs │ │ ├── LogPattern.cs │ │ ├── LogType.cs │ │ ├── PatternItem.cs │ │ ├── PatternItemType.cs │ │ └── PatternManager.cs │ ├── Plugins │ │ ├── IAnalyseLogPlugin.cs │ │ ├── IBasePlugin.cs │ │ └── ILogViewControl.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── AdvancedLogViewer.Plugins │ ├── AdvancedLogViewer.Plugins.BlackoutAnalyzer │ │ ├── AdvancedLogViewer.Plugins.BlackoutAnalyzer.csproj │ │ ├── MainForm.cs │ │ ├── MainForm.designer.cs │ │ ├── MainForm.resx │ │ ├── Plugin.cs │ │ └── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ └── AdvancedLogViewer.Plugins.TimeLapse │ │ ├── AdvancedLogViewer.Plugins.TimeLapse.csproj │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ └── TimeLapsePlugin.cs ├── AdvancedLogViewer.sln ├── AdvancedLogViewer │ ├── AdvancedLogViewer.csproj │ ├── App.config │ ├── Data │ │ └── SystemLogAdjusters.xml │ ├── History.xml │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── AutoRefresh.bmp │ │ ├── AutoRefreshOld.bmp │ │ ├── Bookmark.png │ │ ├── Clean.bmp │ │ ├── Clear.png │ │ ├── Erase.png │ │ ├── ExtractMessageContent.bmp │ │ ├── Filter.png │ │ ├── FilterSettings.png │ │ ├── Find.bmp │ │ ├── FolderClosed.bmp │ │ ├── FolderOpened.bmp │ │ ├── Goto.png │ │ ├── Highlight.png │ │ ├── HighlightSettings.png │ │ ├── InstancesManager.bmp │ │ ├── LogAdjust.bmp │ │ ├── LogFileIcon.bmp │ │ ├── LogLevel_All.png │ │ ├── LogLevel_Custom.bmp │ │ ├── LogLevel_Debug.png │ │ ├── LogLevel_Error.png │ │ ├── LogLevel_Fatal.png │ │ ├── LogLevel_Info.png │ │ ├── LogLevel_Trace.png │ │ ├── LogLevel_Verbose.png │ │ ├── LogLevel_Warn.png │ │ ├── LogParts.png │ │ ├── LogsAround.bmp │ │ ├── MainFile128.png │ │ ├── MainFile32.ico │ │ ├── Merge.png │ │ ├── Notepad.bmp │ │ ├── Notepad.png │ │ ├── Open.png │ │ ├── Pause.bmp │ │ ├── Pause.png │ │ ├── Play.bmp │ │ ├── Play.png │ │ ├── Save.png │ │ ├── Settings.bmp │ │ ├── Settings │ │ │ ├── Application Update.png │ │ │ ├── External Diff Tool.png │ │ │ ├── External Text Editor.png │ │ │ ├── Log Browser.png │ │ │ ├── Main Window.png │ │ │ └── System Integration.png │ │ ├── SettingsSmallIcon.png │ │ ├── ShowHideBottomPane.bmp │ │ ├── ShowHideBottomPane.png │ │ ├── SqlFilter.png │ │ ├── Star-Gray.bmp │ │ ├── Star-Yellow.bmp │ │ ├── StayOnTop.png │ │ ├── TextDiff.png │ │ ├── btn_donate_SM.gif │ │ ├── filter-2.bmp │ │ ├── filter-Manage - Copy.bmp │ │ ├── filter-Manage.bmp │ │ ├── logLevel_Unknown.bmp │ │ ├── open16_h.bmp │ │ ├── refresh16_transparent.png │ │ ├── syntax highlight - manage - Copy.bmp │ │ ├── syntax highlight - manage.bmp │ │ └── syntax highlight.bmp │ └── UI │ │ ├── AboutDialog.Designer.cs │ │ ├── AboutDialog.cs │ │ ├── AboutDialog.resx │ │ ├── Controls │ │ ├── Filters │ │ │ ├── FilterSettingsBaseControl.Designer.cs │ │ │ ├── FilterSettingsBaseControl.cs │ │ │ ├── FilterSettingsBaseControl.resx │ │ │ ├── FilterSettingsDateTime.Designer.cs │ │ │ ├── FilterSettingsDateTime.cs │ │ │ ├── FilterSettingsDateTime.resx │ │ │ ├── FilterSettingsMessage.Designer.cs │ │ │ ├── FilterSettingsMessage.cs │ │ │ ├── FilterSettingsMessage.resx │ │ │ ├── FilterSettingsText.Designer.cs │ │ │ ├── FilterSettingsText.cs │ │ │ ├── FilterSettingsText.resx │ │ │ └── GetDistinctValues.cs │ │ ├── ILogListViewOwner.cs │ │ ├── LogListView.Designer.cs │ │ ├── LogListView.cs │ │ ├── LogViewerControl.resx │ │ ├── MyListView.cs │ │ ├── SqlFilterControl.Designer.cs │ │ ├── SqlFilterControl.cs │ │ └── SqlFilterControl.resx │ │ ├── FeedbackDlg.Designer.cs │ │ ├── FeedbackDlg.cs │ │ ├── FeedbackDlg.resx │ │ ├── FilterPopUp.cs │ │ ├── FilterPopUp.designer.cs │ │ ├── FilterPopUp.resx │ │ ├── FindTextDlg.cs │ │ ├── FindTextDlg.designer.cs │ │ ├── FindTextDlg.resx │ │ ├── GoToItem.cs │ │ ├── GoToItem.designer.cs │ │ ├── GoToItem.resx │ │ ├── Items │ │ ├── FindTextContext.cs │ │ ├── LogListViewItem.cs │ │ └── LogViewerInstanceToolStripItem.cs │ │ ├── LogAdjustersDlg.Designer.cs │ │ ├── LogAdjustersDlg.cs │ │ ├── LogAdjustersDlg.resx │ │ ├── LogBrowserDlg.Designer.cs │ │ ├── LogBrowserDlg.cs │ │ ├── LogBrowserDlg.resx │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── ManageContentExtraction.Designer.cs │ │ ├── ManageContentExtraction.cs │ │ ├── ManageContentExtraction.resx │ │ ├── ManageFilters.Designer.cs │ │ ├── ManageFilters.cs │ │ ├── ManageFilters.resx │ │ ├── ManageHighlights.Designer.cs │ │ ├── ManageHighlights.cs │ │ ├── ManageHighlights.resx │ │ ├── ManageParserPatterns.Designer.cs │ │ ├── ManageParserPatterns.cs │ │ ├── ManageParserPatterns.resx │ │ ├── MergeLogParts.Designer.cs │ │ ├── MergeLogParts.cs │ │ ├── MergeLogParts.resx │ │ ├── ProgressForm.Designer.cs │ │ ├── ProgressForm.cs │ │ ├── ProgressForm.resx │ │ ├── SettingsDlg.Designer.cs │ │ ├── SettingsDlg.cs │ │ ├── SettingsDlg.resx │ │ ├── ViewLogAsText.Designer.cs │ │ ├── ViewLogAsText.cs │ │ └── ViewLogAsText.resx └── Tests │ └── AdvancedLogViewer.Common.Tests │ ├── AdvancedLogViewer.Common.Tests.csproj │ ├── LogEntryTest.cs │ ├── LogParserTest.cs │ ├── LogPartsFileNameStrategyTests │ ├── DotSuffixStrategyTest.cs │ ├── LogPartFileNameStrategyTestBase.cs │ ├── LogPartsFileNameFinderTest.cs │ └── NumericWildcardStrategyTest.cs │ ├── PatternManagerTest.cs │ └── TestData │ └── Logs │ ├── AllColumns.log │ ├── DateAndMessageOnlyInstall.log │ ├── DiscoveryEngine.log │ ├── FirstLineInWrongFormat.log │ └── UTF8.log ├── dirs.proj └── global.json /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Build/AdvancedLogViewer.msbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/AdvancedLogViewer.msbuild -------------------------------------------------------------------------------- /Build/BuildRelease.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/BuildRelease.bat -------------------------------------------------------------------------------- /Build/Definitions/Portable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Definitions/Portable.txt -------------------------------------------------------------------------------- /Build/Definitions/UpdatedAppDescription.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Definitions/UpdatedAppDescription.xml -------------------------------------------------------------------------------- /Build/Installer/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/Product.wxs -------------------------------------------------------------------------------- /Build/Installer/SimpleUI.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/SimpleUI.wxs -------------------------------------------------------------------------------- /Build/Installer/wix/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/LICENSE.TXT -------------------------------------------------------------------------------- /Build/Installer/wix/LuxTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/LuxTasks.dll -------------------------------------------------------------------------------- /Build/Installer/wix/Microsoft.Deployment.Compression.Cab.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/Microsoft.Deployment.Compression.Cab.dll -------------------------------------------------------------------------------- /Build/Installer/wix/Microsoft.Deployment.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/Microsoft.Deployment.Compression.dll -------------------------------------------------------------------------------- /Build/Installer/wix/Microsoft.Deployment.Resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/Microsoft.Deployment.Resources.dll -------------------------------------------------------------------------------- /Build/Installer/wix/Microsoft.Deployment.WindowsInstaller.Package.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/Microsoft.Deployment.WindowsInstaller.Package.dll -------------------------------------------------------------------------------- /Build/Installer/wix/Microsoft.Deployment.WindowsInstaller.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/Microsoft.Deployment.WindowsInstaller.dll -------------------------------------------------------------------------------- /Build/Installer/wix/ThmViewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/ThmViewer.exe -------------------------------------------------------------------------------- /Build/Installer/wix/WixBalExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixBalExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixComPlusExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixComPlusExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixCop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixCop.exe -------------------------------------------------------------------------------- /Build/Installer/wix/WixDependencyExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixDependencyExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixDifxAppExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixDifxAppExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixDirectXExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixDirectXExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixFirewallExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixFirewallExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixGamingExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixGamingExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixHttpExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixHttpExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixIIsExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixIIsExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixLuxExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixLuxExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixMsmqExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixMsmqExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixNetFxExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixNetFxExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixPSExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixPSExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixSqlExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixSqlExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixTagExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixTagExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixTasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixTasks.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixUIExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixUIExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixUtilExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixUtilExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixVSExtension.MSBuild12.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixVSExtension.MSBuild12.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixVSExtension.MSBuild14.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixVSExtension.MSBuild14.dll -------------------------------------------------------------------------------- /Build/Installer/wix/WixVSExtension.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/WixVSExtension.dll -------------------------------------------------------------------------------- /Build/Installer/wix/candle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/candle.exe -------------------------------------------------------------------------------- /Build/Installer/wix/candle.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/candle.exe.config -------------------------------------------------------------------------------- /Build/Installer/wix/darice.cub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/darice.cub -------------------------------------------------------------------------------- /Build/Installer/wix/dark.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/dark.exe -------------------------------------------------------------------------------- /Build/Installer/wix/dark.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/dark.exe.config -------------------------------------------------------------------------------- /Build/Installer/wix/difxapp_x64.wixlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/difxapp_x64.wixlib -------------------------------------------------------------------------------- /Build/Installer/wix/difxapp_x86.wixlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/difxapp_x86.wixlib -------------------------------------------------------------------------------- /Build/Installer/wix/heat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/heat.exe -------------------------------------------------------------------------------- /Build/Installer/wix/heat.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/heat.exe.config -------------------------------------------------------------------------------- /Build/Installer/wix/insignia.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/insignia.exe -------------------------------------------------------------------------------- /Build/Installer/wix/insignia.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/insignia.exe.config -------------------------------------------------------------------------------- /Build/Installer/wix/light.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/light.exe -------------------------------------------------------------------------------- /Build/Installer/wix/light.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/light.exe.config -------------------------------------------------------------------------------- /Build/Installer/wix/lit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/lit.exe -------------------------------------------------------------------------------- /Build/Installer/wix/lit.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/lit.exe.config -------------------------------------------------------------------------------- /Build/Installer/wix/lux.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/lux.exe -------------------------------------------------------------------------------- /Build/Installer/wix/lux.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/lux.exe.config -------------------------------------------------------------------------------- /Build/Installer/wix/lux.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/lux.targets -------------------------------------------------------------------------------- /Build/Installer/wix/melt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/melt.exe -------------------------------------------------------------------------------- /Build/Installer/wix/melt.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/melt.exe.config -------------------------------------------------------------------------------- /Build/Installer/wix/mergemod.cub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/mergemod.cub -------------------------------------------------------------------------------- /Build/Installer/wix/mergemod.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/mergemod.dll -------------------------------------------------------------------------------- /Build/Installer/wix/mspatchc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/mspatchc.dll -------------------------------------------------------------------------------- /Build/Installer/wix/nit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/nit.exe -------------------------------------------------------------------------------- /Build/Installer/wix/nit.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/nit.exe.config -------------------------------------------------------------------------------- /Build/Installer/wix/pyro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/pyro.exe -------------------------------------------------------------------------------- /Build/Installer/wix/pyro.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/pyro.exe.config -------------------------------------------------------------------------------- /Build/Installer/wix/retina.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/retina.exe -------------------------------------------------------------------------------- /Build/Installer/wix/retina.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/retina.exe.config -------------------------------------------------------------------------------- /Build/Installer/wix/shine.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/shine.exe -------------------------------------------------------------------------------- /Build/Installer/wix/shine.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/shine.exe.config -------------------------------------------------------------------------------- /Build/Installer/wix/smoke.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/smoke.exe -------------------------------------------------------------------------------- /Build/Installer/wix/smoke.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/smoke.exe.config -------------------------------------------------------------------------------- /Build/Installer/wix/torch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/torch.exe -------------------------------------------------------------------------------- /Build/Installer/wix/torch.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/torch.exe.config -------------------------------------------------------------------------------- /Build/Installer/wix/wconsole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/wconsole.dll -------------------------------------------------------------------------------- /Build/Installer/wix/winterop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/winterop.dll -------------------------------------------------------------------------------- /Build/Installer/wix/wix.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/wix.dll -------------------------------------------------------------------------------- /Build/Installer/wix/wix.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/wix.targets -------------------------------------------------------------------------------- /Build/Installer/wix/wix200x.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/wix200x.targets -------------------------------------------------------------------------------- /Build/Installer/wix/wix2010.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Installer/wix/wix2010.targets -------------------------------------------------------------------------------- /Build/Tasks/ScarfSail.MSBuild.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Tasks/ScarfSail.MSBuild.Tasks.dll -------------------------------------------------------------------------------- /Build/Tasks/ScarfSail.MSBuild.Tasks/DeleteFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Tasks/ScarfSail.MSBuild.Tasks/DeleteFolder.cs -------------------------------------------------------------------------------- /Build/Tasks/ScarfSail.MSBuild.Tasks/GenerateHistoryMdFromHistoryXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Tasks/ScarfSail.MSBuild.Tasks/GenerateHistoryMdFromHistoryXml.cs -------------------------------------------------------------------------------- /Build/Tasks/ScarfSail.MSBuild.Tasks/GenerateWebUpdateXmlFromHistoryXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Tasks/ScarfSail.MSBuild.Tasks/GenerateWebUpdateXmlFromHistoryXml.cs -------------------------------------------------------------------------------- /Build/Tasks/ScarfSail.MSBuild.Tasks/GetAssemblyVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Tasks/ScarfSail.MSBuild.Tasks/GetAssemblyVersion.cs -------------------------------------------------------------------------------- /Build/Tasks/ScarfSail.MSBuild.Tasks/GetLatestFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Tasks/ScarfSail.MSBuild.Tasks/GetLatestFile.cs -------------------------------------------------------------------------------- /Build/Tasks/ScarfSail.MSBuild.Tasks/ScarfSail.MSBuild.Tasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Tasks/ScarfSail.MSBuild.Tasks/ScarfSail.MSBuild.Tasks.csproj -------------------------------------------------------------------------------- /Build/Tasks/ScarfSail.MSBuild.Tasks/ScarfSail.MSBuild.Tasks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Tasks/ScarfSail.MSBuild.Tasks/ScarfSail.MSBuild.Tasks.sln -------------------------------------------------------------------------------- /Build/Tasks/ScarfSail.MSBuild.Tasks/UpdateReadmeMdFromHistoryXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Tasks/ScarfSail.MSBuild.Tasks/UpdateReadmeMdFromHistoryXml.cs -------------------------------------------------------------------------------- /Build/Utils/7-Zip/7-zip.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/7-zip.chm -------------------------------------------------------------------------------- /Build/Utils/7-Zip/7-zip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/7-zip.dll -------------------------------------------------------------------------------- /Build/Utils/7-Zip/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/7z.dll -------------------------------------------------------------------------------- /Build/Utils/7-Zip/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/7z.exe -------------------------------------------------------------------------------- /Build/Utils/7-Zip/7z.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/7z.sfx -------------------------------------------------------------------------------- /Build/Utils/7-Zip/7zCon.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/7zCon.sfx -------------------------------------------------------------------------------- /Build/Utils/7-Zip/7zFM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/7zFM.exe -------------------------------------------------------------------------------- /Build/Utils/7-Zip/7zG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/7zG.exe -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Archive.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Archive.exe -------------------------------------------------------------------------------- /Build/Utils/7-Zip/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/History.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/af.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/af.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ar.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ast.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/az.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/az.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ba.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/be.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/bg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/bg.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/bn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/bn.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/br.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ca.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/cs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/cs.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/cy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/cy.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/da.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/da.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/de.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/el.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/el.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/en.ttt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/en.ttt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/eo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/eo.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/es.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/et.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/et.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/eu.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ext.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/fa.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/fi.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/fr.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/fur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/fur.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/fy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/fy.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/gl.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/gu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/gu.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/he.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/he.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/hi.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/hr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/hr.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/hu.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/hy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/hy.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/id.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/io.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/io.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/is.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/is.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/it.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ja.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ka.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ka.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/kk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/kk.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ko.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ku-ckb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ku-ckb.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ku.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ku.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/lt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/lt.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/lv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/lv.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/mk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/mk.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/mn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/mn.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/mr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/mr.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ms.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/nb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/nb.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ne.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ne.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/nl.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/nn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/nn.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/pa-in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/pa-in.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/pl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/pl.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ps.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/pt-br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/pt-br.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/pt.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ro.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ru.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/sa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/sa.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/si.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/si.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/sk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/sk.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/sl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/sl.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/sq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/sq.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/sr-spc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/sr-spc.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/sr-spl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/sr-spl.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/sv.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ta.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/th.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/th.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/tr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/tr.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/tt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/tt.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/ug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/ug.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/uk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/uk.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/uz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/uz.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/va.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/va.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/vi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/vi.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/zh-cn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/zh-cn.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Lang/zh-tw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Lang/zh-tw.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/License.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/Uninstall.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/Uninstall.exe -------------------------------------------------------------------------------- /Build/Utils/7-Zip/descript.ion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/descript.ion -------------------------------------------------------------------------------- /Build/Utils/7-Zip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/readme.txt -------------------------------------------------------------------------------- /Build/Utils/7-Zip/test/AdvancedLogViewer.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/test/AdvancedLogViewer.Common.dll -------------------------------------------------------------------------------- /Build/Utils/7-Zip/test/AdvancedLogViewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/test/AdvancedLogViewer.exe -------------------------------------------------------------------------------- /Build/Utils/7-Zip/test/AdvancedLogViewer.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/test/AdvancedLogViewer.exe.config -------------------------------------------------------------------------------- /Build/Utils/7-Zip/test/Data/ParserPatterns.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/test/Data/ParserPatterns.def -------------------------------------------------------------------------------- /Build/Utils/7-Zip/test/Data/SystemLogAdjusters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/test/Data/SystemLogAdjusters.xml -------------------------------------------------------------------------------- /Build/Utils/7-Zip/test/History.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/test/History.xml -------------------------------------------------------------------------------- /Build/Utils/7-Zip/test/Scarfsail.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/test/Scarfsail.Common.dll -------------------------------------------------------------------------------- /Build/Utils/7-Zip/test/Scarfsail.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/test/Scarfsail.Logging.dll -------------------------------------------------------------------------------- /Build/Utils/7-Zip/test/Scarfsail.SoftwareUpdates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/test/Scarfsail.SoftwareUpdates.dll -------------------------------------------------------------------------------- /Build/Utils/7-Zip/test/XDMessaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/test/XDMessaging.dll -------------------------------------------------------------------------------- /Build/Utils/7-Zip/test/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Build/Utils/7-Zip/test/log4net.dll -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/README.md -------------------------------------------------------------------------------- /Release/AdvancedLogViewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/AdvancedLogViewer.xml -------------------------------------------------------------------------------- /Release/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/History.md -------------------------------------------------------------------------------- /Release/History.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/History.xml -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_2.3.4.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_2.3.4.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_2.4.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_2.4.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_2.5.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_2.5.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_2.5.3.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_2.5.3.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_2.5.4.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_2.5.4.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_2.5.5.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_2.5.5.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_2.6.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_2.6.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_3.0.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_3.0.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_3.0.2.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_3.0.2.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_3.1.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_3.1.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_3.1.2.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_3.1.2.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_3.1.3.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_3.1.3.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_3.2.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_3.2.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_3.2.2.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_3.2.2.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_3.2.3.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_3.2.3.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_3.2.4.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_3.2.4.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_4.0.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_4.0.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.0.0.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.0.0.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.0.0.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.0.0_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.0.0_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.0.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.0.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.0.1.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.0.1_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.0.1_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.0.2.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.0.2.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.0.2.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.0.2_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.0.2_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.1.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.1.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.1.1.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.1.1_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.1.1_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.2.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.2.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.2.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.2.1.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.2.1_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.2.1_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.3.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.3.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.3.1.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.3.1_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.3.1_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.4.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.4.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.4.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.4.1.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.4.1_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.4.1_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.4.2.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.4.2.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.4.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.4.2.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.4.2_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.4.2_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.4.3.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.4.3.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.4.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.4.3.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.4.3_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.4.3_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.4.4.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.4.4.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.4.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.4.4.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.4.4_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.4.4_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.5.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.5.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.5.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.5.1.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.5.1_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.5.1_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.6.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.6.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.6.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.6.1.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.6.1_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.6.1_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.6.2.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.6.2.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.6.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.6.2.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.6.2_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.6.2_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.6.3.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.6.3.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.6.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.6.3.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.6.3_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.6.3_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.7.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.7.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.7.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.7.1.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_5.7.1_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_5.7.1_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.0.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.0.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.0.1.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.0.1_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.0.1_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.0.2.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.0.2.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.0.2.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.0.2_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.0.2_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.1.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.1.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.1.1.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.1.1_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.1.1_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.1.2.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.1.2.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.1.2.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.1.2_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.1.2_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.2.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.2.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.2.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.2.1.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.2.1_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.2.1_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.2.2.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.2.2.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.2.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.2.2.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.2.2_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.2.2_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.5.2.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.5.2.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.5.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.5.2.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_6.5.2_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_6.5.2_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.0.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.0.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.0.1.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.0.1_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.0.1_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.0.2.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.0.2.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.0.2.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.0.2_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.0.2_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.5.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.5.1.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.5.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.5.1.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.5.1_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.5.1_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.5.2.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.5.2.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.5.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.5.2.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.5.2_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.5.2_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.5.3.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.5.3.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.5.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.5.3.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.5.3_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.5.3_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.5.4.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.5.4.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.5.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.5.4.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.5.4_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.5.4_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.6.0.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.6.0.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.6.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.6.0.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_7.6.0_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_7.6.0_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_8.0.2.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_8.0.2.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_8.0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_8.0.2.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_8.0.2_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_8.0.2_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_8.1.0.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_8.1.0.msi -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_8.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_8.1.0.zip -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_8.1.0_Update.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_8.1.0_Update.exe -------------------------------------------------------------------------------- /Release/bin/AdvancedLogViewer_update_portable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Release/bin/AdvancedLogViewer_update_portable.txt -------------------------------------------------------------------------------- /Src/.gitignore: -------------------------------------------------------------------------------- 1 | /packages/ 2 | /.vs/ -------------------------------------------------------------------------------- /Src/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/.vscode/launch.json -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/BL/ApplicationHistoryXml2Html.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/BL/ApplicationHistoryXml2Html.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/BL/FileAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/BL/FileAssociation.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/BL/IniFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/BL/IniFile.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/BL/KeyValueCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/BL/KeyValueCache.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/BL/PluginEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/BL/PluginEngine.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/BL/XmlSerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/BL/XmlSerializable.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | [assembly: System.Runtime.Versioning.SupportedOSPlatform("windows")] -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/Scarfsail.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/Scarfsail.Common.csproj -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/Scarfsail.Common.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/Scarfsail.Common.csproj.user -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/ApplicationHistoryDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/ApplicationHistoryDlg.Designer.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/ApplicationHistoryDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/ApplicationHistoryDlg.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/ApplicationHistoryDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/ApplicationHistoryDlg.resx -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Controls/ColorPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Controls/ColorPicker.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Controls/DateTimeEdit.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Controls/DateTimeEdit.Designer.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Controls/DateTimeEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Controls/DateTimeEdit.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Controls/DateTimeEdit.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Controls/DateTimeEdit.resx -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Controls/EditableListView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Controls/EditableListView.Designer.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Controls/EditableListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Controls/EditableListView.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Controls/EditableListView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Controls/EditableListView.resx -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Controls/MarkerPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Controls/MarkerPanel.Designer.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Controls/MarkerPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Controls/MarkerPanel.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Controls/MarkerPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Controls/MarkerPanel.resx -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Controls/NativeTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Controls/NativeTabControl.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Controls/TimeLinePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Controls/TimeLinePanel.Designer.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Controls/TimeLinePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Controls/TimeLinePanel.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Controls/TimeLinePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Controls/TimeLinePanel.resx -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/CustomMessageBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/CustomMessageBox.Designer.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/CustomMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/CustomMessageBox.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/CustomMessageBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/CustomMessageBox.resx -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/DrawBackgroundImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/DrawBackgroundImage.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/InputBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/InputBox.Designer.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/InputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/InputBox.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/InputBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/InputBox.resx -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/ListOfShortcutsDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/ListOfShortcutsDlg.Designer.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/ListOfShortcutsDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/ListOfShortcutsDlg.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/ListOfShortcutsDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/ListOfShortcutsDlg.resx -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Shortcuts/ShortcutItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Shortcuts/ShortcutItem.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/Shortcuts/ShortcutManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/Shortcuts/ShortcutManager.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/AutoCompleteForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/AutoCompleteForm.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/AutoCompleteForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/AutoCompleteForm.resx -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/Fontdictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/Fontdictionary.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/HighlightDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/HighlightDescriptor.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/HighlightDescriptorCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/HighlightDescriptorCollection.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/SeperaratorCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/SeperaratorCollection.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/SyntaxHighlightingTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/SyntaxHighlightingTextBox.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/UI/SyntaxHighlighter/Win32.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/Utils/ExternalTextDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/Utils/ExternalTextDiff.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/Utils/StringIgnoreCaseEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/Utils/StringIgnoreCaseEqualityComparer.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Common/Utils/WinFormHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Common/Utils/WinFormHelper.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Logging/Extensions/LogSeverity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Logging/Extensions/LogSeverity.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Logging/Extensions/PerformanceLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Logging/Extensions/PerformanceLogger.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Logging/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Logging/Log.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Logging/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Logging/ReadMe.txt -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Logging/Scarfsail.Logging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Logging/Scarfsail.Logging.csproj -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/Logging/Scarfsail.Logging.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/Logging/Scarfsail.Logging.csproj.user -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | [assembly: System.Runtime.Versioning.SupportedOSPlatform("windows7.0")] -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/Scarfsail.SoftwareUpdates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/SoftwareUpdates/Scarfsail.SoftwareUpdates.csproj -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/Scarfsail.SoftwareUpdates.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/SoftwareUpdates/Scarfsail.SoftwareUpdates.csproj.user -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/SoftwareUpdatesClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/SoftwareUpdates/SoftwareUpdatesClient.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/SoftwareUpdatesClientSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/SoftwareUpdates/SoftwareUpdatesClientSettings.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/UI/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | [assembly: System.Runtime.Versioning.SupportedOSPlatform("windows")] -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/UI/DownloadFileProgressDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/SoftwareUpdates/UI/DownloadFileProgressDialog.Designer.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/UI/DownloadFileProgressDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/SoftwareUpdates/UI/DownloadFileProgressDialog.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/UI/DownloadFileProgressDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/SoftwareUpdates/UI/DownloadFileProgressDialog.resx -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/UI/NewVersionFoundDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/SoftwareUpdates/UI/NewVersionFoundDialog.Designer.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/UI/NewVersionFoundDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/SoftwareUpdates/UI/NewVersionFoundDialog.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/UI/NewVersionFoundDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/SoftwareUpdates/UI/NewVersionFoundDialog.resx -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/UpdateDefinitionXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/SoftwareUpdates/UpdateDefinitionXml.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/UpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/SoftwareUpdates/UpdateEventArgs.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/UpdateFoundEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/SoftwareUpdates/UpdateFoundEventArgs.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/UpdateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/SoftwareUpdates/UpdateType.cs -------------------------------------------------------------------------------- /Src/3rdParty/Scarfsail/SoftwareUpdates/UpdatesHistoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/Scarfsail/SoftwareUpdates/UpdatesHistoryInfo.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/Bin/ILMerge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/Bin/ILMerge.exe -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/Bin/QueryAnythingMerged.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/Bin/QueryAnythingMerged.dll -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/Bin/QueryAnythingMerged.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/Bin/QueryAnythingMerged.pdb -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/Bin/merge.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/Bin/merge.bat -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/GoldParser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/GoldParser.dll -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/Kackman.RuntimeTypeLoader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/Kackman.RuntimeTypeLoader.dll -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/CovarianceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/CovarianceTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/LinqStatistics.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/LinqStatistics.UnitTests.csproj -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/MedianTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/MedianTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/ModeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/ModeTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/RangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/RangeTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/StandardDeviationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/StandardDeviationTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/TestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/TestData.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/VarianceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics.UnitTests/VarianceTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStats.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsCovariance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsCovariance.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsMedian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsMedian.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsMode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsPearson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsPearson.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsRange.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsStandardDeviation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsStandardDeviation.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsStandardDeviationP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsStandardDeviationP.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsVariance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsVariance.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsVarianceP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics/EnumerableStatsVarianceP.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/LinqStatistics/LinqStatistics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/LinqStatistics/LinqStatistics.csproj -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/Local.testsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/Local.testsettings -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything.UnitTests/AuthoringTests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything.UnitTests/AuthoringTests.txt -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything.UnitTests/DistinctTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything.UnitTests/DistinctTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything.UnitTests/DynamicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything.UnitTests/DynamicTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything.UnitTests/GroupByTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything.UnitTests/GroupByTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything.UnitTests/HavingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything.UnitTests/HavingTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything.UnitTests/OrderByTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything.UnitTests/OrderByTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything.UnitTests/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything.UnitTests/Person.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything.UnitTests/QueryAnything.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything.UnitTests/QueryAnything.UnitTests.csproj -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything.UnitTests/ScalarTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything.UnitTests/ScalarTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything.UnitTests/SelectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything.UnitTests/SelectTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything.UnitTests/SimpleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything.UnitTests/SimpleTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything.UnitTests/SimpleWhereTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything.UnitTests/SimpleWhereTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything.UnitTests/StandardDeviationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything.UnitTests/StandardDeviationTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything.UnitTests/TestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything.UnitTests/TestData.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything.UnitTests/VarianceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything.UnitTests/VarianceTests.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything/EnumerableQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything/EnumerableQuery.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything/Query.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything/QueryAnything.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything/QueryAnything.csproj -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything/ScalarQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything/ScalarQuery.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything/SqlLinq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/QueryAnything/SqlLinq.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/QueryAnything/obj/x86/Debug/QueryAnything.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c06dc2cd140da7756df547c19be5ec33130d626c 2 | -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SQL-ANSI-89.4.grm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SQL-ANSI-89.4.grm -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SourcePage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SourcePage.txt -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq.vsmdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq.vsmdi -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/Exceptions.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/ExpressionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/ExpressionFactory.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/GroupByCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/GroupByCall.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/ParserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/ParserFactory.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SQL 89.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SQL 89.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SQL-ANSI-89.4.cgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SQL-ANSI-89.4.cgt -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SqlLinq.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SqlLinq.csproj -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SqlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SqlParser.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxNodeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxNodeAttribute.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxRuleFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxRuleFactory.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/AggregateNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/AggregateNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/AverageNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/AverageNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/CountAllNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/CountAllNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/MaxNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/MaxNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/MinNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/MinNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/StandardDeviationNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/StandardDeviationNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/StandardDeviationPNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/StandardDeviationPNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/SumNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/SumNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/VarianceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/VarianceNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/VariancePNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Aggregates/VariancePNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/FromClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/FromClause.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/GroupByClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/GroupByClause.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/HavingClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/HavingClause.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/OrderByClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/OrderByClause.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/OrderByItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/OrderByItem.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/OrderByValueItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/OrderByValueItem.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/WhereClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/WhereClause.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/vssver2.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Clauses/vssver2.scc -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/ColumnSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/ColumnSource.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Columns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Columns.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/FieldReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/FieldReference.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Functions/FunctionNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Functions/FunctionNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Functions/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Functions/Value.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/BooleanLiteral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/BooleanLiteral.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/DateLiteral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/DateLiteral.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/IntegerLiteral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/IntegerLiteral.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/Literal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/Literal.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/LiteralNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/LiteralNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/NullLiteral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/NullLiteral.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/RealLiteral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/RealLiteral.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/StringLiteral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Literals/StringLiteral.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/NodeWithId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/NodeWithId.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/NonTerminalNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/NonTerminalNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Arithmetic/ArithmeticNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Arithmetic/ArithmeticNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Arithmetic/DivideNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Arithmetic/DivideNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Arithmetic/MinusNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Arithmetic/MinusNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Arithmetic/MultiplyNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Arithmetic/MultiplyNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Arithmetic/NegateNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Arithmetic/NegateNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Arithmetic/PlusNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Arithmetic/PlusNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Boolean/AndNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Boolean/AndNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Boolean/NotNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Boolean/NotNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Boolean/OrNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Boolean/OrNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Boolean/vssver2.scc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Boolean/vssver2.scc -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/BetweenNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/BetweenNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/EqualityNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/EqualityNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/GreaterThanNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/GreaterThanNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/InEqualityNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/InEqualityNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/InNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/InNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/IsNotNullNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/IsNotNullNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/IsNullNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/IsNullNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/LessThanNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/LessThanNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/LessThanOrEqualNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/LessThanOrEqualNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/LikeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/LikeNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/NotBetweenNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/NotBetweenNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/NotInNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/NotInNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/NotLikeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/Comparison/NotLikeNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/PredicateNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/PredicateNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/TupleNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/Predicates/TupleNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/SelectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/SelectNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/SyntaxNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/SyntaxNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/TerminalNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/SyntaxTree/TerminalNode.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/SqlLinq/TypeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/SqlLinq/TypeHelpers.cs -------------------------------------------------------------------------------- /Src/3rdParty/SqlLinq/TraceAndTestImpact.testsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/SqlLinq/TraceAndTestImpact.testsettings -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/bin/XDMessaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/bin/XDMessaging.dll -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/demo/C#/Messenger/Messenger.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/demo/C#/Messenger/Messenger.Designer.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/demo/C#/Messenger/Messenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/demo/C#/Messenger/Messenger.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/demo/C#/Messenger/Messenger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/demo/C#/Messenger/Messenger.csproj -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/demo/C#/Messenger/Messenger.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/demo/C#/Messenger/Messenger.resx -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/demo/C#/Messenger/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/demo/C#/Messenger/Program.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/demo/C#/Messenger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | [assembly: System.Runtime.Versioning.SupportedOSPlatform("windows")] 2 | -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/demo/C#/Messenger/bin/Debug/Messenger.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/demo/C#/Messenger/bin/Debug/Messenger.vshost.exe -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/demo/C#/Samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/demo/C#/Samples.sln -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | [assembly: System.Runtime.Versioning.SupportedOSPlatform("windows")] -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/IOStream/XDIOStreamBroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/IOStream/XDIOStreamBroadcast.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/IOStream/XDIOStreamListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/IOStream/XDIOStreamListener.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/MailSlot/MailSlotThreadInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/MailSlot/MailSlotThreadInfo.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/MailSlot/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/MailSlot/Native.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/MailSlot/XDMailSlotBroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/MailSlot/XDMailSlotBroadcast.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/MailSlot/XDMailSlotListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/MailSlot/XDMailSlotListener.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/MultiBroadcast/XDMultiBroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/MultiBroadcast/XDMultiBroadcast.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/WindowsMessaging/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/WindowsMessaging/Native.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/WindowsMessaging/WindowsEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/Concrete/WindowsMessaging/WindowsEnum.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/DataGram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/DataGram.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/Interfaces/IXDBroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/Interfaces/IXDBroadcast.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/Interfaces/IXDListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/Interfaces/IXDListener.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/XDBroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/XDBroadcast.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/XDListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/XDListener.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/XDMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/XDMessageEventArgs.cs -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/XDMessaging.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/XDMessaging.csproj -------------------------------------------------------------------------------- /Src/3rdParty/XDMessaging-2.0.3.0/source/XDTransportMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/3rdParty/XDMessaging-2.0.3.0/source/XDTransportMode.cs -------------------------------------------------------------------------------- /Src/AdvancedLogBrowser/AdvancedLogBrowser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogBrowser/AdvancedLogBrowser.csproj -------------------------------------------------------------------------------- /Src/AdvancedLogBrowser/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | [assembly: System.Runtime.Versioning.SupportedOSPlatform("windows")] -------------------------------------------------------------------------------- /Src/AdvancedLogBrowser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogBrowser/Program.cs -------------------------------------------------------------------------------- /Src/AdvancedLogBrowser/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogBrowser/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogBrowser/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogBrowser/Properties/Resources.resx -------------------------------------------------------------------------------- /Src/AdvancedLogBrowser/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogBrowser/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogBrowser/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogBrowser/Properties/Settings.settings -------------------------------------------------------------------------------- /Src/AdvancedLogBrowser/UI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogBrowser/UI/MainForm.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogBrowser/UI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogBrowser/UI/MainForm.cs -------------------------------------------------------------------------------- /Src/AdvancedLogBrowser/UI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogBrowser/UI/MainForm.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/AdvancedLogViewer.BL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/AdvancedLogViewer.BL.csproj -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | [assembly: System.Runtime.Versioning.SupportedOSPlatform("windows7.0")] -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/ColorHighlight/ColorHighlightEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/ColorHighlight/ColorHighlightEntry.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/ColorHighlight/ColorHighlightGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/ColorHighlight/ColorHighlightGroup.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/ColorHighlight/ColorHighlightManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/ColorHighlight/ColorHighlightManager.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/Comm/CommDatagram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/Comm/CommDatagram.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/Comm/CommManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/Comm/CommManager.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/Comm/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/Comm/MessageType.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/Comm/Messages/BaseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/Comm/Messages/BaseMessage.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/Comm/Messages/LogViewerInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/Comm/Messages/LogViewerInstance.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/Filters/FilterEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/Filters/FilterEntry.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/Filters/FilterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/Filters/FilterManager.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/FindText/FindTextSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/FindText/FindTextSettings.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/FindText/SearchHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/FindText/SearchHistory.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/LogAdjuster/LogAdjuster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/LogAdjuster/LogAdjuster.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/LogAdjuster/LogAdjusters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/LogAdjuster/LogAdjusters.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/LogBrowser/LogBrowserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/LogBrowser/LogBrowserSettings.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/LogBrowser/LogsAroundSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/LogBrowser/LogsAroundSettings.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/MergeFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/MergeFiles.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/MessageContentExtraction/CustomMessageExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/MessageContentExtraction/CustomMessageExtractor.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/MessageContentExtraction/MessageContentExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/MessageContentExtraction/MessageContentExtractor.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/MessageContentExtraction/MessageContentExtractorAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/MessageContentExtraction/MessageContentExtractorAction.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/MessageContentExtraction/MessageContentExtractorConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/MessageContentExtraction/MessageContentExtractorConfig.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/PluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/PluginManager.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/Settings/AlvSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/Settings/AlvSettings.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/Settings/AutomaticUpdates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/Settings/AutomaticUpdates.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/Settings/MainFormUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/Settings/MainFormUI.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/Settings/RecentFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/Settings/RecentFiles.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/Settings/TextDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/Settings/TextDiff.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/Settings/TextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/Settings/TextEditor.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.BL/TotalCmdIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.BL/TotalCmdIntegration.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Common/AdvancedLogViewer.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Common/AdvancedLogViewer.Common.csproj -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Common/Data/ParserPatterns.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Common/Data/ParserPatterns.def -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Common/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Common/Globals.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Common/Parser/ColumnDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Common/Parser/ColumnDescription.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Common/Parser/LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Common/Parser/LogEntry.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Common/Parser/LogParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Common/Parser/LogParser.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Common/Parser/LogPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Common/Parser/LogPattern.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Common/Parser/LogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Common/Parser/LogType.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Common/Parser/PatternItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Common/Parser/PatternItem.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Common/Parser/PatternItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Common/Parser/PatternItemType.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Common/Parser/PatternManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Common/Parser/PatternManager.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Common/Plugins/IAnalyseLogPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Common/Plugins/IAnalyseLogPlugin.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Common/Plugins/IBasePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Common/Plugins/IBasePlugin.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Common/Plugins/ILogViewControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Common/Plugins/ILogViewControl.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | [assembly: System.Runtime.CompilerServices.InternalsVisibleTo("AdvancedLogViewer.Common.Tests")] -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Plugins/AdvancedLogViewer.Plugins.BlackoutAnalyzer/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Plugins/AdvancedLogViewer.Plugins.BlackoutAnalyzer/Plugin.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Plugins/AdvancedLogViewer.Plugins.TimeLapse/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Plugins/AdvancedLogViewer.Plugins.TimeLapse/MainForm.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.Plugins/AdvancedLogViewer.Plugins.TimeLapse/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.Plugins/AdvancedLogViewer.Plugins.TimeLapse/MainForm.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer.sln -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/AdvancedLogViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/AdvancedLogViewer.csproj -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/App.config -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Data/SystemLogAdjusters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Data/SystemLogAdjusters.xml -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/History.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/History.xml -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Program.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | [assembly: System.Runtime.Versioning.SupportedOSPlatform("windows7.0")] 2 | -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Properties/Resources.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Properties/Settings.settings -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/AutoRefresh.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/AutoRefresh.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/AutoRefreshOld.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/AutoRefreshOld.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Bookmark.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Clean.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Clean.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Clear.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Erase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Erase.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/ExtractMessageContent.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/ExtractMessageContent.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Filter.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/FilterSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/FilterSettings.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Find.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Find.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/FolderClosed.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/FolderClosed.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/FolderOpened.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/FolderOpened.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Goto.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Highlight.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/HighlightSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/HighlightSettings.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/InstancesManager.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/InstancesManager.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/LogAdjust.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/LogAdjust.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/LogFileIcon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/LogFileIcon.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/LogLevel_All.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/LogLevel_All.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/LogLevel_Custom.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/LogLevel_Custom.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/LogLevel_Debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/LogLevel_Debug.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/LogLevel_Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/LogLevel_Error.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/LogLevel_Fatal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/LogLevel_Fatal.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/LogLevel_Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/LogLevel_Info.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/LogLevel_Trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/LogLevel_Trace.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/LogLevel_Verbose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/LogLevel_Verbose.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/LogLevel_Warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/LogLevel_Warn.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/LogParts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/LogParts.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/LogsAround.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/LogsAround.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/MainFile128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/MainFile128.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/MainFile32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/MainFile32.ico -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Merge.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Notepad.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Notepad.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Notepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Notepad.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Open.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Pause.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Pause.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Pause.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Play.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Play.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Play.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Save.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Settings.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Settings.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Settings/Application Update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Settings/Application Update.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Settings/External Diff Tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Settings/External Diff Tool.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Settings/External Text Editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Settings/External Text Editor.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Settings/Log Browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Settings/Log Browser.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Settings/Main Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Settings/Main Window.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Settings/System Integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Settings/System Integration.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/SettingsSmallIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/SettingsSmallIcon.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/ShowHideBottomPane.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/ShowHideBottomPane.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/ShowHideBottomPane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/ShowHideBottomPane.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/SqlFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/SqlFilter.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Star-Gray.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Star-Gray.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/Star-Yellow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/Star-Yellow.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/StayOnTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/StayOnTop.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/TextDiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/TextDiff.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/btn_donate_SM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/btn_donate_SM.gif -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/filter-2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/filter-2.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/filter-Manage - Copy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/filter-Manage - Copy.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/filter-Manage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/filter-Manage.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/logLevel_Unknown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/logLevel_Unknown.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/open16_h.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/open16_h.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/refresh16_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/refresh16_transparent.png -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/syntax highlight - manage - Copy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/syntax highlight - manage - Copy.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/syntax highlight - manage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/syntax highlight - manage.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/Resources/syntax highlight.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/Resources/syntax highlight.bmp -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/AboutDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/AboutDialog.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/AboutDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/AboutDialog.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/AboutDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/AboutDialog.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsBaseControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsBaseControl.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsBaseControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsBaseControl.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsBaseControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsBaseControl.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsDateTime.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsDateTime.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsDateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsDateTime.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsDateTime.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsDateTime.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsMessage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsMessage.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsMessage.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsMessage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsMessage.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsText.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsText.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsText.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsText.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/Filters/FilterSettingsText.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/Filters/GetDistinctValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/Filters/GetDistinctValues.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/ILogListViewOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/ILogListViewOwner.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/LogListView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/LogListView.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/LogListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/LogListView.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/LogViewerControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/LogViewerControl.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/MyListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/MyListView.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/SqlFilterControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/SqlFilterControl.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/SqlFilterControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/SqlFilterControl.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Controls/SqlFilterControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Controls/SqlFilterControl.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/FeedbackDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/FeedbackDlg.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/FeedbackDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/FeedbackDlg.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/FeedbackDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/FeedbackDlg.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/FilterPopUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/FilterPopUp.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/FilterPopUp.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/FilterPopUp.designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/FilterPopUp.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/FilterPopUp.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/FindTextDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/FindTextDlg.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/FindTextDlg.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/FindTextDlg.designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/FindTextDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/FindTextDlg.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/GoToItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/GoToItem.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/GoToItem.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/GoToItem.designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/GoToItem.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/GoToItem.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Items/FindTextContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Items/FindTextContext.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Items/LogListViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Items/LogListViewItem.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/Items/LogViewerInstanceToolStripItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/Items/LogViewerInstanceToolStripItem.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/LogAdjustersDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/LogAdjustersDlg.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/LogAdjustersDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/LogAdjustersDlg.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/LogAdjustersDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/LogAdjustersDlg.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/LogBrowserDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/LogBrowserDlg.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/LogBrowserDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/LogBrowserDlg.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/LogBrowserDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/LogBrowserDlg.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/MainForm.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/MainForm.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/MainForm.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ManageContentExtraction.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ManageContentExtraction.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ManageContentExtraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ManageContentExtraction.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ManageContentExtraction.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ManageContentExtraction.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ManageFilters.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ManageFilters.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ManageFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ManageFilters.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ManageFilters.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ManageFilters.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ManageHighlights.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ManageHighlights.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ManageHighlights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ManageHighlights.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ManageHighlights.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ManageHighlights.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ManageParserPatterns.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ManageParserPatterns.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ManageParserPatterns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ManageParserPatterns.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ManageParserPatterns.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ManageParserPatterns.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/MergeLogParts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/MergeLogParts.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/MergeLogParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/MergeLogParts.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/MergeLogParts.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/MergeLogParts.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ProgressForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ProgressForm.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ProgressForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ProgressForm.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ProgressForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ProgressForm.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/SettingsDlg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/SettingsDlg.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/SettingsDlg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/SettingsDlg.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/SettingsDlg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/SettingsDlg.resx -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ViewLogAsText.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ViewLogAsText.Designer.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ViewLogAsText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ViewLogAsText.cs -------------------------------------------------------------------------------- /Src/AdvancedLogViewer/UI/ViewLogAsText.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/AdvancedLogViewer/UI/ViewLogAsText.resx -------------------------------------------------------------------------------- /Src/Tests/AdvancedLogViewer.Common.Tests/AdvancedLogViewer.Common.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/Tests/AdvancedLogViewer.Common.Tests/AdvancedLogViewer.Common.Tests.csproj -------------------------------------------------------------------------------- /Src/Tests/AdvancedLogViewer.Common.Tests/LogEntryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/Tests/AdvancedLogViewer.Common.Tests/LogEntryTest.cs -------------------------------------------------------------------------------- /Src/Tests/AdvancedLogViewer.Common.Tests/LogParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/Tests/AdvancedLogViewer.Common.Tests/LogParserTest.cs -------------------------------------------------------------------------------- /Src/Tests/AdvancedLogViewer.Common.Tests/PatternManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/Tests/AdvancedLogViewer.Common.Tests/PatternManagerTest.cs -------------------------------------------------------------------------------- /Src/Tests/AdvancedLogViewer.Common.Tests/TestData/Logs/AllColumns.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/Tests/AdvancedLogViewer.Common.Tests/TestData/Logs/AllColumns.log -------------------------------------------------------------------------------- /Src/Tests/AdvancedLogViewer.Common.Tests/TestData/Logs/DiscoveryEngine.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/Tests/AdvancedLogViewer.Common.Tests/TestData/Logs/DiscoveryEngine.log -------------------------------------------------------------------------------- /Src/Tests/AdvancedLogViewer.Common.Tests/TestData/Logs/FirstLineInWrongFormat.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/Src/Tests/AdvancedLogViewer.Common.Tests/TestData/Logs/FirstLineInWrongFormat.log -------------------------------------------------------------------------------- /Src/Tests/AdvancedLogViewer.Common.Tests/TestData/Logs/UTF8.log: -------------------------------------------------------------------------------- 1 | 2010-05-13 17:15:58,236 [MainTaskThread] ERROR All - Пожалуйста, укажите детали прибытия 2 | -------------------------------------------------------------------------------- /dirs.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/dirs.proj -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scarfsail/AdvancedLogViewer/HEAD/global.json --------------------------------------------------------------------------------