fix(ui): match retail vitae and character info

Restore Vitae's omitted penalty paragraph, replace the invented character summary with gmCharacterInfoUI's ordered report and property meanings, preserve authored translucent body surfaces, and initialize the end-session button in its visible Normal DAT state.

Release build and all 5,830 tests pass with five intentional skips. Connected visual gate pending.

Co-authored-by: OpenAI Codex <codex@openai.com>
This commit is contained in:
Erik 2026-07-17 12:06:14 +02:00
parent d1d603105f
commit 16c21e299c
21 changed files with 771 additions and 303 deletions

View file

@ -76,6 +76,24 @@ public sealed class RetailWindowFrameTests
Assert.Equal(0.75f, frame.Opacity);
}
[Fact]
public void NineSlice_CanSupplyBorderWithoutDuplicatingAuthoredCenter()
{
var root = new UiRoot { Width = 800, Height = 600 };
var content = new UiPanel { Width = 300, Height = 362 };
RetailWindowHandle handle = RetailWindowFrame.Mount(
root, content, NoTex,
new RetailWindowFrame.Options
{
WindowName = "character-info",
DrawChromeCenter = false,
});
var frame = Assert.IsType<UiNineSlicePanel>(handle.OuterFrame);
Assert.False(frame.DrawCenterFill);
}
[Fact]
public void CollapsibleMount_ReturnsToolbarFrameAndIndependentAxes()
{