From 9c573f5ba9a109f392c6999c0087789909ec167d Mon Sep 17 00:00:00 2001 From: Oleg Skutte <00.00.oleg.00.00@gmail.com> Date: Sun, 20 Oct 2024 01:41:12 +0400 Subject: [PATCH] Update README.md --- README.md | 39 +++++++++++++++++++++++++++++++++++---- 1 file changed, 35 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a8ef216..ecf304d 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,39 @@ # DREAMIO: AI-Powered Adventures - Updater + ### This is the updater for [DREAMIO: AI-Powered Adventures](https://dreamio.xyz) -## Build +## About + +This repository contains the source code for the DREAMIO: AI-Powered Adventures updater. The updater is automatically built and released whenever changes are pushed to the `master` branch. + +## Latest Release + +You can find the latest release of the DREAMIO updater [here](https://github.com/SkutteOleg/Dreamio-updater/releases/latest). + +## SHA256 Verification + +Each release includes a SHA256 hash in the release notes. You can use this to verify the integrity of the downloaded updater. + +## Manual Build Instructions + +To manually build the DREAMIO updater, follow these steps: + +1. Install Rust nightly toolchain and the `just` command runner on your Windows machine. + +2. Clone this repository and navigate to the project directory. + +3. Run the following command to build the updater: + ``` + just build + ``` + +4. After successful compilation, you should find `DreamioUpdater.exe` in the `target/x86_64-pc-windows-msvc/release/` directory. + +5. (Optional) Calculate the SHA256 hash of the updater: + ``` + certutil -hashfile target/x86_64-pc-windows-msvc/release/DreamioUpdater.exe SHA256 + ``` + +## License -``` -just build -``` \ No newline at end of file +This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details. \ No newline at end of file