Compare commits
No commits in common. "3ecebb6806f3670aa9be545149ca59e13718fda3" and "cdd05891e8cccceb1d1bad17a529b621bdd15cc5" have entirely different histories.
3ecebb6806
...
cdd05891e8
3 changed files with 7 additions and 21 deletions
4
Makefile
4
Makefile
|
@ -12,10 +12,6 @@ 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,20 +21,9 @@ user protection.
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
Install dependencies described here: https://docs.fyne.io/started/
|
1. Clone the repository.
|
||||||
|
2. Install dependencies.
|
||||||
|
3. Run the application.
|
||||||
|
|
||||||
For Fedora:
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam at nisi ac
|
||||||
```bash
|
libero gravida vehicula non et metus.
|
||||||
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,6 +3,7 @@ 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"
|
||||||
|
@ -18,7 +19,7 @@ var rex_version = "UNDEFINED"
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
a := app.New()
|
a := app.New()
|
||||||
w := a.NewWindow(fmt.Sprintf("RexForge %s", rex_version))
|
w := a.NewWindow(fmt.Sprintf("RexForge %s", strings.ToUpper(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