Skip to content

Commit c0b42a6

Browse files
authored
Merge pull request #775 from Authenticator-Extension/dev
2 parents fc8e039 + 16d6b65 commit c0b42a6

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,21 @@
1212
# install development dependencies
1313
npm install
1414
# compile
15-
npm run [chrome, firefox]
15+
npm run [chrome, firefox, prod]
16+
```
17+
18+
To reproduce a build:
19+
20+
``` bash
21+
npm ci
22+
npm run prod
1623
```
1724

1825
## Development (Chrome)
1926

2027
``` bash
2128
# install development dependencies
22-
npm install
29+
npm install
2330
# compiles the Chrome extension to the `./test/chrome` directory
2431
npm run dev:chrome
2532
# load the unpacked extension from the `./test/chrome/ directory in Chrome

manifests/manifest-chrome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "__MSG_extName__",
44
"short_name": "__MSG_extShortName__",
5-
"version": "6.3.3",
5+
"version": "6.3.4",
66
"default_locale": "en",
77
"description": "__MSG_extDesc__",
88
"icons": {

manifests/manifest-edge.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "Authenticator: 2FA Client",
44
"short_name": "__MSG_extShortName__",
5-
"version": "6.3.3",
5+
"version": "6.3.4",
66
"default_locale": "en",
77
"description": "__MSG_extDesc__",
88
"icons": {

manifests/manifest-firefox.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "__MSG_extName__",
44
"short_name": "__MSG_extShortName__",
5-
"version": "6.3.3",
5+
"version": "6.3.4",
66
"default_locale": "en",
77
"description": "__MSG_extDesc__",
88
"applications": {

src/background.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
3838
getBackupToken(message.action);
3939
} else if (message.action === "lock") {
4040
cachedPassphrase = "";
41-
document.cookie = 'passphrase=";expires=Thu, 01 Jan 1970 00:00:00 GMT"';
4241
} else if (message.action === "resetAutolock") {
4342
clearTimeout(autolockTimeout);
4443
setAutolock();

0 commit comments

Comments
 (0)