Skip to content

Commit c8749e0

Browse files
committed
v8.5.27248.0
1 parent 288ba5a commit c8749e0

File tree

111 files changed

+2773
-426
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+2773
-426
lines changed

Common/Common.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Platforms>AnyCPU;x64</Platforms>
1111
</PropertyGroup>
1212
<ItemGroup>
13-
<PackageReference Include="ITHit.FileSystem.Windows" Version="8.5.27224.0" />
14-
<PackageReference Include="ITHit.FileSystem" Version="8.5.27224.0" />
13+
<PackageReference Include="ITHit.FileSystem.Windows" Version="8.5.27248.0" />
14+
<PackageReference Include="ITHit.FileSystem" Version="8.5.27248.0" />
1515
</ItemGroup>
1616
</Project>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.26100.1742" />
2424
</ItemGroup>
2525
<ItemGroup>
26-
<PackageReference Include="ITHit.FileSystem.Windows.Package" Version="8.5.27224.0" />
27-
<PackageReference Include="ITHit.FileSystem.Windows" Version="8.5.27224.0" />
26+
<PackageReference Include="ITHit.FileSystem.Windows.Package" Version="8.5.27248.0" />
27+
<PackageReference Include="ITHit.FileSystem.Windows" Version="8.5.27248.0" />
2828
<ProjectReference Include="..\..\..\Common\Common.csproj" />
2929
</ItemGroup>
3030
</Project>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<Compile Remove="IVirtualFolder.cs" />
1414
</ItemGroup>
1515
<ItemGroup>
16-
<PackageReference Include="ITHit.FileSystem.Windows.AppHelper" Version="8.5.27224.0" />
17-
<PackageReference Include="ITHit.FileSystem.Windows" Version="8.5.27224.0" />
16+
<PackageReference Include="ITHit.FileSystem.Windows.AppHelper" Version="8.5.27248.0" />
17+
<PackageReference Include="ITHit.FileSystem.Windows" Version="8.5.27248.0" />
1818
<ProjectReference Include="..\..\..\Common\Common.csproj" />
1919
<ProjectReference Include="..\Core\Common.Windows.Core.csproj" />
2020
</ItemGroup>

Windows/Common/VirtualDrive/VirtualEngineBase.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -262,10 +262,10 @@ public override async Task<bool> FilterAsync(SyncDirection direction, OperationT
262262
return true;
263263
}
264264

265-
//if (await new PhotoshopFilter().FilterAsync(direction, operationType, path, itemType, newPath, operationContext))
266-
//{
267-
// return true;
268-
//}
265+
if (await new PhotoshopFilter().FilterAsync(direction, operationType, path, itemType, newPath, operationContext))
266+
{
267+
return true;
268+
}
269269

270270
//if (await new ErrorStatusFilter(true).FilterAsync(direction, operationType, path, itemType, newPath, operationContext))
271271
//{

Windows/VirtualDrive/VirtualDrive/VirtualDrive.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This is an advanced project with ETags support, Microsoft Office documents editi
4040
<PackageReference Include="System.Drawing.Common" Version="9.0.0" />
4141
</ItemGroup>
4242
<ItemGroup>
43-
<PackageReference Include="ITHit.FileSystem.Windows.Package" Version="8.5.27224.0" />
43+
<PackageReference Include="ITHit.FileSystem.Windows.Package" Version="8.5.27248.0" />
4444
<ProjectReference Include="..\..\..\Common\Common.csproj" />
4545
<ProjectReference Include="..\..\Common\VirtualDrive\Common.Windows.VirtualDrive.csproj" />
4646
</ItemGroup>

Windows/VirtualFileSystem/VirtualFileSystem.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This project does not support ETags, locking, Microsoft Office documents editing
3535
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.0" />
3636
</ItemGroup>
3737
<ItemGroup>
38-
<PackageReference Include="ITHit.FileSystem.Windows.AppHelper" Version="8.5.27224.0" />
38+
<PackageReference Include="ITHit.FileSystem.Windows.AppHelper" Version="8.5.27248.0" />
3939
<ProjectReference Include="..\Common\Core\Common.Windows.Core.csproj" />
4040
</ItemGroup>
4141
<ItemGroup>

Windows/WebDAVDrive/App.xaml.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@
1616
using WindowManager = ITHit.FileSystem.Samples.Common.Windows.WindowManager;
1717

1818
using WebDAVDrive.Services;
19-
using WebDAVDrive.ShellExtension;
20-
using WebDAVDrive.Dialogs;
2119
using System.Runtime.InteropServices;
20+
using WebDAVDrive.ShellExtensions;
2221

2322

2423
namespace WebDAVDrive
@@ -72,6 +71,8 @@ public App()
7271
// Set the service provider.
7372
ServiceProvider.Services = Services;
7473
ServiceProvider.DispatcherQueue = DispatcherQueue.GetForCurrentThread();
74+
//assing IsDarkTheme property on application start
75+
ServiceProvider.IsDarkTheme = Current.RequestedTheme == ApplicationTheme.Dark;
7576

7677
#if DEBUG
7778
// Display Console.
@@ -193,7 +194,7 @@ private static IServiceProvider ConfigureServices(IConfiguration configuration)
193194
// Register your services here
194195
serviceCollection.AddSingleton(options => LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType));
195196
serviceCollection.AddSingleton(options => configuration.ReadSettings());
196-
serviceCollection.AddSingleton(options => ShellExtensions.StartComServer());
197+
serviceCollection.AddSingleton(options => LocalServerExtension.StartComServer());
197198
serviceCollection.AddSingleton<SecureStorageService>();
198199
serviceCollection.AddSingleton<IToastNotificationService, ToastNotificationService>();
199200
serviceCollection.AddSingleton<IDrivesService, DrivesService>();

0 commit comments

Comments
 (0)