2024-08-12 00:38:10 -07:00
## 8/12/24
2024-08-12 01:28:11 -07:00
Commit 1
2024-08-12 00:38:10 -07:00
- Removed `on_shutdown` function from `src/main.rs` , as it was uselessly dropping memory that was automatically dropped right after the function ended.
2024-08-21 01:29:12 -07:00
- Finished the documentation for `src/main.rs` , `src/packages/installed.rs` , `src/packages/browse.rs` , and `src/packages/mod.rs` .
2024-08-12 00:38:10 -07:00
- Renamed `show_installed_package` to `show_package` , and merged it into `src/packages/mod.rs` instead of having copies in two files.
- Added this changelog.
- Updated `inst.sh` so that it no longer copies `style.css` to the `/usr/share/oreon-system-manager` directory.
2024-08-12 01:28:11 -07:00
Commit 2
2024-08-21 01:29:12 -07:00
- Moved `drivers` to it's own module folder.
- Added `src/drivers/mod.rs` and `src/drivers/objects.rs` .
2024-08-12 04:06:24 -07:00
Commit 3
2024-08-21 01:29:12 -07:00
- Fixed crash on package description fetch.
2024-08-20 02:56:50 -07:00
Commit 4
- Added very basic support for Docker images.
Commit 5
- Added almost full support for Docker images.
- Created an interface between Rust and the `docker image inspect` command using Serde.
2024-08-21 01:29:12 -07:00
Commit 6
- Documented everything in the containers module.
- Switched to using `cargo clippy` and fixed all of the warnings that it showed.
- Renamed `src/containers/core.rs` to `src/containers/api.rs` .
- Moved the `Image` struct to the `api` submodule instead of having it in the main `containers` module.