Rename project from GlamourBrowser
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -367,3 +367,6 @@ FodyWeavers.xsd
|
||||
Glamaholic/.github/
|
||||
|
||||
.idea/
|
||||
/.claude
|
||||
/.claude/settings.local.json
|
||||
/nul
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using Dalamud.Game.Command;
|
||||
using System;
|
||||
|
||||
namespace Glamaholic {
|
||||
namespace GlamourBrowser {
|
||||
internal class Commands : IDisposable {
|
||||
private Plugin Plugin { get; }
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -5,7 +5,7 @@ using System;
|
||||
using System.Collections.Immutable;
|
||||
using System.Linq;
|
||||
|
||||
namespace Glamaholic {
|
||||
namespace GlamourBrowser {
|
||||
internal class DataCache {
|
||||
public static Lazy<ImmutableList<Item>> EquippableItems { get; } =
|
||||
new(() => Service.DataManager.GetExcelSheet<Item>(ClientLanguage.English)!
|
||||
|
||||
@@ -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!;
|
||||
|
||||
@@ -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";
|
||||
|
||||
|
||||
@@ -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; }
|
||||
|
||||
|
||||
@@ -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!;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user