Skip to content

Commit fb87c0a

Browse files
authored
Merge pull request #211 from Authenticator-Extension/dev
5.2.1
2 parents 5dd8c87 + 286e44d commit fb87c0a

File tree

7 files changed

+15
-10
lines changed

7 files changed

+15
-10
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,22 @@ stages:
77
jobs:
88
include:
99
- stage: test
10+
name: "TS style check"
1011
script: "gts check"
1112
- stage: test
13+
name: "lintspaces"
1214
script: "npm i -g lintspaces-cli && lintspaces -nt -d 'spaces' -i 'js-comments' src/* view/* manifest-*.json css/popup.css css/import.css"
1315
- stage: test
16+
name: "Build Firefox and run addons-linter"
1417
script: "npm install --only=production addons-linter && npm run firefox && addons-linter firefox"
1518
- stage: test
19+
name: "Build Chrome"
1620
script: "npm run chrome"
1721
- stage: test
18-
# new i18n strings
22+
name: "Process new i18n strings"
1923
script: bash scripts/i18n.sh
2024
if: branch = dev AND type != pull_request
2125
- stage: deploy
22-
# release tagging
26+
name: "Release tagging"
2327
script: bash scripts/tag.sh
2428
if: branch = release AND type != pull_request

edge-files/AppXManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<Identity
99
Name="2184mymindstorm.AuthenticatorExtension"
1010
Publisher="CN=A72AD439-2119-4B82-B629-3302B9AF8944"
11-
Version="5.2.0.0"/>
11+
Version="5.2.1.0"/>
1212

1313
<Properties>
1414
<DisplayName>Authenticator Extension</DisplayName>
@@ -62,4 +62,4 @@
6262
</Extensions>
6363
</Application>
6464
</Applications>
65-
</Package>
65+
</Package>

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": "5.2.0",
5+
"version": "5.2.1",
66
"default_locale": "en",
77
"description": "__MSG_extDesc__",
88
"icons": {

manifest-edge.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"storage"
5757
],
5858
"short_name": "__MSG_extShortName__",
59-
"version": "5.2.0",
59+
"version": "5.2.1",
6060
"web_accessible_resources": [
6161
"view/qr.html",
6262
"images/scan.gif"

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": "5.2.0",
5+
"version": "5.2.1",
66
"default_locale": "en",
77
"description": "__MSG_extDesc__",
88
"applications": {

scripts/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if ! [[ $CREDS =~ $CREDREGEX ]] ; then
3232
echo -e "\e[7m\033[33mWarning: Missing info in credentials.ts\033[0m"
3333
fi
3434

35-
if ! [[ $REMOTE = *"https://github.com/Authenticator-Extension/Authenticator.git"* ]] ; then
35+
if ! [[ $REMOTE = *"https://github.com/Authenticator-Extension/Authenticator.git"* || $REMOTE = *"[email protected]:Authenticator-Extension/Authenticator.git"* ]] ; then
3636
echo
3737
echo -e "\e[7m\033[33mNotice\033[0m"
3838
echo
@@ -59,4 +59,4 @@ else
5959
cp manifest-$PLATFORM.json $PLATFORM/manifest.json
6060
fi
6161

62-
echo -e "\033[0;32mDone!\033[0m"
62+
echo -e "\033[0;32mDone!\033[0m"

view/import.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</div>
3030
<div v-show="importType === 'import_file'">
3131
<div class="import_file" v-if="!getFilePassphrase">
32-
<label for="import_file" style="">{{ i18n.import_backup_file }}</label>
32+
<label for="import_file">{{ i18n.import_backup_file }}</label>
3333
<input id="import_file" type="file" v-on:change="importFile($event, true)" accept="application/json"></input>
3434
</div>
3535
<div class="import_file_passphrase" v-else>
@@ -70,6 +70,7 @@
7070
<script src="../build/ui/passphrase.js"></script>
7171
<script src="../build/ui/qr.js"></script>
7272
<script src="../build/ui/ui.js"></script>
73+
<script src="../build/ui/backup.js"></script>
7374
<script src="../build/popup.js"></script>
7475
</body>
7576
</html>

0 commit comments

Comments
 (0)