Compare commits

..

3 commits

Author SHA1 Message Date
Imbus
3ecebb6806 Use lowercase version string in client 2025-01-28 13:41:49 +01:00
Imbus
2db05d7fc6 Build target 2025-01-28 13:41:39 +01:00
Imbus
47955a6be1 Readme 2025-01-28 13:41:33 +01:00
3 changed files with 21 additions and 7 deletions

View file

@ -12,6 +12,10 @@ help:
@echo " container - Build an OCI container (requires podman)"
@echo " help - Show this help message"
build: $(RELEASE_NAME)
make -C ./rex_client REX_VERSION=$(REX_VERSION)
make -C ./rex_server REX_VERSION=$(REX_VERSION)
release: $(RELEASE_NAME)
make -C ./rex_client REX_VERSION=$(REX_VERSION)
make -C ./rex_server REX_VERSION=$(REX_VERSION)

View file

@ -21,9 +21,20 @@ user protection.
## Getting Started
1. Clone the repository.
2. Install dependencies.
3. Run the application.
Install dependencies described here: https://docs.fyne.io/started/
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam at nisi ac
libero gravida vehicula non et metus.
For Fedora:
```bash
sudo dnf install golang golang-misc gcc libXcursor-devel libXrandr-devel mesa-libGL-devel libXi-devel libXinerama-devel libXxf86vm-devel libxkbcommon-devel wayland-devel
```
To build:
```bash
make
```
or
```bash
cd rex_client && make
cd rex_server && make
```

View file

@ -3,7 +3,6 @@ package main
import (
_ "embed"
"fmt"
"strings"
"fyne.io/fyne/v2"
"fyne.io/fyne/v2/app"
@ -19,7 +18,7 @@ var rex_version = "UNDEFINED"
func main() {
a := app.New()
w := a.NewWindow(fmt.Sprintf("RexForge %s", strings.ToUpper(rex_version)))
w := a.NewWindow(fmt.Sprintf("RexForge %s", rex_version))
w.Resize(fyne.NewSize(900, 600))
addons := model.AddonIndex