rebranding changes

I hope I got everything but its a lot tbh
This commit is contained in:
2025-08-30 21:25:22 +02:00
parent eccfc5b3f0
commit a56ccc5211
44 changed files with 219 additions and 216 deletions

View File

@@ -26,22 +26,22 @@ public class CensusPopupHandler : IPopupHandler
var start = 0f;
using (_uiSharedService.UidFont.Push())
{
start = ImGui.GetCursorPosY() - ImGui.CalcTextSize("Mare Census Data").Y;
UiSharedService.TextWrapped("Mare Census Participation");
start = ImGui.GetCursorPosY() - ImGui.CalcTextSize("Namazu Census Data").Y;
UiSharedService.TextWrapped("Namazu Census Participation");
}
ImGuiHelpers.ScaledDummy(5f);
UiSharedService.TextWrapped("If you are seeing this popup you are updating from a Mare version that did not collect census data. Please read the following carefully.");
UiSharedService.TextWrapped("If you are seeing this popup you are updating from a Namazu version that did not collect census data. Please read the following carefully.");
ImGui.Separator();
UiSharedService.TextWrapped("Mare Census is a data collecting service that can be used for statistical purposes. " +
"All data collected through Mare Census is temporary and will be stored associated with your UID on the connected service as long as you are connected. " +
UiSharedService.TextWrapped("Namazu Census is a data collecting service that can be used for statistical purposes. " +
"All data collected through Namazu Census is temporary and will be stored associated with your UID on the connected service as long as you are connected. " +
"The data cannot be used for long term tracking of individuals.");
UiSharedService.TextWrapped("If enabled, Mare Census will collect following data:" + Environment.NewLine
UiSharedService.TextWrapped("If enabled, Namazu Census will collect following data:" + Environment.NewLine
+ "- Currently connected World" + Environment.NewLine
+ "- Current Gender (reflecting Glamourer changes)" + Environment.NewLine
+ "- Current Race (reflecting Glamourer changes)" + Environment.NewLine
+ "- Current Clan (i.e. Seeker of the Sun, Keeper of the Moon, etc., reflecting Glamourer changes)");
UiSharedService.TextWrapped("To consent to collecting census data press the appropriate button below.");
UiSharedService.TextWrapped("This setting can be changed anytime in the Mare Settings.");
UiSharedService.TextWrapped("This setting can be changed anytime in the Namazu Settings.");
var width = ImGui.GetWindowContentRegionMax().X - ImGui.GetWindowContentRegionMin().X;
var buttonSize = ImGuiHelpers.GetButtonSize("I consent to send my census data");
ImGuiHelpers.ScaledDummy(5f);

View File

@@ -18,7 +18,7 @@ public class PopupHandler : WindowMediatorSubscriberBase
public PopupHandler(ILogger<PopupHandler> logger, MareMediator mediator, IEnumerable<IPopupHandler> popupHandlers,
PerformanceCollectorService performanceCollectorService, UiSharedService uiSharedService)
: base(logger, mediator, "MarePopupHandler", performanceCollectorService)
: base(logger, mediator, "NamazuPopupHandler", performanceCollectorService)
{
Flags = ImGuiWindowFlags.NoBringToFrontOnFocus
| ImGuiWindowFlags.NoDecoration