Character Data Hub branding

This commit is contained in:
Loporrit
2025-06-28 17:00:42 +00:00
parent cf827529ab
commit 132d757943
3 changed files with 23 additions and 23 deletions

View File

@@ -76,7 +76,7 @@ internal sealed partial class CharaDataHubUi : WindowMediatorSubscriberBase
CharaDataManager charaDataManager, CharaDataNearbyManager charaDataNearbyManager, CharaDataConfigService configService,
UiSharedService uiSharedService, ServerConfigurationManager serverConfigurationManager,
DalamudUtilService dalamudUtilService, FileDialogManager fileDialogManager, PairManager pairManager)
: base(logger, mediator, "Mare Synchronos Character Data Hub###MareSynchronosCharaDataUI", performanceCollectorService)
: base(logger, mediator, "Loporrit Character Data Hub###LoporritCharaDataUI", performanceCollectorService)
{
SetWindowSizeConstraints();
@@ -275,7 +275,7 @@ internal sealed partial class CharaDataHubUi : WindowMediatorSubscriberBase
flags = ImGuiTabItemFlags.SetSelected;
_openMcdOnlineOnNextRun = false;
}
using (var mcdOnlineTabItem = ImRaii.TabItem("MCD Online", flags))
using (var mcdOnlineTabItem = ImRaii.TabItem("Online Data", flags))
{
if (mcdOnlineTabItem)
{
@@ -666,7 +666,7 @@ internal sealed partial class CharaDataHubUi : WindowMediatorSubscriberBase
if (yourOwnTabItem)
{
DrawHelpFoldout("You can apply character data you created yourself in this tab. If the list is not populated press on \"Download your Character Data\"." + Environment.NewLine + Environment.NewLine
+ "To create new and edit your existing character data use the \"MCD Online\" tab.");
+ "To create new and edit your existing character data use the \"Online Data\" tab.");
ImGuiHelpers.ScaledDummy(5);
@@ -849,9 +849,9 @@ internal sealed partial class CharaDataHubUi : WindowMediatorSubscriberBase
private void DrawMcdfExport()
{
_uiSharedService.BigText("Mare Character Data File Export");
_uiSharedService.BigText("MCDF File Export");
DrawHelpFoldout("This feature allows you to pack your character into a MCDF file and manually send it to other people. MCDF files can officially only be imported during GPose through Mare. " +
DrawHelpFoldout("This feature allows you to pack your character into a MCDF file and manually send it to other people. MCDF files be imported during GPose. " +
"Be aware that the possibility exists that people write unofficial custom exporters to extract the containing data.");
ImGuiHelpers.ScaledDummy(5);
@@ -907,7 +907,7 @@ internal sealed partial class CharaDataHubUi : WindowMediatorSubscriberBase
UiSharedService.ColorText(data.FullId, UiSharedService.GetBoolColor(data.CanBeDownloaded));
if (!data.CanBeDownloaded)
{
UiSharedService.AttachToolTip("This data is incomplete on the server and cannot be downloaded. Contact the owner so they can fix it. If you are the owner, review the data in the MCD Online tab.");
UiSharedService.AttachToolTip("This data is incomplete on the server and cannot be downloaded. Contact the owner so they can fix it. If you are the owner, review the data in the Online Data tab.");
}
var offsetFromRight = availableWidth - _uiSharedService.GetIconData(FontAwesomeIcon.Calendar).X - _uiSharedService.GetIconButtonSize(FontAwesomeIcon.ArrowRight).X
@@ -941,7 +941,7 @@ internal sealed partial class CharaDataHubUi : WindowMediatorSubscriberBase
{
using (ImRaii.Disabled(_isHandlingSelf))
{
if (_uiSharedService.IconTextButton(FontAwesomeIcon.Edit, "Open in MCD Online Editor"))
if (_uiSharedService.IconTextButton(FontAwesomeIcon.Edit, "Open in Online Data Editor"))
{
SelectedDtoId = data.Id;
_openMcdOnlineOnNextRun = true;
@@ -949,7 +949,7 @@ internal sealed partial class CharaDataHubUi : WindowMediatorSubscriberBase
}
if (_isHandlingSelf)
{
UiSharedService.AttachToolTip("Cannot use MCD Online while having Character Data applied to self.");
UiSharedService.AttachToolTip("Cannot use Online Data while having Character Data applied to self.");
}
}
@@ -1040,14 +1040,14 @@ internal sealed partial class CharaDataHubUi : WindowMediatorSubscriberBase
_configService.Current.OpenMareHubOnGposeStart = openInGpose;
_configService.Save();
}
_uiSharedService.DrawHelpText("This will automatically open the import menu when loading into Gpose. If unchecked you can open the menu manually with /mare gpose");
_uiSharedService.DrawHelpText("This will automatically open the import menu when loading into Gpose. If unchecked you can open the menu manually with /sync gpose");
bool downloadDataOnConnection = _configService.Current.DownloadMcdDataOnConnection;
if (ImGui.Checkbox("Download MCD Online Data on connecting", ref downloadDataOnConnection))
if (ImGui.Checkbox("Download Online Character Data on connecting", ref downloadDataOnConnection))
{
_configService.Current.DownloadMcdDataOnConnection = downloadDataOnConnection;
_configService.Save();
}
_uiSharedService.DrawHelpText("This will automatically download MCD Online data (Your Own and Shared with You) once a connection is established to the server.");
_uiSharedService.DrawHelpText("This will automatically download Online Character Data data (Your Own and Shared with You) once a connection is established to the server.");
bool showHelpTexts = _configService.Current.ShowHelpTexts;
if (ImGui.Checkbox("Show \"What is this? (Explanation / Help)\" foldouts", ref showHelpTexts))