Setting up
This helps you install StarOpenSource UI in the first place.
Installing CORE
Make sure you have the CORE Framework set up in your project already. If not, visit CORE's installation guide and make sure CORE can fully initialize BEFORE any StarOpenSource UI elements are even loaded.
note
It does not matter which framework branch you choose as StarOpenSource UI only uses CORE's logger implementation, which is very unlikely to change.
Using git
note
You'll need to execute all commands in your project root.
Installing SUI
- Direct
- Submodule
mkdir -p addons
git clone https://git.staropensource.de/StarOpenSource/SUI-distrib.git addons/SUI
mkdir -p addons
git submodule add https://git.staropensource.de/StarOpenSource/SUI-distrib.git addons/SUI
Updating SUI
- Direct
- Submodule
cd addons/SUI
git pull
cd addons/SUI
git pull origin develop
cd ..
git add SUI
git commit -m "Update StarOpenSource UI"