Skip to content

Commit 98ef2b0

Browse files
authored
Merge branch 'master' into master
2 parents 76361f4 + bd225e0 commit 98ef2b0

File tree

15 files changed

+36
-18
lines changed

15 files changed

+36
-18
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ on:
1212
type: string
1313
required: false
1414

15-
env:
16-
LLVM_MINGW_VERSION: llvm-mingw-20240619-msvcrt-ubuntu-20.04-x86_64
17-
LLVM_MINGW_DOWNLOAD: https://github.com/mstorsjo/llvm-mingw/releases/download/20240619/llvm-mingw-20240619-msvcrt-ubuntu-20.04-x86_64.tar.xz
18-
1915
jobs:
2016
build-windows:
2117
runs-on: windows-latest

changelog.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,26 @@
11
# Changelog
22

3+
## v3.7 (Upcoming)
4+
5+
### [Console Mod Menu v1.6](https://github.com/bl-sdk/console_mod_menu/blob/master/Readme.md#v16)
6+
> - Linting fixes.
7+
8+
### Legacy Compat v1.6
9+
- Linting fixups.
10+
11+
### [Mods Base v1.10](https://github.com/bl-sdk/mods_base/blob/master/Readme.md#v19)
12+
> - Linting fixups.
13+
314
### Save Options v1.2
415
- Fixed issue where loading a character with no save option data inherited option values from
516
previous character.
617

18+
### UI Utils v1.3
19+
- Linting fixes.
20+
21+
### Willow2 Mod Menu v3.5
22+
- Linting fixups.
23+
724
## v3.6: Easy Mode
825
Fixed that `save_options.sdkmod` wasn't actually being included in the release zip. Whoops.
926

manager_pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[project]
77
name = "willow_mod_manager"
8-
version = "3.6"
8+
version = "3.7"
99
authors = [{ name = "bl-sdk" }]
1010

1111
[tool.sdkmod]

src/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class ModInfo:
4848
module: str
4949
legacy: bool
5050
location: Path
51-
duplicates: list[ModInfo] = field(default_factory=list)
51+
duplicates: list[ModInfo] = field(default_factory=list["ModInfo"])
5252

5353

5454
def init_debugpy() -> None:

src/legacy_compat/ModMenu/ModObjects.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,10 @@ def supported_games(self, val: Game) -> None: # pyright: ignore[reportIncompati
150150

151151
# Unlike options, binds can have an external persistent state, so we need to keep our list of
152152
# binds around to reuse them when possible
153-
_last_seen_legacy_binds: list[KeybindManager.Keybind] = field(default_factory=list)
154-
_cached_keybinds: list[KeybindType] = field(default_factory=list)
153+
_last_seen_legacy_binds: list[KeybindManager.Keybind] = field(
154+
default_factory=list[KeybindManager.Keybind],
155+
)
156+
_cached_keybinds: list[KeybindType] = field(default_factory=list[KeybindType])
155157

156158
@property
157159
def keybinds(self) -> Sequence[KeybindType]:

src/legacy_compat/ModMenu/Options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ def on_change[J: JSON](
471471
on_change=on_change,
472472
)
473473
case Hidden():
474-
hidden_option: Hidden[Any] = option
474+
hidden_option: Hidden[Any] = option # pyright: ignore[reportUnknownVariableType]
475475
converted_option = HiddenOption(
476476
hidden_option.Caption,
477477
hidden_option.CurrentValue,

src/legacy_compat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"legacy_compat",
1515
)
1616

17-
__version_info__: tuple[int, int] = (1, 5)
17+
__version_info__: tuple[int, int] = (1, 6)
1818
__version__: str = f"{__version_info__[0]}.{__version_info__[1]}"
1919
__author__: str = "bl-sdk"
2020

src/ui_utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"show_hud_message",
2323
)
2424

25-
__version_info__: tuple[int, int] = (1, 2)
25+
__version_info__: tuple[int, int] = (1, 3)
2626
__version__: str = f"{__version_info__[0]}.{__version_info__[1]}"
2727
__author__: str = "bl-sdk"
2828

0 commit comments

Comments
 (0)