diff --git a/README.md b/README.md index 61902e7e6..4b56889df 100644 --- a/README.md +++ b/README.md @@ -314,6 +314,15 @@ SaltGUI includes these libraries (with possible modifications): ## Changelog +## 1.25.0 (2021-08-01) +- fixed generating commands without proper quoting (erwindon, thx xzenor) +- added extended help for beacon configuration (erwindon) +- fixed sticky key status (erwindon) +- updated CVE info to include recent disclosures (erwindon) +- several small improvements and fixes (erwindon) +- updated several dependencies reported by dependabot +- celebrating 300 stars on GitHub + ## 1.24.0 (2021-03-04) - SaltGUI is now a single page application (erwindon) - allow reduced number of pages (erwindon, thx bbinet) diff --git a/saltgui/static/scripts/panels/Login.js b/saltgui/static/scripts/panels/Login.js index 5ff1b6405..8aac6a61a 100644 --- a/saltgui/static/scripts/panels/Login.js +++ b/saltgui/static/scripts/panels/Login.js @@ -107,7 +107,7 @@ export class LoginPanel extends Panel { img.src = "static/images/github.png"; aa.append(img); - const txt = document.createTextNode("SaltGUI v1.24.0"); + const txt = document.createTextNode("SaltGUI v1.25.0"); aa.append(txt); form.append(aa);