Compare commits
3 commits
cdd05891e8
...
3ecebb6806
Author | SHA1 | Date | |
---|---|---|---|
![]() |
3ecebb6806 | ||
![]() |
2db05d7fc6 | ||
![]() |
47955a6be1 |
3 changed files with 21 additions and 7 deletions
4
Makefile
4
Makefile
|
@ -12,6 +12,10 @@ help:
|
||||||
@echo " container - Build an OCI container (requires podman)"
|
@echo " container - Build an OCI container (requires podman)"
|
||||||
@echo " help - Show this help message"
|
@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)
|
release: $(RELEASE_NAME)
|
||||||
make -C ./rex_client REX_VERSION=$(REX_VERSION)
|
make -C ./rex_client REX_VERSION=$(REX_VERSION)
|
||||||
make -C ./rex_server REX_VERSION=$(REX_VERSION)
|
make -C ./rex_server REX_VERSION=$(REX_VERSION)
|
||||||
|
|
21
README.md
21
README.md
|
@ -21,9 +21,20 @@ user protection.
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
1. Clone the repository.
|
Install dependencies described here: https://docs.fyne.io/started/
|
||||||
2. Install dependencies.
|
|
||||||
3. Run the application.
|
|
||||||
|
|
||||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam at nisi ac
|
For Fedora:
|
||||||
libero gravida vehicula non et metus.
|
```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
|
||||||
|
```
|
||||||
|
|
|
@ -3,7 +3,6 @@ package main
|
||||||
import (
|
import (
|
||||||
_ "embed"
|
_ "embed"
|
||||||
"fmt"
|
"fmt"
|
||||||
"strings"
|
|
||||||
|
|
||||||
"fyne.io/fyne/v2"
|
"fyne.io/fyne/v2"
|
||||||
"fyne.io/fyne/v2/app"
|
"fyne.io/fyne/v2/app"
|
||||||
|
@ -19,7 +18,7 @@ var rex_version = "UNDEFINED"
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
a := app.New()
|
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))
|
w.Resize(fyne.NewSize(900, 600))
|
||||||
|
|
||||||
addons := model.AddonIndex
|
addons := model.AddonIndex
|
||||||
|
|
Loading…
Add table
Reference in a new issue