Add update check, upgrade dependencies and format code and change ver

This commit is contained in:
2026-07-14 07:51:46 +01:00
parent 8f93dde120
commit 7c19abb6ae
10 changed files with 247 additions and 31 deletions
+7 -1
View File
@@ -442,7 +442,13 @@ func switchToTab(jid string, w *gtk.Window) {
profile_box.Append(ji)
}
profile_box.Append(gtk.NewLabel(loadedLocale["connectedWithRole"] + mu.MucUserItem.Role))
profile_box.Append(gtk.NewLabel(loadedLocale["affiliatedAs"] + mu.MucUserItem.Affiliation))
var affil string
if mu.MucUserItem.Affiliation == "none" {
affil = loadedLocale["unaffiliated"]
} else {
affil = loadedLocale["affiliatedAs"] + mu.MucUserItem.Affiliation
}
profile_box.Append(gtk.NewLabel(affil))
}
if ocu.ID != "" {