Skip to content
Merged

0.7.1 #205

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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
<!-- ### Dependencies -->
<!-- -->

## mytoken 0.7.1

### Bugfixes

- Fixed a bug with the local storage that caused problems with outdated discovery information

## mytoken 0.7.0

### Features
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.0
0.7.1
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.
2 changes: 1 addition & 1 deletion internal/server/web/static/js/storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function _storage(session = false) {
function storageGet(key) {
let v = _sessionStorage().getItem(key)
if (!v) {
v = _localStorage().getItem(key);
return undefined;
}
return JSON.parse(v);
}
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.