Skip to content
Merged

0.7.2 #208

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.