Files
TeslaSuite/Launcher/TeslaLauncher.csproj
T
CydandClaude Fable 5 3d186293bf Plasma display: send the real clear+home; bump suite to 4.11.4.4
The provisioning text on the pod's plasma panel came up garbled — stale
content bleeding through, new text overlapping at the wrong position.
Root cause recovered from the dumped PD01D221 controller firmware
(vrio/PlasmaNew): PlasmaWriter.ClearAll() sent ESC J, which on this
controller is NOT a clear — it toggles an orientation/mode bit — so the
panel never cleared and the cursor never homed.

Fix: ClearAll() now sends the real commands ESC @ (clear active buffer,
reset text state) + ESC L (home to 0,0), and the writer hides the cursor
once at open with ESC G 0 — exactly what the game and the ROM's own demo
do. Verified by running the launcher's actual byte streams through the
firmware-modeled vPLASMA emulator: the old ESC J path left stale pixels
(732 lit vs 404); the new path renders byte-identical to a freshly
cleared panel (404 lit, cursor hidden).

Version bumped 4.11.4.3 -> 4.11.4.4 across Launcher, Console, vPOD, the
install/build banners, and the diff-suite version assertion. This cuts a
clean release boundary that also carries the earlier field fixes
(process-tree kill on Stop, Win10 install.bat icacls quoting, real system
volume + pre-uninstall opt-in, and the volume menu check-mark fix).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-17 21:03:30 -05:00

43 lines
1.8 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<!-- ===========================================================================
XP11 single-binary launcher.
TargetFramework net40 is deliberate: it is the newest .NET Framework that
installs on Windows XP SP3, and net40 assemblies load in-place on the 4.8
runtime that ships in Windows 10/11 — so this ONE exe covers XP SP3
through Windows 11. Everything net45+ is off-limits here:
- System.Text.Json -> Newtonsoft.Json (Tesla.Contract)
- ZipFile/ZipArchive -> MiniZip.cs
- async/await, Task.Run -> threads
- RSA.Create(int) -> RSACryptoServiceProvider
=========================================================================== -->
<PropertyGroup>
<TargetFramework>net40</TargetFramework>
<OutputType>WinExe</OutputType>
<Nullable>disable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<Version>4.11.4.4</Version>
<ApplicationIcon>app.ico</ApplicationIcon>
<AssemblyName>TeslaLauncher</AssemblyName>
<RootNamespace>Tesla.Launcher</RootNamespace>
<StartupObject>Tesla.Launcher.LauncherApplication</StartupObject>
<!-- SecureConfig.cs shows the PasscodeDisplayForm in-process. -->
<DefineConstants>$(DefineConstants);WINFORMS</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
<!-- WinForms via plain framework references: UseWindowsForms is not wired up
for net40, and all UI here is code-built (no designer). -->
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Drawing" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Contract\Tesla.Contract.csproj" />
</ItemGroup>
</Project>