Skip to content

Commit

Permalink
[TASK] Change link to new plugins repo
Browse files Browse the repository at this point in the history
[BUGFIX] possible exception on loading message
  • Loading branch information
Sharrnah committed Jul 5, 2024
1 parent 70a1a9c commit 104c9ab
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion FyneApp.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ Website = "https://github.com/Sharrnah/whispering-ui"
Name = "Whispering Tiger"
ID = "tiger.whispering"
Version = "1.3.1"
Build = 3
Build = 4
2 changes: 1 addition & 1 deletion Pages/Advanced/PluginSettings.go
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ func CreatePluginSettingsPage() fyne.CanvasObject {
widget.NewLabel("\nNo Plugins found.\n\nDownload Plugins using the button below."),
downloadButton,
widget.NewLabel("\nOr download Plugins manually from:"),
widget.NewHyperlink("https://github.com/Sharrnah/whispering/blob/main/documentation/plugins.md", parseURL("https://github.com/Sharrnah/whispering/blob/main/documentation/plugins.md")),
widget.NewHyperlink("https://github.com/Sharrnah/whispering-plugins/blob/main/README.md", parseURL("https://github.com/Sharrnah/whispering-plugins/blob/main/README.md")),
widget.NewLabel("and place the *.py file in the Plugins folder."),
openPluginsFolderButton,
),
Expand Down
4 changes: 4 additions & 0 deletions Websocket/Messages/loading_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ func (res LoadingState) Update() *LoadingState {
if LoadingStateDialog == nil {
res.InitStateWindow()
}
// still no dialog? just return.
if LoadingStateDialog == nil {
return &res
}

if len(res.States) == 0 {
LoadingStateDialog.Hide()
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func main() {
//Utilities.AppVersion = a.Metadata().Version
//Utilities.AppBuild = strconv.Itoa(a.Metadata().Build)
Utilities.AppVersion = "1.3.1"
Utilities.AppBuild = "2"
Utilities.AppBuild = "3"

w := a.NewWindow("Whispering Tiger")
w.SetMaster()
Expand Down

0 comments on commit 104c9ab

Please sign in to comment.