How to 're-link' Qt =================== All files relating to the App can be found in C:\Program Files\MindAffect Sofi The sofi.exe executable is basically an embedded Python interpreter that ships with the Python standard library and all dependencies as defined in the SBOM in user_manuals/sbom.json. You can create one of your own using PyInstaller. It will package up the current environment, so you can simply follow the usual instructions on how to compile your own version of Qt6/PySide6, then execute PyInstaller on the result. The Python code that's compiled into the sofi.exe executable is actually rather short. It's just: ```python import os import sys # ensure the CWD is set correctly (when launched from Noah it isn't by default) os.chdir(os.path.dirname(sys.executable)) sys.path.insert(0, ".") if __name__ == "__main__": from aurora import gui gui.main() ``` Note that this means that if you don't need a fully fledged executable, you can more easily just run the Sofi app from a Python environment by importing the (proprietary and compiled) aurora.gui module and calling its main() method. Modified WiX code ================= The .msi installer was created with WiX. We have modified a few files that are part of WiX. They add little UI elements. We are sharing them so you can re-use them for your own projects. Questions? ========== You can reach us at opensource@mindaffect.nl