Skip to content

Commit 57bedac

Browse files
mymindstormdependabot[bot]Sneezry
authored
6.2.1 (#509)
* close #506 * Bump lodash from 4.17.14 to 4.17.19 Bumps [lodash](https://github.com/lodash/lodash) from 4.17.14 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](lodash/lodash@4.17.14...4.17.19) Signed-off-by: dependabot[bot] <[email protected]> * ui fix * code style fix * fix #505 * v6.2.1 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Zhe Li <[email protected]>
1 parent bf313d0 commit 57bedac

8 files changed

+46
-50
lines changed

manifest-chrome.json

+1-1
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.2.0",
5+
"version": "6.2.1",
66
"default_locale": "en",
77
"description": "__MSG_extDesc__",
88
"icons": {

manifest-firefox.json

+1-1
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.2.0",
5+
"version": "6.2.1",
66
"default_locale": "en",
77
"description": "__MSG_extDesc__",
88
"applications": {

package-lock.json

+27-41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"base64-loader": "^1.0.0",
3030
"eslint": "^6.8.0",
3131
"fork-ts-checker-webpack-plugin": "^4.1.4",
32-
"npm-license-generator": "^1.0.0",
32+
"npm-license-generator": "^1.0.2",
3333
"prettier": "1.18.2",
3434
"sass": "^1.26.5",
3535
"ts-loader": "^6.2.2",

src/components/Popup.vue

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
<MenuPage
1919
id="menu"
20+
v-show="style.slidein || style.slideout"
2021
v-bind:class="{ slidein: style.slidein, slideout: style.slideout }"
2122
/>
2223

src/components/Popup/DrivePage.vue

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@
1212
{{ i18n.account }} - {{ email }}
1313
</div>
1414
</div>
15-
<div v-show="encryption.getEncryptionStatus() && backupToken">
15+
<div
16+
class="control-group"
17+
v-show="encryption.getEncryptionStatus() && backupToken"
18+
>
1619
<label class="combo-label">{{ i18n.encrypted }}</label>
17-
<select v-model="isEncrypted">
20+
<select style="margin: 20px 10px;" v-model="isEncrypted">
1821
<option value="true">{{ i18n.yes }}</option>
1922
<option value="false">{{ i18n.no }}</option>
2023
</select>

src/components/Popup/DropboxPage.vue

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@
1212
{{ i18n.account }} - {{ email }}
1313
</div>
1414
</div>
15-
<div v-show="encryption.getEncryptionStatus() && backupToken">
15+
<div
16+
class="control-group"
17+
v-show="encryption.getEncryptionStatus() && backupToken"
18+
>
1619
<label class="combo-label">{{ i18n.encrypted }}</label>
17-
<select v-model="isEncrypted">
20+
<select style="margin: 20px 10px;" v-model="isEncrypted">
1821
<option value="true">{{ i18n.yes }}</option>
1922
<option value="false">{{ i18n.no }}</option>
2023
</select>

src/components/Popup/OneDrivePage.vue

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@
1212
{{ i18n.account }} - {{ email }}
1313
</div>
1414
</div>
15-
<div v-show="encryption.getEncryptionStatus() && backupToken">
15+
<div
16+
class="control-group"
17+
v-show="encryption.getEncryptionStatus() && backupToken"
18+
>
1619
<label class="combo-label">{{ i18n.encrypted }}</label>
17-
<select v-model="isEncrypted">
20+
<select style="margin: 20px 10px;" v-model="isEncrypted">
1821
<option value="true">{{ i18n.yes }}</option>
1922
<option value="false">{{ i18n.no }}</option>
2023
</select>

0 commit comments

Comments
 (0)