Skip to content

Commit 8f56907

Browse files
committed
New version
Version 1.1.0
1 parent e505f69 commit 8f56907

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

Data/Extended UI.esp

0 Bytes
Binary file not shown.

Data/Readme - Extended UI.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Extended UI
2-
Version: 1.0.5
2+
Version: 1.1.0
33
Author: MrJack
44

55
Table of contents
@@ -85,9 +85,9 @@ PM MrJack on the official Bethesda forums or mrpwn on Nexus.
8585

8686

8787
--Changelog--
88-
1.05:
88+
1.1.0:
8989
- Added option in MCM to set the aspect ratio of the stats menu. Currently only used to adjust the placement of skill markers at the bottom of the screen. Default is 16:9.
90-
- Hopefully fixed a bug that can cause a variable to not be assigned a value and thus cause error messages in the Papyrus log.
90+
- Hopefully fixed a bug that could cause a variable to not be assigned a value and thus cause error messages in the Papyrus log.
9191
- Fixed a bug that caused a perk's required skill level to not be shown, if the skill's name was too long (around 14 characters or more).
9292
1.0.4a:
9393
- Fixed a bug where the skill title for Vampire Lord and Werewolf skills would show up as "undefined" due to relevant data not being received from the game.

Data/Scripts/EXUI_ConsoleMenu.pex

4 Bytes
Binary file not shown.

Data/Scripts/EXUI_MCM.pex

4 Bytes
Binary file not shown.
2 Bytes
Binary file not shown.

Data/Scripts/EXUI_StatsMenu.pex

7 Bytes
Binary file not shown.

Data/Scripts/Source/EXUI_ConsoleMenu.psc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ EndFunction
9999

100100
Function OnVersionUpdate(Int aiVersion)
101101
If((aiVersion >= 1) && (iScriptVersion < 1))
102-
Debug.Trace(GetTrace(aiVersion))
102+
Debug.Trace(GetTrace(1))
103103
EndIf
104104

105105
If((aiVersion >= 2) && (iScriptVersion < 2))
106-
Debug.Trace(GetTrace(aiVersion))
106+
Debug.Trace(GetTrace(2))
107107
If(PlayerRef == None)
108108
PlayerRef = Game.GetPlayer()
109109
EndIf

Data/Scripts/Source/EXUI_MCM.psc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ EndFunction
9999

100100
Event OnVersionUpdate(int a_version)
101101
If((a_version >= 1) && (CurrentVersion < 1))
102-
Debug.Trace(GetTrace(a_version))
102+
Debug.Trace(GetTrace(1))
103103
EndIf
104104

105105
If((a_version >= 2) && (CurrentVersion < 2))
106-
Debug.Trace(GetTrace(a_version))
106+
Debug.Trace(GetTrace(2))
107107
sStatsMenuAspectRatios = new String[4]
108108
sStatsMenuAspectRatios[0] = "4:3"
109109
sStatsMenuAspectRatios[1] = "5:4"

Data/Scripts/Source/EXUI_SleepWaitMenu.psc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ EndFunction
4040

4141
Function OnVersionUpdate(Int aiVersion)
4242
If((aiVersion >= 1) && (iScriptVersion < 1))
43-
Debug.Trace(GetTrace(aiVersion))
43+
Debug.Trace(GetTrace(1))
4444
EndIf
4545

4646
iScriptVersion = aiVersion

Data/Scripts/Source/EXUI_StatsMenu.psc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ EndEvent
2525
Event OnStatsMenuOpen(String asEventName, String asStringArg, Float afNumArg, Form akSender)
2626
iHighlightedSkill = kSkillDummy.GetWeight() as Int
2727
UI.InvokeNumber("StatsMenu", "_root.StatsMenuBaseInstance.initializeHighlighting", iHighlightedSkill as Float)
28-
UI.InvokeNumber("StatsMenu", "_root.StatsMenuBaseInstance.aspectRatio", MCM.iStatsMenuAspectRatio)
28+
UI.InvokeNumber("StatsMenu", "_root.StatsMenuBaseInstance.setAspectRatio", MCM.iStatsMenuAspectRatio)
2929
EndEvent
3030

3131
Event OnSkillHighlightChange(String asEventName, String asStringArg, Float afNumArg, Form akSender)
@@ -56,11 +56,11 @@ EndFunction
5656

5757
Function OnVersionUpdate(Int aiVersion)
5858
If((aiVersion >= 1) && (iScriptVersion < 1))
59-
Debug.Trace(GetTrace(aiVersion))
59+
Debug.Trace(GetTrace(1))
6060
EndIf
6161

6262
If((aiVersion >= 2) && (iScriptVersion < 2))
63-
Debug.Trace(GetTrace(aiVersion))
63+
Debug.Trace(GetTrace(2))
6464
EndIf
6565

6666
iScriptVersion = aiVersion

0 commit comments

Comments
 (0)