Releases: ow-mods/ow-mod-man
Releases · ow-mods/ow-mod-man
Outer Wilds Mod Manager Core Version 0.11.1
Core Changes
- Moved the protocol payload parser to the core lib, previously this was exclusive to the GUI
- Moved the ProgressBars and associated structs to the core lib, previously this was exclusive to the GUI
- Added example doc tests
Outer Wilds Mod Manager CLI Version 0.11.1
CLI Changes
- Added the
protocol
subcommand for invoking anowmods://
protocol
Outer Wilds Mod Manager GUI Version 0.11.0
GUI Changes
- Added rainbow mode
- Added "Outer Wilds Orange", "Nomai Blue", and "Nomai Orange" themes by @MegaPiggy
- Added a separator between enabled and disabled local mods
- Added the time at which a log was received to the sender name tooltip
- Fixed log collapse to be more efficient and handle log spam better
- The About modal now gives a more specific version identifier, and the commit SHA the manager was built on
Outer Wilds Mod Manager Core Version 0.11.0
Core Changes
- More defaults in OWML config to help load older versions
- Better sanitization of search fields and queries
- Use get_author() in Searchable impl for RemoteMod instead of just author
- Check tx buffer capacity before placing a log to help with log spam
Outer Wilds Mod Manager CLI Version 0.11.0
CLI Changes
- Better formatting on game logs
- Fix help message for
owmods setup
Outer Wilds Mod Manager GUI Version 0.10.0
GUI Changes
- Added Themes (Use Pink)
- Added GUI settings option to hide installed mods in the "Get Mods" tab (resolves #99)
- Added an "Open On GitHub" button to mod overflow menus (thanks @MegaPiggy!)
- Style adjustments for tags (thanks @Raicuparta!)
- Fix the updates tab showing the wrong message when no updates are available
- Fix the "Let OWML Handle Logs" settings option flashing when clicking save on Windows (resolves #98)
- Fix the refresh tooltip staying open when the refresh button is refreshing on Windows (resolves #97)
Outer Wilds Mod Manager Core Version 0.10.0
Core Changes
- New
open_github
function for opening a mod's GitHub repo (thanks @MegaPiggy!) - Send analytics event (
mod_install
) when importing a mod list - Send analytics event (
mod_required_install
) when fixing dependency issues
Outer Wilds Mod Manager CLI Version 0.10.0
CLI Changes
- New
github
subcommand to open a mod's GitHub repo (thanks @MegaPiggy!)
Outer Wilds Mod Manager GUI Version 0.9.0
GUI Changes
- Added tag filtering for local and remote tabs
- Protocol installs that use
install-mod
now skip the modal (resolves #79) - Recently completed downloads appear as a number next to the downloads icon instead of only ongoing ones
- Filtering by search and by tab is now synced across tabs
- Clone the database(s) during long-running operations such as mod installs or updates
- There's now a more user-friendly message for when you search for something and there are no results
- Remove the uninstall confirmation dialog (Thanks @Raicuparta for the feedback)
- Fix importing mods not properly enabling already-enabled mods when using the "Disable mods not in list" flag
- Fix log message sender overlapping with message
Outer Wilds Mod Manager Core Version 0.9.0
Core Changes
- Added the
get_tags
db method for getting all tags in the database - Added the
matches_tags
db method for getting all mods that match a list of tags - Made recursive mod toggling properly handle cyclical dependencies
- Simplify version comparison
- Fix importing mods not properly enabling already-enabled mods when using the
disable_missing
flag - Local and Remote databases now impl Clone
- Installing OWML now sends the ModRequiredInstall analytics event
- Improved some docs comments