diff options
| author | Filip Wandzio <contact@philw.dev> | 2026-01-24 08:29:14 +0100 |
|---|---|---|
| committer | Filip Wandzio <contact@philw.dev> | 2026-01-24 08:29:14 +0100 |
| commit | a393e0a2f2c3678a3ea869dc1417fa269f2b1040 (patch) | |
| tree | 606df6a9284b5bd2dbf84fa5e3d363b8e6a01322 /src/util/mod.rs | |
| parent | 72ddd7b7704f2087a52c9c0552446682918c513b (diff) | |
| download | dml-a393e0a2f2c3678a3ea869dc1417fa269f2b1040.tar.gz dml-a393e0a2f2c3678a3ea869dc1417fa269f2b1040.zip | |
Resolve audio not loading bug
Ensure all assets are downloading for each version
Temporarily disable minecraft versions older than 1.8 because of the asset/manifest loading issues
Implement basic documentation of modules
Implement basic async/multithreading for downloading assets
Diffstat (limited to '')
| -rw-r--r-- | src/util/mod.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/util/mod.rs b/src/util/mod.rs index 8176b9b..b8531c6 100644 --- a/src/util/mod.rs +++ b/src/util/mod.rs | |||
| @@ -1,2 +1,14 @@ | |||
| 1 | //! Utility module for the DML launcher. | ||
| 2 | //! | ||
| 3 | //! This module contains general-purpose helper functions used throughout | ||
| 4 | //! the project. It is designed to provide reusable functionality without | ||
| 5 | //! being specific to Minecraft or configuration. | ||
| 6 | //! | ||
| 7 | //! # Submodules | ||
| 8 | //! - `fs`: File system utilities such as safe file creation, reading, and | ||
| 9 | //! writing. | ||
| 10 | //! - `sha1`: Functions to compute SHA-1 hashes for files and data integrity | ||
| 11 | //! checks. | ||
| 12 | |||
| 1 | pub mod fs; | 13 | pub mod fs; |
| 2 | pub mod sha1; | 14 | pub mod sha1; |
