feat: implement dynamic versioning in build.gradle and display app version in index.html; enhance resolver scanning messages in I18N

This commit is contained in:
Sarto
2026-04-04 01:28:24 +03:30
parent 4712be5c18
commit dbcf7fe5d0
3 changed files with 39 additions and 10 deletions
+1 -1
View File
@@ -984,7 +984,7 @@ func (s *Server) handleSettings(w http.ResponseWriter, r *http.Request) {
if pl == nil {
pl = &ProfileList{}
}
writeJSON(w, map[string]any{"fontSize": pl.FontSize, "debug": pl.Debug})
writeJSON(w, map[string]any{"fontSize": pl.FontSize, "debug": pl.Debug, "version": version.Version, "commit": version.Commit})
case http.MethodPost:
var req struct {