Skip to content

Commit

Permalink
Merge pull request #96 from Gawdl3y/rel/v0.6.0
Browse files Browse the repository at this point in the history
Release v0.6.0
  • Loading branch information
Gawdl3y authored Jan 1, 2024
2 parents db0bad8 + 0dc99c1 commit 2c45c24
Show file tree
Hide file tree
Showing 64 changed files with 3,183 additions and 477 deletions.
192 changes: 190 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,21 @@ Resolute loads its mod index and metadata from the
- Downloading
- Caching
- Parsing
- Rudimentary mod management
- Listing
- Mod management
- Listing (installed and all available)
- Installation
- Updating
- Deletion
- Detection of externally-installed mods
- Mod authoring tools
- SHA-256 checksum calculator
- Automatic app updates

### Planned

- Proper mod management
- Listing (installed and all available)
- Installation
- Tracking installed mods
- Updating (automatic and manual checks)
- Deletion
- Detection of externally-installed mods
- ResoniteModLoader/Harmony alerts (missing or outdated)
- Mod disabling/reenabling
- Platform-specific artifacts support
- ResoniteModLoader/Harmony alerts (missing or outdated)
- Dependency resolution
- Automatic installation
- Conflict warnings
Expand Down
10 changes: 8 additions & 2 deletions crates/resolute/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "resolute"
version = "0.4.0"
description = "Resonite mod manifest and dependency resolution library"
version = "0.5.0"
description = "Resonite mod manager, manifest, and dependency resolution library"
authors = ["Schuyler Cebulskie <me@gawdl3y.dev>"]
license = ""
repository = ""
Expand All @@ -19,3 +19,9 @@ futures-util = "0.3"
path-clean = "1.0"
sha2 = "0.10"
steamlocate = "2.0.0-beta.2"
native_db = { version = "0.5", optional = true }
native_model = { version = "0.4", optional = true }

[features]
default = ["db"]
db = ["native_db", "native_model"]
Loading

0 comments on commit 2c45c24

Please sign in to comment.