File tree Expand file tree Collapse file tree 4 files changed +23
-12
lines changed Expand file tree Collapse file tree 4 files changed +23
-12
lines changed Original file line number Diff line number Diff line change 10
10
<!-- Assembly Configuration -->
11
11
<PropertyGroup >
12
12
<AssemblyName >DelvCD</AssemblyName >
13
- <AssemblyVersion >1.2.0.0 </AssemblyVersion >
14
- <FileVersion >1.2.0.0 </FileVersion >
15
- <InformationalVersion >1.2.0.0 </InformationalVersion >
13
+ <AssemblyVersion >1.2.0.1 </AssemblyVersion >
14
+ <FileVersion >1.2.0.1 </FileVersion >
15
+ <InformationalVersion >1.2.0.1 </InformationalVersion >
16
16
</PropertyGroup >
17
17
18
18
<!-- Build Configuration -->
Original file line number Diff line number Diff line change @@ -39,18 +39,22 @@ public TexturesCache()
39
39
return t ;
40
40
}
41
41
42
- string ? path = Singletons . Get < ITextureProvider > ( ) . GetIconPath ( new GameIconLookup ( iconId : iconId , hiRes : hdIcon ) ) ;
43
- if ( path != null )
42
+ try
44
43
{
45
- path = Singletons . Get < ITextureSubstitutionProvider > ( ) . GetSubstitutedPath ( path ) ;
46
- IDalamudTextureWrap ? texture = GetDesaturatedTextureWrap ( path ) ;
47
- if ( texture != null )
44
+ string ? path = Singletons . Get < ITextureProvider > ( ) . GetIconPath ( new GameIconLookup ( iconId : iconId , hiRes : hdIcon ) ) ;
45
+ if ( path != null )
48
46
{
49
- _desaturatedCache . Add ( iconId + stackCount , texture ) ;
47
+ path = Singletons . Get < ITextureSubstitutionProvider > ( ) . GetSubstitutedPath ( path ) ;
48
+ IDalamudTextureWrap ? texture = GetDesaturatedTextureWrap ( path ) ;
49
+ if ( texture != null )
50
+ {
51
+ _desaturatedCache . Add ( iconId + stackCount , texture ) ;
52
+ }
53
+
54
+ return texture ;
50
55
}
51
-
52
- return texture ;
53
56
}
57
+ catch { }
54
58
55
59
return null ;
56
60
}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public class Plugin : IDalamudPlugin
15
15
{
16
16
public const string ConfigFileName = "DelvCD.json" ;
17
17
18
- public static string Version { get ; private set ; } = "1.2.0.0 " ;
18
+ public static string Version { get ; private set ; } = "1.2.0.1 " ;
19
19
20
20
public static string ConfigFileDir { get ; private set ; } = "" ;
21
21
Original file line number Diff line number Diff line change
1
+ # 1.2.0.1
2
+ - Added keybind label tag for Actions and Items.
3
+ - Fixed Dark Knight's Darkside duration.
4
+ - Fixed issues with invalid icon identifiers:
5
+ * A lot of the game's icons game files where moved around in 7.1.
6
+ * If you have auras that are not showing, you might need to manually re-enter the Action/Status names/ids so DelvCD can find the right icons again.
7
+
1
8
# 1.2.0.0
2
9
- Added support for Patch 7.1 and Dalamud API 11.
3
10
- Fixed inverted swipe.
You can’t perform that action at this time.
0 commit comments