Skip to content

Commit d252341

Browse files
committed
Packaged metadata
1 parent 54da85e commit d252341

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

FyneApp.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ Website = "https://flashpointarchive.org"
55
Name = "Flashpoint Ultimate Updater"
66
ID = "com.flashpointarchive.ultimate-updater"
77
Version = "1.0.0"
8-
Build = 2
8+
Build = 3

main.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -378,12 +378,12 @@ func mainLayout(w fyne.Window, state *InstallerState) *fyne.Container {
378378
pathHeaderLabel,
379379
pathLabel)
380380

381-
sourceHeaderLabel := widget.NewLabel("Source: ")
382-
sourceHeaderLabel.TextStyle = fyne.TextStyle{Bold: true}
383-
sourceLabel := widget.NewLabel(state.baseUrl)
384-
sourceContainer := container.New(layout.NewHBoxLayout(),
385-
sourceHeaderLabel,
386-
sourceLabel)
381+
versionHeaderLabel := widget.NewLabel("Version: ")
382+
versionHeaderLabel.TextStyle = fyne.TextStyle{Bold: true}
383+
versionLabel := widget.NewLabelWithData(state.installName)
384+
versionContainer := container.New(layout.NewHBoxLayout(),
385+
versionHeaderLabel,
386+
versionLabel)
387387

388388
// Create active file bars
389389
fileLabel := widget.NewLabel("File: ")
@@ -573,7 +573,7 @@ func mainLayout(w fyne.Window, state *InstallerState) *fyne.Container {
573573
)
574574

575575
rightMainContent := container.New(layout.NewVBoxLayout(),
576-
sourceContainer,
576+
versionContainer,
577577
fileContainer1,
578578
fileProgressBar1,
579579
fileContainer2,

0 commit comments

Comments
 (0)