anti virus

This commit is contained in:
Julian Freeman
2026-04-18 11:09:16 -04:00
parent d42d3592bb
commit a405d6bd6b
11 changed files with 319 additions and 59 deletions

View File

@@ -61,17 +61,21 @@ const {
isDeletingConfig,
isOpeningProfile,
loading,
loadPasswordSites,
openProfileError,
openBrowserProfile,
page,
pickExecutablePath,
pickUserDataPath,
passwordSiteSortKey,
passwordSitesError,
passwordSitesLoading,
profileSortKey,
refreshAll,
savingConfig,
sectionCount,
selectedBrowserId,
hasLoadedPasswordSites,
closeBookmarkRemovalConfirm,
closeBookmarkRemovalResult,
showBookmarkProfilesModal,
@@ -150,7 +154,7 @@ const {
</div>
<p class="eyebrow">扫描中</p>
<h2>正在读取本地浏览器数据</h2>
<p>正在收集用户资料插件书签和已保存登录站点</p>
<p>正在收集用户资料插件书签和历史文件状态</p>
<div class="loading-steps" aria-hidden="true">
<span></span>
<span></span>
@@ -175,6 +179,9 @@ const {
:extension-sort-key="extensionSortKey"
:bookmark-sort-key="bookmarkSortKey"
:password-site-sort-key="passwordSiteSortKey"
:password-sites-loaded="hasLoadedPasswordSites(currentBrowser.browserId)"
:password-sites-loading="passwordSitesLoading"
:password-sites-error="passwordSitesError"
:sorted-profiles="sortedProfiles"
:sorted-extensions="sortedExtensions"
:sorted-bookmarks="sortedBookmarks"
@@ -211,6 +218,7 @@ const {
@update:extension-sort-key="extensionSortKey = $event"
@update:bookmark-sort-key="bookmarkSortKey = $event"
@update:password-site-sort-key="passwordSiteSortKey = $event"
@load-password-sites="loadPasswordSites"
@open-profile="(browserId, profileId) => openBrowserProfile(browserId, profileId)"
@show-extension-profiles="showExtensionProfilesModal"
@show-bookmark-profiles="showBookmarkProfilesModal"