Implement console chat visibility controls

Agent-Logs-Url: https://github.com/MCCTeam/Minecraft-Console-Client/sessions/159bd460-7950-4afe-9e69-4892220665e1

Co-authored-by: milutinke <441903+milutinke@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-05-04 11:17:45 +00:00 committed by GitHub
parent 9c994de2ee
commit 7bf342baab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 226 additions and 2 deletions

View file

@ -1429,6 +1429,15 @@ namespace MinecraftClient {
}
}
/// <summary>
/// Looks up a localized string similar to Whether to display received chat messages in the console. This does not affect chat bots or chat log files..
/// </summary>
internal static string Console_General_Display_Chat {
get {
return ResourceManager.GetString("Console.General.Display_Chat", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Maximum number of input history records to keep..
/// </summary>

View file

@ -589,6 +589,9 @@ Custom colors are only available when using "vt100_24bit" color mode.</value>
<data name="Console.General.Display_Input" xml:space="preserve">
<value>You can use "Ctrl+P" to print out the current input and cursor position.</value>
</data>
<data name="Console.General.Display_Chat" xml:space="preserve">
<value>Whether to display received chat messages in the console. This does not affect chat bots or chat log files.</value>
</data>
<data name="Console.General.History_Input_Records" xml:space="preserve">
<value>Maximum number of input history records to keep.</value>
</data>