From fdcc71cba4c8fd90c27f16ce5ca5984d01141408 Mon Sep 17 00:00:00 2001
From: iz <2131601562@qq.com>
Date: Tue, 1 Oct 2024 18:00:39 +0800
Subject: [PATCH] v8: new FS module!
---
.github/workflows/compile.yml | 2 +-
package.json | 2 +-
src/App.vue | 10 +-
src/action/action.ts | 7 +-
src/module/explorer.vue | 3 +-
src/module/home.vue | 6 +-
src/module/message.vue | 3 +-
src/module/setting.vue | 15 +-
src/module/tabs.vue | 8 +-
src/module/tree.vue | 3 +-
src/module/upload.vue | 8 +-
src/opener/markdown.vue | 2 +-
src/opener/txtreader.vue | 8 +-
src/style/{font.scss => font.css} | 0
src/style/icon.css | 380 +++++++
src/style/icon.scss | 6 +-
src/utils/fs.ts | 1612 ++++++++++++++---------------
src/utils/pwa.ts | 48 -
18 files changed, 1192 insertions(+), 931 deletions(-)
rename src/style/{font.scss => font.css} (100%)
create mode 100644 src/style/icon.css
delete mode 100644 src/utils/pwa.ts
diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml
index 3046f61..7dd8e93 100644
--- a/.github/workflows/compile.yml
+++ b/.github/workflows/compile.yml
@@ -26,7 +26,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- - run: npm i
+ - run: npm i --dev
- run: npm run build --if-present
- run: tar -zcvf release.tgz dist/
- name: Upload binaries to release
diff --git a/package.json b/package.json
index 6ab66bc..a6a947d 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "@imzlh/vlist",
"version": "5.7.3",
- "displayName": "vList5",
+ "displayName": "vList",
"description": "一个全能的现代化的文件管理UI,使用vue3",
"license": "MIT",
"keywords": [
diff --git a/src/App.vue b/src/App.vue
index 7e80526..27baa2f 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -326,17 +326,15 @@