Initial release: HSUI v1.0.0.0 - HUD replacement with configurable hotbars

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-01-30 23:52:46 -05:00
commit f37369cdda
202 changed files with 40137 additions and 0 deletions
+56
View File
@@ -0,0 +1,56 @@
<Project Sdk="Dalamud.NET.Sdk/14.0.1">
<PropertyGroup Label="Target">
<PlatformTarget>x64</PlatformTarget>
<TargetFramework>net10.0-windows</TargetFramework>
<LangVersion>latest</LangVersion>
<Platforms>x64</Platforms>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup>
<AssemblyName>HSUI</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<InformationalVersion>1.0.0.0</InformationalVersion>
</PropertyGroup>
<PropertyGroup>
<OutputType>Library</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<Nullable>enable</Nullable>
<RestorePackagesWithLockFile>false</RestorePackagesWithLockFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup>
<DalamudVersion>dev</DalamudVersion>
<DalamudLocal>../repos/Dalamud-master/</DalamudLocal>
</PropertyGroup>
<PropertyGroup>
<AssemblySearchPaths>
$(AssemblySearchPaths);
$(DalamudLocal);
$(DalamudLibPath);
</AssemblySearchPaths>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\repos\KamiToolKit-master\KamiToolKit.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="$(ProjectDir)HSUI.json" CopyToOutputDirectory="Always" />
<Content Include="$(ProjectDir)changelog.md" CopyToOutputDirectory="Always" />
<Content Include="$(ProjectDir)Media\**" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Colourful" Version="3.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>