Skip to content

Commit 2cfeef8

Browse files
author
Erwin Dondorp
committed
Release 1.26.0
1 parent 2c68a22 commit 2cfeef8

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,23 @@ SaltGUI includes these libraries (with possible modifications):
336336

337337
## Changelog
338338

339+
## 1.26.0 (2021-10-31)
340+
- applied review comments on documentation (thx achimmihca)
341+
- prevent use of null when a task reported changes as such (thx xzenor)
342+
- add support for additional salt.auth types (thx hoaivan)
343+
- added a message-of-the-day (motd) facility, before and/or after login
344+
- various gui (code) improvements and tweaks
345+
- fixed highstate tooltip content
346+
- use uniform buttons, but smaller when in a table
347+
- hide the commandbox on automatic logout
348+
- fixed beacon template for cert_info
349+
- bump stylelint+eslint versions
350+
- fixed several codebeat reported issues
351+
- added a few more CVEs to test for
352+
- fixed several constructions that needed higher ES versions
353+
- display warning sign for error information in beacon data
354+
- inform when no, or less, beacon-type info is available
355+
339356
## 1.25.0 (2021-08-01)
340357
- fixed generating commands without proper quoting (erwindon, thx xzenor)
341358
- added extended help for beacon configuration (erwindon)

saltgui/static/scripts/panels/Login.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export class LoginPanel extends Panel {
6666
img.src = "static/images/github.png";
6767
aa.append(img);
6868

69-
const txt = document.createTextNode("SaltGUI v1.25.0");
69+
const txt = document.createTextNode("SaltGUI v1.26.0");
7070
aa.append(txt);
7171

7272
form.append(aa);

0 commit comments

Comments
 (0)