From fe29867929504d694e0828ecb5cd5a437e789ca0 Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Wed, 11 Oct 2023 10:19:58 +0200 Subject: [PATCH] Add LLib --- .gitmodules | 3 +++ ARControl.sln | 6 ++++++ ARControl/ARControl.csproj | 4 ++++ ARControl/Windows/ConfigWindow.cs | 3 +++ ARControl/packages.lock.json | 3 +++ LLib | 1 + 6 files changed, 20 insertions(+) create mode 100644 .gitmodules create mode 160000 LLib diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..9124e51 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "LLib"] + path = LLib + url = git@git.carvel.li:liza/LLib.git diff --git a/ARControl.sln b/ARControl.sln index 1450d62..ea815c0 100644 --- a/ARControl.sln +++ b/ARControl.sln @@ -2,6 +2,8 @@ Microsoft Visual Studio Solution File, Format Version 12.00 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ARControl", "ARControl\ARControl.csproj", "{B33BF820-56C2-45A1-AEEC-3DCF526DBF42}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LLib", "LLib\LLib.csproj", "{C00249D7-E550-4A3F-937B-D938D1D46B8A}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -12,5 +14,9 @@ Global {B33BF820-56C2-45A1-AEEC-3DCF526DBF42}.Debug|Any CPU.Build.0 = Debug|Any CPU {B33BF820-56C2-45A1-AEEC-3DCF526DBF42}.Release|Any CPU.ActiveCfg = Release|Any CPU {B33BF820-56C2-45A1-AEEC-3DCF526DBF42}.Release|Any CPU.Build.0 = Release|Any CPU + {C00249D7-E550-4A3F-937B-D938D1D46B8A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C00249D7-E550-4A3F-937B-D938D1D46B8A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C00249D7-E550-4A3F-937B-D938D1D46B8A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C00249D7-E550-4A3F-937B-D938D1D46B8A}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection EndGlobal diff --git a/ARControl/ARControl.csproj b/ARControl/ARControl.csproj index 7134b01..e3dfdbe 100644 --- a/ARControl/ARControl.csproj +++ b/ARControl/ARControl.csproj @@ -23,6 +23,10 @@ $(DALAMUD_HOME)/ + + + + diff --git a/ARControl/Windows/ConfigWindow.cs b/ARControl/Windows/ConfigWindow.cs index 215547a..97f3672 100644 --- a/ARControl/Windows/ConfigWindow.cs +++ b/ARControl/Windows/ConfigWindow.cs @@ -13,6 +13,7 @@ using Dalamud.Plugin.Services; using ECommons; using ECommons.ImGuiMethods; using ImGuiNET; +using LLib; namespace ARControl.Windows; @@ -74,6 +75,8 @@ internal sealed class ConfigWindow : Window public override void Draw() { + LImGui.AddPatreonIcon(_pluginInterface); + if (ImGui.BeginTabBar("ARConfigTabs")) { DrawVentureLists(); diff --git a/ARControl/packages.lock.json b/ARControl/packages.lock.json index 6cf1c73..784f99f 100644 --- a/ARControl/packages.lock.json +++ b/ARControl/packages.lock.json @@ -7,6 +7,9 @@ "requested": "[2.1.12, )", "resolved": "2.1.12", "contentHash": "Sc0PVxvgg4NQjcI8n10/VfUQBAS4O+Fw2pZrAqBdRMbthYGeogzu5+xmIGCGmsEZ/ukMOBuAqiNiB5qA3MRalg==" + }, + "llib": { + "type": "Project" } } } diff --git a/LLib b/LLib new file mode 160000 index 0000000..abbbec4 --- /dev/null +++ b/LLib @@ -0,0 +1 @@ +Subproject commit abbbec4f26b1a8903b0cd7aa04f00d557602eaf3