This is the installer for DREAMIO: AI-Powered Adventures
This repository contains the NSIS (Nullsoft Scriptable Install System) script for building the DREAMIO: AI-Powered Adventures installer. The installer is automatically built and released whenever changes are pushed to the master
branch.
You can find the latest release of the DREAMIO installer here.
Each release includes a SHA256 hash in the release notes. You can use this to verify the integrity of the downloaded installer.
To manually build the DREAMIO installer, follow these steps:
-
Install NSIS (Nullsoft Scriptable Install System) on your Windows machine.
-
Install the required NSIS plugins:
- Inetc
- NsJSON
- NSISunzU
You can download these plugins from the NSIS website or use the URLs provided in the YAML workflow file.
-
Place the plugin files in the appropriate NSIS directories:
.dll
files go in thePlugins
directory.nsh
files go in theInclude
directory
-
Clone the repository and navigate to the directory containing the
script.nsi
file. -
Run the following command to build the installer:
makensis.exe /V4 /X"SetCompressor /FINAL /SOLID lzma" /X"SetCompressorDictSize 64" /X"SetDatablockOptimize ON" script.nsi
-
After successful compilation, you should find
DreamioInstaller.exe
in the same directory. -
(Optional) Calculate the SHA256 hash of the installer:
certutil -hashfile DreamioInstaller.exe SHA256
This project is licensed under the MIT License. See the LICENSE file for details.