├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ └── sync.yml ├── .gitignore ├── .gitmodules ├── CppProperties.json ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── SidebarDiagnostics.sln ├── SidebarDiagnostics ├── App.config ├── App.xaml ├── App.xaml.cs ├── ChangeLog.json ├── ChangeLog.xaml ├── ChangeLog.xaml.cs ├── ChangeLogModel.cs ├── Commands.cs ├── Constants.cs ├── Converters.cs ├── Dummy.xaml ├── Dummy.xaml.cs ├── FlatStyle.xaml ├── FlatStyle.xaml.cs ├── Graph.xaml ├── Graph.xaml.cs ├── GraphModel.cs ├── Monitoring.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.ar.Designer.cs │ ├── Resources.ar.resx │ ├── Resources.da.Designer.cs │ ├── Resources.da.resx │ ├── Resources.de-CH.Designer.cs │ ├── Resources.de-CH.resx │ ├── Resources.de.Designer.cs │ ├── Resources.de.resx │ ├── Resources.es.Designer.cs │ ├── Resources.es.resx │ ├── Resources.fi.Designer.cs │ ├── Resources.fi.resx │ ├── Resources.fr.Designer.cs │ ├── Resources.fr.resx │ ├── Resources.it.Designer.cs │ ├── Resources.it.resx │ ├── Resources.ja.Designer.cs │ ├── Resources.ja.resx │ ├── Resources.nl.Designer.cs │ ├── Resources.nl.resx │ ├── Resources.resx │ ├── Resources.ru.Designer.cs │ ├── Resources.ru.resx │ ├── Resources.tr.resx │ ├── Resources.zh.Designer.cs │ ├── Resources.zh.resx │ └── app.manifest ├── Settings.cs ├── Settings.ico ├── Settings.xaml ├── Settings.xaml.cs ├── SettingsModel.cs ├── Setup.xaml ├── Setup.xaml.cs ├── Sidebar.ico ├── Sidebar.xaml ├── Sidebar.xaml.cs ├── SidebarDiagnostics.csproj ├── SidebarModel.cs ├── Update.xaml ├── Update.xaml.cs ├── UpdateModel.cs ├── Utilities.cs └── Windows.cs ├── renovate.json ├── resharper.svg └── sidebar.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/.gitmodules -------------------------------------------------------------------------------- /CppProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/CppProperties.json -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/README.md -------------------------------------------------------------------------------- /SidebarDiagnostics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics.sln -------------------------------------------------------------------------------- /SidebarDiagnostics/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/App.config -------------------------------------------------------------------------------- /SidebarDiagnostics/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/App.xaml -------------------------------------------------------------------------------- /SidebarDiagnostics/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/App.xaml.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/ChangeLog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/ChangeLog.json -------------------------------------------------------------------------------- /SidebarDiagnostics/ChangeLog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/ChangeLog.xaml -------------------------------------------------------------------------------- /SidebarDiagnostics/ChangeLog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/ChangeLog.xaml.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/ChangeLogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/ChangeLogModel.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Commands.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Constants.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Converters.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/Dummy.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Dummy.xaml -------------------------------------------------------------------------------- /SidebarDiagnostics/Dummy.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Dummy.xaml.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/FlatStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/FlatStyle.xaml -------------------------------------------------------------------------------- /SidebarDiagnostics/FlatStyle.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/FlatStyle.xaml.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/Graph.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Graph.xaml -------------------------------------------------------------------------------- /SidebarDiagnostics/Graph.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Graph.xaml.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/GraphModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/GraphModel.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/Monitoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Monitoring.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.ar.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/Resources.ar.resx -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.da.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/Resources.da.resx -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.de-CH.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.de-CH.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/Resources.de-CH.resx -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.de.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/Resources.de.resx -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.es.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/Resources.es.resx -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.fi.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/Resources.fi.resx -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.fr.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/Resources.fr.resx -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.it.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/Resources.it.resx -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.ja.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/Resources.ja.resx -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.nl.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/Resources.nl.resx -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/Resources.resx -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.ru.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/Resources.ru.resx -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/Resources.tr.resx -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.zh.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/Resources.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/Resources.zh.resx -------------------------------------------------------------------------------- /SidebarDiagnostics/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Properties/app.manifest -------------------------------------------------------------------------------- /SidebarDiagnostics/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Settings.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/Settings.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Settings.ico -------------------------------------------------------------------------------- /SidebarDiagnostics/Settings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Settings.xaml -------------------------------------------------------------------------------- /SidebarDiagnostics/Settings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Settings.xaml.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/SettingsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/SettingsModel.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/Setup.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Setup.xaml -------------------------------------------------------------------------------- /SidebarDiagnostics/Setup.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Setup.xaml.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/Sidebar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Sidebar.ico -------------------------------------------------------------------------------- /SidebarDiagnostics/Sidebar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Sidebar.xaml -------------------------------------------------------------------------------- /SidebarDiagnostics/Sidebar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Sidebar.xaml.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/SidebarDiagnostics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/SidebarDiagnostics.csproj -------------------------------------------------------------------------------- /SidebarDiagnostics/SidebarModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/SidebarModel.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/Update.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Update.xaml -------------------------------------------------------------------------------- /SidebarDiagnostics/Update.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Update.xaml.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/UpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/UpdateModel.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Utilities.cs -------------------------------------------------------------------------------- /SidebarDiagnostics/Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/SidebarDiagnostics/Windows.cs -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/renovate.json -------------------------------------------------------------------------------- /resharper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/resharper.svg -------------------------------------------------------------------------------- /sidebar.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thewriteway/SidebarDiagnostics/HEAD/sidebar.ico --------------------------------------------------------------------------------