Add patterned rename and Move to, and keep settings, selection, and queue speed from resetting.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-08-26 18:29:17 +02:00
parent 66ea25993f
commit ff070beba4
62 changed files with 3172 additions and 92 deletions

View File

@@ -57,6 +57,10 @@ public interface ITransferHost
=> Task.CompletedTask;
Task EnqueueConvertAsync(string sourcePath, string destinationPath, ConversionKind kind, CancellationToken cancellationToken = default)
=> Task.CompletedTask;
Task EnqueueWriteTagsAsync(string path, string payload, CancellationToken cancellationToken = default)
=> Task.CompletedTask;
Task EnqueueMoveToAsync(string source, string destinationPath, CancellationToken cancellationToken = default)
=> Task.CompletedTask;
}
public interface ISourceHost