Skip to content

Commit

Permalink
0.7.2 (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
zachmann authored Jan 20, 2023
2 parents 52031f8 + 02e0f12 commit be8d2d4
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,18 @@
<!-- ### Dependencies -->
<!-- -->

## mytoken 0.7.2

### Bugfixes

- Fixed a bug in the webinterface where the metadata discovery was broken.

## mytoken 0.7.1

### Bugfixes

- Fixed a bug with the local storage that caused problems with outdated discovery information
- Fixed a bug in the webinterface with the local storage that caused problems with outdated discovery information
- Fixed a bug in the webinterface where the `Expand` `Collapse` buttons (e.g. in the consent screen) got the wrong text.

## mytoken 0.7.0

Expand Down
2 changes: 1 addition & 1 deletion internal/model/version/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.1
0.7.2
Binary file modified internal/server/web/static/img/mytoken-grey.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified internal/server/web/static/img/mytoken.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion internal/server/web/static/js/create-mt.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ function initProfileSupport() {
$checks = $checks.add($(`.any-restr-input[instance-prefix=${mtPrefix}]`));
$checks = $checks.add($(`.any-rot-input[instance-prefix=${mtPrefix}]`));
$checks = $checks.add(capabilityChecks(mtPrefix));
console.log($checks);
$checks.on('change change.datetimepicker', function (e) {
if ($(e.currentTarget).hasClass('datetimepicker-input') && datetimepickerChangeTriggeredFromJS) {
return;
Expand Down
3 changes: 2 additions & 1 deletion internal/server/web/static/js/discovery.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ const configElements = [

function discovery(...next) {
try {
if (storageGet('discovery') !== null) {
const discovery = storageGet('discovery');
if (discovery !== null && discovery !== undefined) {
doNext(...next);
return;
}
Expand Down
1 change: 0 additions & 1 deletion internal/server/web/static/js/tokeninfo-status.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,6 @@ $('#recreate-mt').on('click', function () {
authURL(tokeninfoPrefix).attr("href", url);
authURL(tokeninfoPrefix).text(url);
mtInstructions(tokeninfoPrefix).showB();
console.log("foo");
polling_recreate_mytoken(code, interval);
window.open(url, '_blank');
},
Expand Down
2 changes: 1 addition & 1 deletion internal/server/web/static/js/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ $.fn.hideB = function () {
$('.my-expand').on('click', function () {
const expand = "Expand";
const collapse = "Collapse";
if ($(this).text() === expand) {
if ($(this).text().trim() === expand) {
$(this).text(collapse);
} else {
$(this).text(expand);
Expand Down
Binary file modified mytoken.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit be8d2d4

Please sign in to comment.