Skip to content

Commit 6d19bcc

Browse files
committed
Merge branch 'main' into feature/csupdate
2 parents 7e1a26e + 881898e commit 6d19bcc

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

AdvancedSharpAdbClient/DeviceCommands/DeviceClient.Async.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ public async Task SendKeyEventAsync(string key, CancellationToken cancellationTo
439439
}
440440

441441
/// <summary>
442-
/// Send text to device asynchronously. Doesn't support Russian.
442+
/// Send text to device asynchronously. Doesn't support Unicode.
443443
/// </summary>
444444
/// <param name="text">The text to send.</param>
445445
/// <param name="cancellationToken">A <see cref="CancellationToken"/> which can be used to cancel the asynchronous operation.</param>

AdvancedSharpAdbClient/DeviceCommands/DeviceClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ public void SendKeyEvent(string key)
369369
}
370370

371371
/// <summary>
372-
/// Send text to device. Doesn't support Russian.
372+
/// Send text to device. Doesn't support Unicode.
373373
/// </summary>
374374
/// <param name="text">The text to send.</param>
375375
public void SendText(string text)

AdvancedSharpAdbClient/DeviceCommands/DeviceExtensions.Async.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public static Task SendKeyEventAsync(this IAdbClient client, DeviceData device,
149149
new DeviceClient(client, device).SendKeyEventAsync(key, cancellationToken);
150150

151151
/// <summary>
152-
/// Asynchronously send text to device. Doesn't support Russian.
152+
/// Asynchronously send text to device. Doesn't support Unicode.
153153
/// </summary>
154154
/// <param name="client">The <see cref="IAdbClient"/> to use when executing the command.</param>
155155
/// <param name="device">The device on which to run the command.</param>

AdvancedSharpAdbClient/DeviceCommands/DeviceExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public static void SendKeyEvent(this IAdbClient client, DeviceData device, strin
122122
new DeviceClient(client, device).SendKeyEvent(key);
123123

124124
/// <summary>
125-
/// Send text to device. Doesn't support Russian.
125+
/// Send text to device. Doesn't support Unicode.
126126
/// </summary>
127127
/// <param name="client">An instance of a class that implements the <see cref="IAdbClient"/> interface.</param>
128128
/// <param name="device">The device on which to clear the input text.</param>

AdvancedSharpAdbClient/DeviceCommands/Models/Element.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ public void Click()
248248
}
249249

250250
/// <summary>
251-
/// Send text to device. Doesn't support Russian.
251+
/// Send text to device. Doesn't support Unicode.
252252
/// </summary>
253253
/// <param name="text">The text to send.</param>
254254
public void SendText(string text)
@@ -309,7 +309,7 @@ public async Task ClickAsync(CancellationToken cancellationToken = default)
309309
}
310310

311311
/// <summary>
312-
/// Asynchronously send text to device. Doesn't support Russian.
312+
/// Asynchronously send text to device. Doesn't support Unicode.
313313
/// </summary>
314314
/// <param name="text">The text to send.</param>
315315
/// <param name="cancellationToken">A <see cref="CancellationToken"/> which can be used to cancel the asynchronous operation.</param>

AdvancedSharpAdbClient/DeviceCommands/PackageManager.Async.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ protected virtual async Task<string> SyncPackageToDeviceAsync(string localFilePa
599599
Action<SyncProgressChangedEventArgs>? progress = callback == null ? null : args => callback.Invoke(localFilePath, args);
600600

601601
// As C# can't use octal, the octal literal 666 (rw-Permission) is here converted to decimal (438)
602-
await sync.PushAsync(stream, remoteFilePath, UnixFileStatus.DefaultFileMode, File.GetLastWriteTime(localFilePath), null, cancellationToken).ConfigureAwait(false);
602+
await sync.PushAsync(stream, remoteFilePath, UnixFileStatus.DefaultFileMode, File.GetLastWriteTime(localFilePath), progress, cancellationToken).ConfigureAwait(false);
603603
}
604604

605605
return remoteFilePath;

0 commit comments

Comments
 (0)