From f6d06a652dfdab78f29a9f0d7318aa20fe08213a Mon Sep 17 00:00:00 2001 From: Administrator Date: Fri, 2 Jan 2026 23:59:37 +0200 Subject: [PATCH] Rename project from GlamourBrowser --- .gitignore | 3 +++ GlamourBrowser/Commands.cs | 2 +- GlamourBrowser/Configuration.cs | 2 +- GlamourBrowser/DataCache.cs | 2 +- GlamourBrowser/Interop/Glamourer.cs | 2 +- GlamourBrowser/Plugin.cs | 2 +- GlamourBrowser/PluginUi.cs | 4 ++-- GlamourBrowser/Service.cs | 2 +- GlamourBrowser/Ui/MainInterface.cs | 2 +- 9 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 2f79f39..af44468 100644 --- a/.gitignore +++ b/.gitignore @@ -367,3 +367,6 @@ FodyWeavers.xsd Glamaholic/.github/ .idea/ +/.claude +/.claude/settings.local.json +/nul diff --git a/GlamourBrowser/Commands.cs b/GlamourBrowser/Commands.cs index a1a0c82..4db62ff 100644 --- a/GlamourBrowser/Commands.cs +++ b/GlamourBrowser/Commands.cs @@ -1,7 +1,7 @@ using Dalamud.Game.Command; using System; -namespace Glamaholic { +namespace GlamourBrowser { internal class Commands : IDisposable { private Plugin Plugin { get; } diff --git a/GlamourBrowser/Configuration.cs b/GlamourBrowser/Configuration.cs index 05a4ae0..7771e55 100644 --- a/GlamourBrowser/Configuration.cs +++ b/GlamourBrowser/Configuration.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; using System.Linq; -namespace Glamaholic { +namespace GlamourBrowser { [Serializable] internal class Configuration : IPluginConfiguration { private const int CURRENT_VERSION = 1; diff --git a/GlamourBrowser/DataCache.cs b/GlamourBrowser/DataCache.cs index aa9f9f8..d4c2da7 100644 --- a/GlamourBrowser/DataCache.cs +++ b/GlamourBrowser/DataCache.cs @@ -5,7 +5,7 @@ using System; using System.Collections.Immutable; using System.Linq; -namespace Glamaholic { +namespace GlamourBrowser { internal class DataCache { public static Lazy> EquippableItems { get; } = new(() => Service.DataManager.GetExcelSheet(ClientLanguage.English)! diff --git a/GlamourBrowser/Interop/Glamourer.cs b/GlamourBrowser/Interop/Glamourer.cs index 1b65fff..406d6d2 100644 --- a/GlamourBrowser/Interop/Glamourer.cs +++ b/GlamourBrowser/Interop/Glamourer.cs @@ -5,7 +5,7 @@ using HeightAdjuster.Interop.Glamourer; using System; using System.Collections.Generic; -namespace Glamaholic.Interop { +namespace GlamourBrowser.Interop { internal class Glamourer { private static SetItem _SetItem { get; set; } = null!; private static GetState _GetState { get; set; } = null!; diff --git a/GlamourBrowser/Plugin.cs b/GlamourBrowser/Plugin.cs index 5442bcf..f6d459c 100644 --- a/GlamourBrowser/Plugin.cs +++ b/GlamourBrowser/Plugin.cs @@ -2,7 +2,7 @@ using Dalamud.Plugin; using Dalamud.Plugin.Services; using System; -namespace Glamaholic { +namespace GlamourBrowser { public class Plugin : IDalamudPlugin { internal static string Name => "GlamourBrowser"; diff --git a/GlamourBrowser/PluginUi.cs b/GlamourBrowser/PluginUi.cs index e8d6fab..e2c117e 100644 --- a/GlamourBrowser/PluginUi.cs +++ b/GlamourBrowser/PluginUi.cs @@ -1,8 +1,8 @@ using Dalamud.Interface.Textures.TextureWraps; -using Glamaholic.Ui; +using GlamourBrowser.Ui; using System; -namespace Glamaholic { +namespace GlamourBrowser { internal class PluginUi : IDisposable { internal Plugin Plugin { get; } diff --git a/GlamourBrowser/Service.cs b/GlamourBrowser/Service.cs index e4e8e92..6e4bfc4 100644 --- a/GlamourBrowser/Service.cs +++ b/GlamourBrowser/Service.cs @@ -3,7 +3,7 @@ using Dalamud.IoC; using Dalamud.Plugin; using Dalamud.Plugin.Services; -namespace Glamaholic { +namespace GlamourBrowser { internal class Service { [PluginService] internal static IPluginLog Log { get; private set; } = null!; diff --git a/GlamourBrowser/Ui/MainInterface.cs b/GlamourBrowser/Ui/MainInterface.cs index 4804818..5f123d2 100644 --- a/GlamourBrowser/Ui/MainInterface.cs +++ b/GlamourBrowser/Ui/MainInterface.cs @@ -7,7 +7,7 @@ using System.Collections.Immutable; using System.Linq; using System.Numerics; -namespace Glamaholic.Ui { +namespace GlamourBrowser.Ui { internal class MainInterface { internal const int IconSize = 48; private const int ItemsPerRow = 5;