Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v1.8 (Upcoming)
## v1.8: Twin Soul

### BL3 Mod Menu v1.6
- Support host-only coop support value
Expand Down
3 changes: 2 additions & 1 deletion pick_release_name.py
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,7 @@
"Time Skip",
"Reunion",
"Deathless Mantle",
"Twin Soul",
]


Expand Down Expand Up @@ -773,4 +774,4 @@ def pick_release_name(commit_hash: str, excludes: list[str] = PREVIOUS_RELEASE_N
excludes = [] if args.ignore_previous_releases else PREVIOUS_RELEASE_NAMES
excludes += args.exclude

print(pick_release_name(commit_hash, excludes))
print(pick_release_name(commit_hash, excludes)) # noqa: T201
4 changes: 2 additions & 2 deletions prepare_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ def zip_release(
args = parser.parse_args()

if check_git_is_dirty():
print("WARNING: git repo is dirty")
print("WARNING: git repo is dirty") # noqa: T201

install_dir = INSTALL_DIR_BASE / str(args.preset)

Expand All @@ -358,6 +358,6 @@ def zip_release(
continue

name = f"{prefix}-sdk-{args.preset}.zip"
print(f"Zipping {name} ...")
print(f"Zipping {name} ...") # noqa: T201

zip_release(Path(name), mods, "debug" in args.preset, install_dir)