Skip to content

Commit

Permalink
Forgot to add an I
Browse files Browse the repository at this point in the history
Meisterlala committed Jun 29, 2024

Verified

This commit was signed with the committer’s verified signature.
Meisterlala Meisterlala
1 parent 869b582 commit e42adcd
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Neko/Neko.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.3.2</Version>
<Version>1.3.3</Version>
<TargetFramework>net8.0-windows</TargetFramework>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2 changes: 1 addition & 1 deletion Neko/Plugin.cs
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ namespace Neko;
public class Plugin : IDalamudPlugin
{
[PluginService] public static ICommandManager CommandManager { get; private set; } = null!;
[PluginService] public static DalamudPluginInterface PluginInterface { get; private set; } = null!;
[PluginService] public static IDalamudPluginInterface PluginInterface { get; private set; } = null!;
[PluginService] public static IKeyState KeyState { get; private set; } = null!;
[PluginService] public static IPluginLog Log { get; private set; } = null!;
[PluginService] public static INotificationManager NotificationManager { get; private set; } = null!;
2 changes: 1 addition & 1 deletion NekoLewd/NekoLewd.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>1.0.5</Version>
<Version>1.0.6</Version>
<TargetFramework>net8.0-windows</TargetFramework>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2 changes: 1 addition & 1 deletion NekoLewd/Plugin.cs
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ public class Plugin : IDalamudPlugin
{
public string Name => "Neko Fans NSFW 18+ Patch";

[PluginService] public static DalamudPluginInterface PluginInterface { get; set; } = null!;
[PluginService] public static IDalamudPluginInterface PluginInterface { get; set; } = null!;

private readonly ICallGateProvider<bool> IPCProvider;

2 changes: 1 addition & 1 deletion resources/generate-repo.ps1
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ $repo = "NekoFans"
$nekoname = "NekoFans.zip"
$nekolewdname = "NekoFansLewd.zip"

$nekolewdtag = "1.0.5-NSFW"
$nekolewdtag = "1.0.6-NSFW"

# Authorization header for the Github API.
$header = @{

0 comments on commit e42adcd

Please sign in to comment.