Compare commits

...

3 Commits

Author SHA1 Message Date
Anna 592938de72
chore: remove api level 2022-08-21 03:56:42 -04:00
Anna 672cc6a8cf
chore: bump version to 1.2.8 2022-08-21 03:56:30 -04:00
Anna 827dae5383
chore: update for api7 and net6 2022-08-21 03:56:15 -04:00
3 changed files with 57 additions and 12 deletions

View File

@ -26,7 +26,7 @@ namespace Tourist {
this.Plugin = plugin;
var vistaUnlockedPtr = this.Plugin.SigScanner.ScanText("E8 ?? ?? ?? ?? E9 ?? ?? ?? ?? 8B CE E8 ?? ?? ?? ?? E9");
this.VistaUnlockedHook = new Hook<VistaUnlockedDelegate>(vistaUnlockedPtr, this.OnVistaUnlock);
this.VistaUnlockedHook = Hook<VistaUnlockedDelegate>.FromAddress(vistaUnlockedPtr, this.OnVistaUnlock);
this.VistaUnlockedHook.Enable();
var maskPtr = this.Plugin.SigScanner.GetStaticAddressFromSig("8B F2 48 8D 0D ?? ?? ?? ?? 8B D3");

View File

@ -1,34 +1,47 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.2.7</Version>
<TargetFramework>net5-windows</TargetFramework>
<Version>1.2.8</Version>
<TargetFramework>net6-windows</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
<PropertyGroup>
<DalamudLibPath>$(AppData)\XIVLauncher\addon\Hooks\dev</DalamudLibPath>
</PropertyGroup>
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">
<DalamudLibPath>$(DALAMUD_HOME)</DalamudLibPath>
</PropertyGroup>
<PropertyGroup Condition="'$(IsCI)' == 'true'">
<DalamudLibPath>$(HOME)/dalamud</DalamudLibPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dalamud">
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Dalamud.dll</HintPath>
<HintPath>$(DalamudLibPath)\Dalamud.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ImGui.NET">
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\ImGui.NET.dll</HintPath>
<HintPath>$(DalamudLibPath)\ImGui.NET.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ImGuiScene">
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\ImGuiScene.dll</HintPath>
<HintPath>$(DalamudLibPath)\ImGuiScene.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Lumina">
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Lumina.dll</HintPath>
<HintPath>$(DalamudLibPath)\Lumina.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Lumina.Excel">
<HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Lumina.Excel.dll</HintPath>
<HintPath>$(DalamudLibPath)\Lumina.Excel.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
@ -38,8 +51,4 @@
<PackageReference Include="FFXIVWeather.Lumina" Version="2.1.0"/>
</ItemGroup>
<ItemGroup>
<Content Include="..\icon.png" Private="false" Link="images/icon.png" CopyToOutputDirectory="PreserveNewest"/>
</ItemGroup>
</Project>

View File

@ -0,0 +1,36 @@
{
"version": 1,
"dependencies": {
"net6.0-windows7.0": {
"DalamudPackager": {
"type": "Direct",
"requested": "[2.1.7, )",
"resolved": "2.1.7",
"contentHash": "jnZ/sdInyn07ycuWI+pPOtP/xE3v+c4+jYJfDt36FWnBF9NKqkpzfviJtPl/jGLgbaCmFIXu+Yid0N8GvdKefg=="
},
"FFXIVWeather.Lumina": {
"type": "Direct",
"requested": "[2.1.0, )",
"resolved": "2.1.0",
"contentHash": "s/vxBNJcUZWvAU6MJV0fjkOtEGt4CqUrX6IwbugOlSEMHk3D/unI9Kpv+FeS7gh3zOlP+earJmK4tifpqSvVmw==",
"dependencies": {
"Lumina": "3.5.2",
"Lumina.Excel": "6.1.1"
}
},
"Lumina": {
"type": "Transitive",
"resolved": "3.5.2",
"contentHash": "f5vbL3pJ+Azqu/ZOSiG1hblb8nUbWvtC0p9/uBTRYofvZZncBy3r6a/i4b16khI6thY705EGkuQGP00+rK7L5w=="
},
"Lumina.Excel": {
"type": "Transitive",
"resolved": "6.1.1",
"contentHash": "BCFmsn2iW8qXLuncvIxQEi/9mFprusM307JYVoSMK5UeQc2h2w524jlMGpI5wibh/Il+Wbwm5Dcy1gHuTGjw+Q==",
"dependencies": {
"Lumina": "3.5.2"
}
}
}
}
}