File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,9 @@ game specific things:
28
28
it via the ` build_mod ` factory, would pass empty lists to the constructor and thus prevent the
29
29
auto member collection from running.
30
30
31
+ - Changed the display version to be sourced from ` mod_manager.display_version ` in the unrealsdk
32
+ config file, rather than an environment variable.
33
+
31
34
### v1.5
32
35
- Added a default ` rlm ` command, which is a helper to reload Python modules during development.
33
36
- Deprecated the ` auto_enable ` arg in the ` @hook ` decorator, since it was misleading and in 99% of
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ def cmp(a: Mod, b: Mod) -> int:
118
118
"https://github.com/bl-sdk/oak-mod-manager/releases/"
119
119
)
120
120
121
- MANAGER_VERSION = os . environ .get ("MOD_MANAGER_DISPLAY_VERSION " , "Unknown Version" )
121
+ MANAGER_VERSION = unrealsdk . config .get ("mod_manager" , {}). get ( "display_version " , "Unknown Version" )
122
122
RE_MANAGER_VERSION = re .compile (r"v?(\d+)\.(\d+)" )
123
123
124
124
You can’t perform that action at this time.
0 commit comments