Compare commits
3 Commits
1a63ecb560
...
bea9347986
Author | SHA1 | Date | |
---|---|---|---|
bea9347986 | |||
4d9074471e | |||
e3329bb105 |
@ -3,14 +3,14 @@
|
||||
<PropertyGroup>
|
||||
<Authors>0x0ade</Authors>
|
||||
<Company></Company>
|
||||
<Version>0.1.0.1</Version>
|
||||
<Version>0.1.0.2</Version>
|
||||
<Description>Gluing PatMe and FFXIV2MQTT together.</Description>
|
||||
<Copyright></Copyright>
|
||||
<PackageProjectUrl></PackageProjectUrl>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0-windows</TargetFramework>
|
||||
<TargetFramework>net8.0-windows</TargetFramework>
|
||||
<Platforms>x64</Platforms>
|
||||
<Nullable>enable</Nullable>
|
||||
<LangVersion>latest</LangVersion>
|
||||
@ -25,7 +25,7 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="DalamudPackager" Version="2.1.12" />
|
||||
<PackageReference Include="DalamudPackager" Version="2.1.13" />
|
||||
<Reference Include="FFXIVClientStructs">
|
||||
<HintPath>$(DalamudLibPath)FFXIVClientStructs.dll</HintPath>
|
||||
<Private>false</Private>
|
||||
|
@ -3,9 +3,9 @@
|
||||
"InternalName": "patme2mqtt",
|
||||
"Author": "0x0ade",
|
||||
"ApplicableVersion": "any",
|
||||
"DalamudApiLevel": 9,
|
||||
"DalamudApiLevel": 10,
|
||||
"Punchline": "Gluing PatMe and FFXIV2MQTT together.",
|
||||
"Description": "Basic plugin that pokes FFXIV2MQTT every time PatMe detects a pat.",
|
||||
"Tags": [ "pat", "emote", "mqtt", "patme", "ffxiv2mqtt" ],
|
||||
"RepoUrl": "https://gitea.0x0a.de/0x0ade/PatMe2Mqtt"
|
||||
"RepoUrl": "https://gitea.0x0a.de/0x0ade/DP-PatMe2Mqtt"
|
||||
}
|
||||
|
@ -16,7 +16,7 @@ namespace PatMe2Mqtt
|
||||
private readonly ICallGateSubscriber<string, ushort, string, uint, object> _ipcPatMeCounter;
|
||||
private readonly ICallGateSubscriber<string, string, bool> _ipcMqttPublish;
|
||||
|
||||
public Plugin([RequiredVersion("1.0")] DalamudPluginInterface pluginInterface)
|
||||
public Plugin(IDalamudPluginInterface pluginInterface)
|
||||
{
|
||||
pluginInterface.Create<Service>();
|
||||
|
||||
|
@ -91,7 +91,7 @@ namespace PatMe2Mqtt
|
||||
public static PatMeProxyApi.PatMe PatMe { get; internal set; } = null!;
|
||||
|
||||
[PluginService]
|
||||
public static DalamudPluginInterface PluginInterface { get; private set; } = null!;
|
||||
public static IDalamudPluginInterface PluginInterface { get; private set; } = null!;
|
||||
|
||||
[PluginService]
|
||||
public static ICommandManager CommandManager { get; private set; } = null!;
|
||||
|
@ -1,12 +1,12 @@
|
||||
{
|
||||
"version": 1,
|
||||
"dependencies": {
|
||||
"net7.0-windows7.0": {
|
||||
"net8.0-windows7.0": {
|
||||
"DalamudPackager": {
|
||||
"type": "Direct",
|
||||
"requested": "[2.1.12, )",
|
||||
"resolved": "2.1.12",
|
||||
"contentHash": "Sc0PVxvgg4NQjcI8n10/VfUQBAS4O+Fw2pZrAqBdRMbthYGeogzu5+xmIGCGmsEZ/ukMOBuAqiNiB5qA3MRalg=="
|
||||
"requested": "[2.1.13, )",
|
||||
"resolved": "2.1.13",
|
||||
"contentHash": "rMN1omGe8536f4xLMvx9NwfvpAc9YFFfeXJ1t4P4PE6Gu8WCIoFliR1sh07hM+bfODmesk/dvMbji7vNI+B/pQ=="
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
@set src=D:\Repos\ffxiv\PatMe2Mqtt\PatMe2Mqtt\bin\x64\Release\PatMe2Mqtt
|
||||
@set src=.\PatMe2Mqtt\bin\x64\Release\PatMe2Mqtt
|
||||
@set dst=O:\home\ade\wwwext\xiv\PatMe2Mqtt
|
||||
|
||||
dotnet build -c Release
|
||||
|
Loading…
Reference in New Issue
Block a user