From a24eddeb995ea8a27052fc399ef311bffb9505ac Mon Sep 17 00:00:00 2001 From: Administrator Date: Sun, 4 Jan 2026 01:31:59 +0200 Subject: [PATCH] added README.md file with project overview and setup instructions. Removed item lookup for glasses --- GlamourBrowser/Ui/MainInterface.cs | 13 ------- README.md | 59 ++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+), 13 deletions(-) create mode 100644 README.md diff --git a/GlamourBrowser/Ui/MainInterface.cs b/GlamourBrowser/Ui/MainInterface.cs index 9551975..e7240cb 100644 --- a/GlamourBrowser/Ui/MainInterface.cs +++ b/GlamourBrowser/Ui/MainInterface.cs @@ -326,19 +326,6 @@ namespace GlamourBrowser.Ui { private unsafe void DrawGlassesSlot() { ImGui.TextUnformatted("Glasses"); - ImGui.SameLine(); - ImGui.PushStyleVar(ImGuiStyleVar.FramePadding, new Vector2(2, 2)); - if (ImGui.Button("?##info-Glasses", new Vector2(20, 20))) { - if (SelectedGlasses.HasValue) { - Interop.AT.OpenMoreInformationSub(SelectedGlasses.Value.RowId.ToString()); - } - } - ImGui.PopStyleVar(); - - if (ImGui.IsItemHovered()) { - ImGui.SetTooltip("Click to see item location"); - } - var drawCursor = ImGui.GetCursorScreenPos(); var slotSize = SelectedGearIconSize + SelectedGearPaddingSize; var borderColour = *ImGui.GetStyleColorVec4(ImGuiCol.Border); diff --git a/README.md b/README.md new file mode 100644 index 0000000..16a3ac5 --- /dev/null +++ b/README.md @@ -0,0 +1,59 @@ +# GlamourBrowser + +A Dalamud plugin for Final Fantasy XIV that provides an intuitive visual browser for equipment items and glamour customization. + +## Features + +- **Visual Item Browser** - Browse all equippable items with icon previews organized by equipment slot +- **Real-time Preview** - Click any item to instantly apply it to your character via Glamourer +- **Dye System** - Full dye/stain control with color previews and search functionality for each equipment slot +- **Glasses Support** - Browse and apply bonus items (glasses/facewear) with proper icon display +- **Search & Filter** - Quickly find items with the built-in search that persists across category tabs +- **Allagan Tools Integration** - View detailed item information and locations directly from the browser +- **Gear Set Management** - Apply complete sets of equipment with dyes in one click + +## Requirements + +- **Glamourer** - Required for applying equipment changes to your character +- **Allagan Tools** (Optional) - Enhances the experience with item location lookup + +## Installing + +GlamourBrowser can be installed through a custom Dalamud repository: + +1. Open Dalamud Settings in-game with `/xlsettings` +2. Go to "Experimental" tab +3. Add the following custom repository URL: + ``` + https://gitea.lozy.pink/lozy360/DalamudPluginRepo/raw/branch/main/custom.json + ``` +4. Click the "+" button to save +5. Open the Plugin Installer and search for "GlamourBrowser" + +## Usage + +### Basic Operation + +1. Open the plugin with `/gbrowser` or through the plugin menu +2. Use the category tabs (Head, Body, Gloves, Legs, Feet, Glasses) to browse items +3. Click any item to instantly apply it to your character +4. Right-click items in the "Selected Gear" panel to remove them + +### Dye Customization + +- Each equipment slot in "Selected Gear" shows two dye dropdowns +- Click a dye dropdown to see color previews and search for specific dyes +- Right-click a dye to remove it +- Dyes are applied automatically when you change them + +### Search & Filtering + +- Use the search bar at the top to filter items by name +- The filter persists independently for each category tab +- Works for both regular equipment and glasses + +## Credits + +- **Glamourer** - For providing the API that makes equipment preview possible +- **Allagan Tools** - For item information and location lookup integration +- **Dalamud & XIVLauncher** - For the plugin framework