Skip to content

Commit 73080a6

Browse files
committed
v5.6.16274.0-Beta2
1 parent 39675e1 commit 73080a6

27 files changed

+49
-47
lines changed

Common/Common.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
<Platforms>AnyCPU;x64</Platforms>
1111
</PropertyGroup>
1212
<ItemGroup>
13-
<PackageReference Include="ITHit.FileSystem" Version="5.6.16262.0-Beta2" />
13+
<PackageReference Include="ITHit.FileSystem" Version="5.6.16274.0-Beta2" />
1414
</ItemGroup>
1515
</Project>

Windows/Common/Core/Common.Windows.Core.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.19041.1" />
2121
</ItemGroup>
2222
<ItemGroup>
23-
<PackageReference Include="ITHit.FileSystem.Windows.Package" Version="5.6.16262.0-Beta2" />
24-
<PackageReference Include="ITHit.FileSystem.Windows" Version="5.6.16262.0-Beta2" />
23+
<PackageReference Include="ITHit.FileSystem.Windows.Package" Version="5.6.16274.0-Beta2" />
24+
<PackageReference Include="ITHit.FileSystem.Windows" Version="5.6.16274.0-Beta2" />
2525
<ProjectReference Include="..\..\..\Common\Common.csproj" />
2626
</ItemGroup>
2727
</Project>

Windows/Common/VirtualDrive/Common.Windows.VirtualDrive.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Platforms>AnyCPU;x64</Platforms>
1010
</PropertyGroup>
1111
<ItemGroup>
12-
<PackageReference Include="ITHit.FileSystem.Windows" Version="5.6.16262.0-Beta2" />
12+
<PackageReference Include="ITHit.FileSystem.Windows" Version="5.6.16274.0-Beta2" />
1313
<ProjectReference Include="..\..\..\Common\Common.csproj" />
1414
<ProjectReference Include="..\Core\Common.Windows.Core.csproj" />
1515
</ItemGroup>

Windows/Common/VirtualDrive/VirtualEngineBase.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,28 +63,28 @@ public VirtualEngineBase(
6363
}
6464

6565
/// <inheritdoc/>
66-
public override async Task<bool> FilterAsync(SyncDirection direction, OperationType operationType, string path, string newPath = null, FileAttributes? attributes = null, IOperationContext operationContext = null)
66+
public override async Task<bool> FilterAsync(SyncDirection direction, OperationType operationType, string path, FileSystemItemType itemType, string newPath = null, FileAttributes? attributes = null, IOperationContext operationContext = null)
6767
{
6868
// Use the code below to filter based on files and folders attributes.
69-
//if (await new AttributesFilter(FileAttributes.Hidden | FileAttributes.Temporary).FilterAsync(direction, operationType, path, newPath, attributes))
69+
//if (await new AttributesFilter(FileAttributes.Hidden | FileAttributes.Temporary).FilterAsync(direction, operationType, path, itemType, newPath, attributes))
7070
//{
7171
// LogDebug($"{nameof(AttributesFilter)} filtered {operationType}", path, newPath, operationContext);
7272
// return true;
7373
//}
7474

75-
if (await new ZipFilter().FilterAsync(direction, operationType, path, newPath, attributes))
75+
if (await new ZipFilter().FilterAsync(direction, operationType, path, itemType, newPath, attributes))
7676
{
7777
LogDebug($"{nameof(ZipFilter)} filtered {operationType}", path, newPath, operationContext);
7878
return true;
7979
}
8080

81-
if (await new MsOfficeFilter().FilterAsync(direction, operationType, path, newPath, attributes))
81+
if (await new MsOfficeFilter().FilterAsync(direction, operationType, path, itemType, newPath, attributes))
8282
{
8383
LogDebug($"{nameof(MsOfficeFilter)} filtered {operationType}", path, newPath, operationContext);
8484
return true;
8585
}
8686

87-
if (await new AutoCadFilter().FilterAsync(direction, operationType, path, newPath, attributes))
87+
if (await new AutoCadFilter().FilterAsync(direction, operationType, path, itemType, newPath, attributes))
8888
{
8989
LogDebug($"{nameof(AutoCadFilter)} filtered {operationType}", path, newPath, operationContext);
9090
return true;

Windows/VirtualDrive/VirtualDrive.ShellExtension/ContextMenuVerbRpc.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace VirtualDrive.ShellExtension
1111
[ComVisible(true)]
1212
[ProgId("VirtualDrive.ContextMenuVerb")]
1313
[Guid("9C923BF3-3A4B-487B-AB4E-B4CF87FD1C25")]
14-
public class ContextMenuVerbRpc : ContextMenuVerbRpcBase
14+
public class ContextMenuVerbRpc : CloudFilesContextMenuVerbRpcBase
1515
{
1616

1717
}

Windows/VirtualDrive/VirtualDrive.ShellExtension/CustomStateProviderRpc.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace VirtualDrive.ShellExtension
1212
[ComVisible(true)]
1313
[ProgId("VirtualDrive.CustomStateProvider")]
1414
[Guid("000562AA-2879-4CF1-89E8-0AEC9596FE19")]
15-
public class CustomStateProviderRpc : CustomStateProviderRpcBase
15+
public class CustomStateProviderRpc : CustomStateHandlerRpcBase
1616
{
1717

1818
}

Windows/VirtualDrive/VirtualDrive.ShellExtension/ThumbnailProviderRpc.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace VirtualDrive.ShellExtension
1010
[ComVisible(true)]
1111
[ProgId("VirtualDrive.ThumbnailProvider")]
1212
[Guid("05CF065E-E135-4B2B-9D4D-CFB3FBAC73A4")]
13-
public class ThumbnailProviderRpc : ThumbnailProviderRpcBase
13+
public class ThumbnailProviderRpc : ThumbnailProviderHandlerRpcBase
1414
{
1515

1616
}

Windows/VirtualDrive/VirtualDrive.ShellExtension/UriSourceRpc.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace VirtualDrive.ShellExtension
1010
[ComVisible(true)]
1111
[ProgId("VirtualDrive.UriSource")]
1212
[Guid("6D45BC7A-D0B7-4913-8984-FD7261550C08")]
13-
public class UriSourceRpc : UriSourceRpcBase
13+
public class UriSourceRpc : ContentUriSourceRpcBase
1414
{
1515

1616
}

Windows/VirtualDrive/VirtualDrive.ShellExtension/VirtualDrive.ShellExtension.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
2020
</ItemGroup>
2121
<ItemGroup>
22-
<PackageReference Include="ITHit.FileSystem.Windows.ShellExtension" Version="5.6.16262.0-Beta2" />
22+
<PackageReference Include="ITHit.FileSystem.Windows.ShellExtension" Version="5.6.16274.0-Beta2" />
2323
</ItemGroup>
2424
<ItemGroup>
2525
<None Update="log4net.config">
29.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)