mmozeiko / RcloneBrowser

Simple cross platform GUI for rclone
https://mmozeiko.github.io/RcloneBrowser
The Unlicense
1.32k stars 418 forks source link

Make rename action run in Jobs #135

Closed Rhilip closed 5 years ago

Rhilip commented 6 years ago

Now, with Rclone Browser 1.2 When I want to rename the file or dir, the rename action will lock the main process and I can't do anything until the rename action finish. It seems unnessary and waste time. Can you let the rename action run as job ,so that I can quickly rename file one and another?

mmozeiko commented 6 years ago

I suggest to use "rclone mount" for this kind of functionality instead. Properly implementing asynchronous features in GUI is major effort. Because changes in GUI will need to reflect result which can happen later - and if you do multiple actions at the same time, then the result might differ whether first finishes first, or second one finishes first.