├── .gitignore ├── README.md ├── ShiroProcessReporter.sln └── ShiroProcessReporter ├── ShiroProcessReporter (Package) ├── Images │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── Package.appxmanifest └── ShiroProcessReporter (Package).wapproj └── ShiroProcessReporter ├── App.xaml ├── App.xaml.cs ├── Components ├── TrayIconView.xaml └── TrayIconView.xaml.cs ├── Converters ├── AppThemeToImageSourceConverter.cs ├── LogLevelToColorConverter.cs └── ReplaceRulesDictionaryToArrayConverter.cs ├── Extensions └── MemoryLoggerExtension.cs ├── Helper ├── AppLogHelper.cs ├── DataContextWrapper.cs ├── Debouncer.cs ├── GlobalState.cs ├── GlobalStateWrapper.cs └── Preferences.cs ├── Layouts ├── Navigation.xaml └── Navigation.xaml.cs ├── Loggers └── MemoryLogger.cs ├── MainView.xaml ├── MainView.xaml.cs ├── Models ├── FilterRule.cs ├── LogEntry.cs └── ReplaceRule.cs ├── NativeMethods.txt ├── Properties └── PublishProfiles │ ├── win-arm64.pubxml │ ├── win-x64.pubxml │ └── win-x86.pubxml ├── Providers └── MemoryLoggerProvider.cs ├── Resources ├── Images │ ├── bug-black.svg │ ├── bug-white.svg │ ├── cloud-server-black.svg │ ├── cloud-server-white.svg │ ├── filter-black.svg │ ├── filter-white.svg │ ├── mix_space.png │ ├── replace-black.svg │ └── replace-white.svg └── TrayIcon │ ├── flower.ico │ ├── flower.svg │ ├── flower_light.ico │ └── flower_light.svg ├── Services ├── MediaTraceService.cs ├── ProcessTraceService.cs ├── ReportService.cs └── TraceWorkerService.cs ├── ShiroProcessReporter.csproj ├── Views ├── EndpointSettings.xaml ├── EndpointSettings.xaml.cs ├── FilterRuleSettings.xaml ├── FilterRuleSettings.xaml.cs ├── LogViewer.xaml ├── LogViewer.xaml.cs ├── ReplaceRuleSettings.xaml └── ReplaceRuleSettings.xaml.cs └── app.manifest /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/README.md -------------------------------------------------------------------------------- /ShiroProcessReporter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter.sln -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/StoreLogo.backup.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/Package.appxmanifest -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter (Package)/ShiroProcessReporter (Package).wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter (Package)/ShiroProcessReporter (Package).wapproj -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/App.xaml -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/App.xaml.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Components/TrayIconView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Components/TrayIconView.xaml -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Components/TrayIconView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Components/TrayIconView.xaml.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Converters/AppThemeToImageSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Converters/AppThemeToImageSourceConverter.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Converters/LogLevelToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Converters/LogLevelToColorConverter.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Converters/ReplaceRulesDictionaryToArrayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Converters/ReplaceRulesDictionaryToArrayConverter.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Extensions/MemoryLoggerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Extensions/MemoryLoggerExtension.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Helper/AppLogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Helper/AppLogHelper.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Helper/DataContextWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Helper/DataContextWrapper.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Helper/Debouncer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Helper/Debouncer.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Helper/GlobalState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Helper/GlobalState.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Helper/GlobalStateWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Helper/GlobalStateWrapper.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Helper/Preferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Helper/Preferences.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Layouts/Navigation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Layouts/Navigation.xaml -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Layouts/Navigation.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Layouts/Navigation.xaml.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Loggers/MemoryLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Loggers/MemoryLogger.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/MainView.xaml -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/MainView.xaml.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Models/FilterRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Models/FilterRule.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Models/LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Models/LogEntry.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Models/ReplaceRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Models/ReplaceRule.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/NativeMethods.txt -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Properties/PublishProfiles/win-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Properties/PublishProfiles/win-arm64.pubxml -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Properties/PublishProfiles/win-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Properties/PublishProfiles/win-x64.pubxml -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Properties/PublishProfiles/win-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Properties/PublishProfiles/win-x86.pubxml -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Providers/MemoryLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Providers/MemoryLoggerProvider.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Resources/Images/bug-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Resources/Images/bug-black.svg -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Resources/Images/bug-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Resources/Images/bug-white.svg -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Resources/Images/cloud-server-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Resources/Images/cloud-server-black.svg -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Resources/Images/cloud-server-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Resources/Images/cloud-server-white.svg -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Resources/Images/filter-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Resources/Images/filter-black.svg -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Resources/Images/filter-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Resources/Images/filter-white.svg -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Resources/Images/mix_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Resources/Images/mix_space.png -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Resources/Images/replace-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Resources/Images/replace-black.svg -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Resources/Images/replace-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Resources/Images/replace-white.svg -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Resources/TrayIcon/flower.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Resources/TrayIcon/flower.ico -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Resources/TrayIcon/flower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Resources/TrayIcon/flower.svg -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Resources/TrayIcon/flower_light.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Resources/TrayIcon/flower_light.ico -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Resources/TrayIcon/flower_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Resources/TrayIcon/flower_light.svg -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Services/MediaTraceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Services/MediaTraceService.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Services/ProcessTraceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Services/ProcessTraceService.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Services/ReportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Services/ReportService.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Services/TraceWorkerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Services/TraceWorkerService.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/ShiroProcessReporter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/ShiroProcessReporter.csproj -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Views/EndpointSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Views/EndpointSettings.xaml -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Views/EndpointSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Views/EndpointSettings.xaml.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Views/FilterRuleSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Views/FilterRuleSettings.xaml -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Views/FilterRuleSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Views/FilterRuleSettings.xaml.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Views/LogViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Views/LogViewer.xaml -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Views/LogViewer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Views/LogViewer.xaml.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Views/ReplaceRuleSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Views/ReplaceRuleSettings.xaml -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/Views/ReplaceRuleSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/Views/ReplaceRuleSettings.xaml.cs -------------------------------------------------------------------------------- /ShiroProcessReporter/ShiroProcessReporter/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChingCdesu/ShiroProcessReporter/HEAD/ShiroProcessReporter/ShiroProcessReporter/app.manifest --------------------------------------------------------------------------------