-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed negative width bug when files are 0 and added copy&delete mode
- Loading branch information
1 parent
ae22f79
commit b185f02
Showing
2 changed files
with
17 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
{ | ||
"input_dir": "PlayerVisualization", | ||
"output_dir": "roha", | ||
"extensions": [".cpp", ".json", ".txt"], | ||
"input_dir": "/run/user/1000/gvfs/mtp:host=SAMSUNG_SAMSUNG_Android_RZ8N906GZPH/Phone/SendAnywhere", | ||
"output_dir": "/run/media/rohan/Media/Photos", | ||
"extensions": [".JPG", ".jpeg"], | ||
|
||
// Valid options are "copy" and "move" | ||
// copy means files are copied from input_dir to output_dir while move means files are moved | ||
// Valid options are "copy", "move", "copy&delete" | ||
// copy means files are copied from input_dir to output_dir | ||
// move means files are moved | ||
// copy&delete means the file is copied from input_dir and then deleted; this mode is a fallback to be selected when move fails | ||
|
||
"mode": "copy" | ||
} |