Skip to content

Commit 2f1ca65

Browse files
authored
docs: add more info to relative path tooltip (#884)
* docs: add more info to relative path tooltip * Apply auto-build changes * docs: format tooltip
1 parent 5cdab10 commit 2f1ca65

File tree

4 files changed

+46
-4
lines changed
  • FlowPluginsTs/CommunityFlowPlugins/file
  • FlowPlugins/CommunityFlowPlugins/file

4 files changed

+46
-4
lines changed

FlowPlugins/CommunityFlowPlugins/file/copyToDirectory/1.0.0/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ var details = function () { return ({
7575
inputUI: {
7676
type: 'switch',
7777
},
78-
tooltip: 'Specify whether to keep the relative path',
78+
tooltip: "\n \nSpecify whether to keep the relative path.\n\nFor example:\n\n\\n Source folder:\n\\n C:/input/\n\n\\n Source file:\n\\n C:/input/test1/test2/qsv_h264.mkv\n\n\\n Copy to Directory Output Directory\n\\n C:/output/\n\n\\n Keep Relative Path disabled:\n\\n C:/output/qsv_h264.mkv\n\n\\n Keep Relative Path enabled:\n\\n C:/output/test1/test2/qsv_h264.mkv\n \n ",
7979
},
8080
{
8181
label: 'Make Working File',

FlowPlugins/CommunityFlowPlugins/file/moveToDirectory/2.0.0/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ var details = function () { return ({
7575
inputUI: {
7676
type: 'switch',
7777
},
78-
tooltip: 'Specify whether to keep the relative path',
78+
tooltip: "\n \nSpecify whether to keep the relative path.\n\nFor example:\n\n\\n Source folder:\n\\n C:/input/\n\n\\n Source file:\n\\n C:/input/test1/test2/qsv_h264.mkv\n\n\\n Move to Directory Output Directory\n\\n C:/output/\n\n\\n Keep Relative Path disabled:\n\\n C:/output/qsv_h264.mkv\n\n\\n Keep Relative Path enabled:\n\\n C:/output/test1/test2/qsv_h264.mkv\n \n ",
7979
},
8080
],
8181
outputs: [

FlowPluginsTs/CommunityFlowPlugins/file/copyToDirectory/1.0.0/index.ts

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,28 @@ const details = (): IpluginDetails => ({
4040
inputUI: {
4141
type: 'switch',
4242
},
43-
tooltip: 'Specify whether to keep the relative path',
43+
tooltip: `
44+
45+
Specify whether to keep the relative path.
46+
47+
For example:
48+
49+
\\n Source folder:
50+
\\n C:/input/
51+
52+
\\n Source file:
53+
\\n C:/input/test1/test2/qsv_h264.mkv
54+
55+
\\n Copy to Directory Output Directory
56+
\\n C:/output/
57+
58+
\\n Keep Relative Path disabled:
59+
\\n C:/output/qsv_h264.mkv
60+
61+
\\n Keep Relative Path enabled:
62+
\\n C:/output/test1/test2/qsv_h264.mkv
63+
64+
`,
4465
},
4566
{
4667
label: 'Make Working File',

FlowPluginsTs/CommunityFlowPlugins/file/moveToDirectory/2.0.0/index.ts

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,28 @@ const details = ():IpluginDetails => ({
4242
inputUI: {
4343
type: 'switch',
4444
},
45-
tooltip: 'Specify whether to keep the relative path',
45+
tooltip: `
46+
47+
Specify whether to keep the relative path.
48+
49+
For example:
50+
51+
\\n Source folder:
52+
\\n C:/input/
53+
54+
\\n Source file:
55+
\\n C:/input/test1/test2/qsv_h264.mkv
56+
57+
\\n Move to Directory Output Directory
58+
\\n C:/output/
59+
60+
\\n Keep Relative Path disabled:
61+
\\n C:/output/qsv_h264.mkv
62+
63+
\\n Keep Relative Path enabled:
64+
\\n C:/output/test1/test2/qsv_h264.mkv
65+
66+
`,
4667
},
4768
],
4869
outputs: [

0 commit comments

Comments
 (0)