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
1 change: 0 additions & 1 deletion .markdownlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ MD040:
[
'bash',
'c',
'cpp',
'cmake',
'diff',
'dockerfile',
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **wow-m2**: Added texture filename parsing functionality
- **wow-m2**: Added support for old skin format in the skin-info command
- **warcraft-rs**: Added `cargo-deny` configuration for dependency security scanning and duplicate management
- **wow-mpq**: SQLite database support for persistent MPQ filename hash storage and resolution
- **wow-mpq**: Support for both traditional MPQ hashes (hash_a, hash_b) and HET hashes (40/48/56/64 bit)
- **wow-mpq**: Database import functionality supporting listfiles, MPQ archives, and directory scanning
- **wow-mpq**: Automatic filename resolution through database lookup during archive listing operations
- **wow-mpq**: Database connection management with automatic schema initialization
- **wow-mpq**: Batch processing for efficient bulk filename imports
- **warcraft-rs CLI**: New `mpq db` subcommand with status, import, analyze, lookup, export, and list operations
- **warcraft-rs CLI**: `--use-db` flag for `mpq list` to enable database lookups for unknown filenames
- **warcraft-rs CLI**: `--record-to-db` flag for `mpq list` to store discovered filenames in database

### Changed

- **storm-ffi**: Renamed crate from `storm` to `storm-ffi` while retaining library name as `libstorm`
- **storm-ffi**: Archive handles now support both read-only and mutable operations with internal enum-based dispatch
- **wow-mpq**: Enhanced attributes file block count detection with automatic fallback logic
- **wow-mpq**: `MutableArchive` now provides convenience methods for common read operations
- **wow-m2**: Replaced custom BLP texture implementation with dependency on `wow-blp` crate
- **wow-m2**: `BlpTexture` is now a re-export of `wow_blp::BlpImage` for backwards compatibility

### Fixed

Expand All @@ -44,6 +55,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- **wow-m2**: Fixed BLP texture parsing to properly handle JPEG header information and palette data
- **wow-mpq**: Applied rustfmt formatting fixes and resolved clippy warnings for cleaner code

### Removed

- **wow-m2**: Custom BLP parsing implementation (moved to using `wow-blp` crate instead)

## [0.2.0](https://github.com/wowemulation-dev/warcraft-rs/releases/tag/v0.2.0) - 2025-06-28

### Added
Expand Down
177 changes: 174 additions & 3 deletions Cargo.lock

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

Loading
Loading