Skip to content

Commit

Permalink
Version 0.1.7 Release Prep
Browse files Browse the repository at this point in the history
- Add some log lines just for my own sanity
  • Loading branch information
KazWolfe committed Apr 23, 2022
1 parent 50a6fde commit 8ac22e0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion FFXIVPlugin/Game/IconManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public static string GetIconPath(string lang, int iconId, bool hq = false, bool
var texPath = GetIconPath(lang, iconId, hq, true);

if (texPath.Substring(1, 2) == ":/") {
PluginLog.Debug("LOADING ASSET FROM DISK!!!");
PluginLog.Verbose($"Using on-disk asset {texPath}");
texFile = Injections.DataManager.GameData.GetFileFromDisk<TexFile>(texPath);
} else {
texFile = Injections.DataManager.GetFile<TexFile>(texPath);
Expand Down
2 changes: 2 additions & 0 deletions FFXIVPlugin/IPC/PenumbraIPC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ public static void Initialize() {
_penumbraResolveDefaultSubscriber = Injections.PluginInterface.GetIpcSubscriber<string, string>("Penumbra.ResolveDefaultPath");
PenumbraEnabled = true;
PluginLog.Information("Enabled Penumbra IPC connection!");
} else if (PenumbraApiVersion > 0) {
PluginLog.Warning($"Penumbra IPC detected, but version {PenumbraApiVersion} is incompatible!");
}
}

Expand Down
2 changes: 1 addition & 1 deletion FFXIVPlugin/XIVDeck.FFXIVPlugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Product>XIVDeck Game Plugin</Product>
<Authors>Kaz Wolfe</Authors>
<Company>Blacksite Technologies</Company>
<Version>0.1.6</Version>
<Version>0.1.7</Version>

<AssemblyName>XIVDeck.FFXIVPlugin</AssemblyName>

Expand Down
2 changes: 1 addition & 1 deletion SDPlugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kazwolfe/xivdeck-sdplugin",
"version": "0.1.6",
"version": "0.1.7",
"private": true,
"scripts": {
"build-release": "webpack --mode production",
Expand Down

0 comments on commit 8ac22e0

Please sign in to comment.