Skip to content

Commit

Permalink
v8.0.1 (#1272)
Browse files Browse the repository at this point in the history
* fix issue in translations

* fix add account issue (#1264)

* v8.0.1 (#1270)

---------

Co-authored-by: Brendan Early <[email protected]>
  • Loading branch information
Sneezry and mymindstorm authored Aug 23, 2024
1 parent 2cf9b0f commit cf71a63
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _locales/lv/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"description": "Extension Short Name."
},
"extDesc": {
"message": "Divpakāpju kodu ģenerators atvieglo darbu ar 2FA (divpakāpju) autentifikācijas kodu izveidošanu un aizpildīšanu jūsu pārlūkprogrammā.",
"message": "Divpakāpju kodu ģenerators atvieglo darbu ar 2FA (divpakāpju) autentifikācijas kodu izveidošanu un aizpildīšanu jūsu pārlūkprogrammā",
"description": "Extension Description."
},
"added": {
Expand Down
2 changes: 1 addition & 1 deletion manifests/manifest-chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_extName__",
"short_name": "__MSG_extShortName__",
"version": "8.0.0",
"version": "8.0.1",
"default_locale": "en",
"description": "__MSG_extDesc__",
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion manifests/manifest-edge.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Authenticator: 2FA Client",
"version": "8.0.0",
"version": "8.0.1",
"default_locale": "en",
"description": "__MSG_extDesc__",
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion manifests/manifest-firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_extName__",
"short_name": "__MSG_extShortName__",
"version": "8.0.0",
"version": "8.0.1",
"default_locale": "en",
"description": "__MSG_extDesc__",
"browser_specific_settings": {
Expand Down
7 changes: 6 additions & 1 deletion src/components/Popup/AddAccountPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ export default Vue.extend({
this.newAccount.period = undefined;
}
const defaultEncyptionKey = this.$store.state.accounts.defaultEncryption;
const encryption = this.$store.state.accounts.encryption[
defaultEncyptionKey
];
const entry = new OTPEntry(
{
type,
Expand All @@ -128,7 +133,7 @@ export default Vue.extend({
digits: this.newAccount.digits,
algorithm: this.newAccount.algorithm,
},
this.$store.state.accounts.encryption
encryption
);
await entry.create();
Expand Down

0 comments on commit cf71a63

Please sign in to comment.