mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 15:36:49 +08:00
add rclone
This commit is contained in:
+1
-1
@@ -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
@@ -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
|
||||||
|
|
||||||
// 类型:电影、电视剧
|
// 类型:电影、电视剧
|
||||||
|
|||||||
@@ -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移动',
|
||||||
}
|
}
|
||||||
|
|
||||||
// 删除历史记录
|
// 删除历史记录
|
||||||
|
|||||||
Reference in New Issue
Block a user