Skip to content

Commit

Permalink
[TASK] add funding text, remove file from building pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
dpolakovics committed Nov 5, 2024
1 parent 3a5c277 commit 9223d4c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@ on:
paths-ignore:
- '**.md'
- '.github/workflows/release.yml'
- 'FUNDING.yml'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- '.github/workflows/release.yml'
- 'FUNDING.yml'

jobs:
build-linux:
Expand Down
10 changes: 9 additions & 1 deletion internal/ui/windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,22 @@ func CreateMainContent(window fyne.Window) fyne.CanvasObject {
// bmcButton.SetMinSize(bmcImage.Size())
// bmcButton.Resize(bmcImage.Size())

// Append new text
newText := "I am an individual developer who has created an app for Soundscape synchronization."
newText = newText + "\nI hope this app helps you as much as it has helped me."
newText = newText + "\nIf you find it useful, please consider buying me a coffee. Thank you!"
multiLineEntry := widget.NewMultiLineEntry()
multiLineEntry.SetText(newText)

// Create and return the main content
return container.NewVBox(
container.NewHBox(folder1Button, folder1Label),
container.NewHBox(folder2Button, folder2Label),
container.NewHBox(folderOutputButton, folderOutputLabel),
startButton,
progressBar,
multiLineEntry,
bmcButton,
progressBar,
)
}

Expand Down

0 comments on commit 9223d4c

Please sign in to comment.