refactor: replace Console.WriteLine with DiagnosticLog service
All checks were successful
CI / Build (Linux) (push) Successful in 21s

Replace 495+ Console.WriteLine debug statements across handlers, dispatching, services, views, and window components with centralized DiagnosticLog service for proper logging infrastructure. Add new DiagnosticLog.cs service with Debug/Error methods to eliminate debug logging pollution in production code.
This commit is contained in:
2026-03-06 22:06:08 -05:00
parent 08e0c4d2b9
commit e55230c441
70 changed files with 814 additions and 638 deletions

View File

@@ -2,13 +2,13 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>OpenMaui.Controls.Linux</id>
<version>1.0.0-preview.1</version>
<version>1.0.0</version>
<title>OpenMaui Linux Controls</title>
<authors>MarketAlly LLC, David H. Friedel Jr.</authors>
<owners>MarketAlly LLC</owners>
<license type="expression">MIT</license>
<projectUrl>https://github.com/open-maui/maui-linux</projectUrl>
<iconUrl>https://raw.githubusercontent.com/dotnet/maui/main/assets/icon.png</iconUrl>
<projectUrl>https://git.marketally.com/open-maui/maui-linux</projectUrl>
<iconUrl>https://git.marketally.com/open-maui/maui-linux/raw/branch/main/assets/icon.png</iconUrl>
<description>
Linux desktop support for .NET MAUI applications. This package enables running MAUI applications on Linux desktop environments using SkiaSharp for rendering.
@@ -24,22 +24,16 @@ Features:
Developed by MarketAlly LLC. Lead Architect: David H. Friedel Jr.
</description>
<releaseNotes>
Initial release:
- Core SkiaSharp-based rendering engine
- X11 window management with full input handling
- 35+ control implementations
- 18 platform services
- Accessibility support
- 216 unit tests
1.0: 100% .NET MAUI API compliance - all public APIs use MAUI types (Color, Rect, Size, Thickness, double). Full XAML support with BindableProperty for all controls, Visual State Manager integration, data binding, and XAML styles. Core SkiaSharp-based rendering engine, X11 window management with full input handling, 35+ control implementations, 18 platform services, accessibility support. 217 passing tests.
</releaseNotes>
<copyright>Copyright 2025 MarketAlly LLC</copyright>
<copyright>Copyright 2025-2026 MarketAlly LLC</copyright>
<tags>maui linux desktop skia gui cross-platform dotnet openmaui</tags>
<repository type="git" url="https://github.com/open-maui/maui-linux.git" />
<repository type="git" url="https://git.marketally.com/open-maui/maui-linux.git" />
<dependencies>
<group targetFramework="net9.0">
<dependency id="Microsoft.Maui.Controls" version="9.0.0" />
<dependency id="SkiaSharp" version="2.88.8" />
<dependency id="SkiaSharp.NativeAssets.Linux" version="2.88.8" />
<dependency id="Microsoft.Maui.Controls" version="9.0.40" />
<dependency id="SkiaSharp" version="2.88.9" />
<dependency id="SkiaSharp.NativeAssets.Linux" version="2.88.9" />
</group>
</dependencies>
<frameworkAssemblies>