2
0

Add brightness/contrast sliders, input source switching, and 9-language localization

- Add VCP commands for brightness (10), contrast (12), input source (60)
- Fix UTF-16 encoding for monitor data parsing
- Add system tray app with monitor controls
- Add localization for en, es, fr, de, zh, ja, pt, it, hi
- Update to .NET 9.0
- Add LICENSE and README

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-03 22:11:35 -05:00
parent 6b656ead2d
commit 0352c6b755
34 changed files with 1640 additions and 158 deletions

View File

@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<TargetFramework>net9.0-windows</TargetFramework>
<RootNamespace>CMM.Language</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
@@ -22,13 +22,34 @@
</PropertyGroup>
<ItemGroup>
<None Update="StringResources.en-US.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="StringResources.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="StringResources.zh-TW.xam">
<None Update="StringResources.en.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="StringResources.es.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="StringResources.fr.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="StringResources.de.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="StringResources.zh.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="StringResources.ja.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="StringResources.pt.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="StringResources.it.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="StringResources.hi.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
</ItemGroup>