Skip to content

Commit f8171b1

Browse files
committed
Moving to an Apptrix.org created user interface
1 parent 935457a commit f8171b1

File tree

13 files changed

+841
-342
lines changed

13 files changed

+841
-342
lines changed

FyneApp.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[Details]
2+
Icon = "Icon.png"
3+
Name = "Fin"
4+
ID = "com.fyshos.fin"
5+
Build = 0

app.theme.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

assets/bg-dark.svg

Lines changed: 93 additions & 0 deletions
Loading

assets/bg-light.svg

Lines changed: 139 additions & 0 deletions
Loading

bundled.go

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ import (
66
"fyne.io/fyne/v2"
77
)
88

9+
//go:embed assets/bg-dark.svg
10+
var bgDarkSVG []byte
11+
12+
//go:embed assets/bg-light.svg
13+
var bgLightSVG []byte
14+
915
//go:embed assets/power.svg
1016
var powerSVG []byte
1117

@@ -21,3 +27,13 @@ var resourceFyshPng = &fyne.StaticResource{
2127
StaticName: "fysh.png",
2228
StaticContent: fyshPNG,
2329
}
30+
31+
var resourceBgDark = &fyne.StaticResource{
32+
StaticName: "bg-dark.svg",
33+
StaticContent: bgDarkSVG,
34+
}
35+
36+
var resourceBgLight = &fyne.StaticResource{
37+
StaticName: "bg-light.svg",
38+
StaticContent: bgLightSVG,
39+
}

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ module fyshos.com/fin
33
go 1.17
44

55
require (
6-
fyne.io/fyne/v2 v2.6.1
7-
github.com/FyshOS/backgrounds v0.0.0-20230702072254-f09024611611
6+
fyne.io/fyne/v2 v2.6.1-rc1.0.20250725192732-8895a9e01fe3
87
github.com/jezek/xgb v1.0.1
98
github.com/stretchr/testify v1.10.0
109
)

0 commit comments

Comments
 (0)