add rclone

This commit is contained in:
jxxghp
2023-10-11 11:47:45 +08:00
parent 110fe39e72
commit 7a5d04dc53
4 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "moviepilot", "name": "moviepilot",
"version": "1.3.0-1", "version": "1.3.1",
"private": true, "private": true,
"bin": "dist/service.js", "bin": "dist/service.js",
"scripts": { "scripts": {
+1 -1
View File
@@ -87,7 +87,7 @@ export interface TransferHistory {
// 目的目录 // 目的目录
dest?: string dest?: string
// 转移模式link/copy/move/softlink // 转移模式link/copy/move/softlink/rclone_copy/rclone_move
mode?: string mode?: string
// 类型:电影、电视剧 // 类型:电影、电视剧
+2
View File
@@ -649,6 +649,8 @@ onMounted(() => {
{ title: '复制', value: 'copy' }, { title: '复制', value: 'copy' },
{ title: '硬链接', value: 'link' }, { title: '硬链接', value: 'link' },
{ title: '软链接', value: 'softlink' }, { title: '软链接', value: 'softlink' },
{ title: 'Rclone复制', value: 'rclone_copy' },
{ title: 'Rclone移动', value: 'rclone_move' },
]" ]"
/> />
</VCol> </VCol>
@@ -128,6 +128,8 @@ const TransferDict: { [key: string]: string } = {
move: '移动', move: '移动',
link: '硬链接', link: '硬链接',
softlink: '软链接', softlink: '软链接',
rclone_copy: 'Rclone复制',
rclone_move: 'Rclone移动',
} }
// 删除历史记录 // 删除历史记录