mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-02 02:44:41 +00:00
Fix .apk extension handling
This commit is contained in:
@@ -64,7 +64,7 @@ public partial class ApkInfoPanel : UserControl, IAppInfoPanel
|
||||
if (File.Exists(path))
|
||||
{
|
||||
var size = new FileInfo(path).Length;
|
||||
IApkInfo info = Path.GetExtension(path).ToLower() switch
|
||||
IApkInfo info = Path.GetExtension(Plugin.ConfirmPath(path)).ToLower() switch
|
||||
{
|
||||
".apk" => ApkParser.Parse(path),
|
||||
".aab" => AabParser.Parse(path),
|
||||
|
@@ -116,12 +116,6 @@
|
||||
<!--<PackageReference Include="System.Buffers" Version="4.6.1" />-->
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="Controls\GlassLayer\100-50-5-monochrome.png" />
|
||||
<None Remove="Controls\GlassLayer\GaussianBlur.ps" />
|
||||
<None Remove="Resources\app.ico" />
|
||||
<None Remove="Fonts\*.ttf" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Resource Include="Controls\GlassLayer\100-50-5-monochrome.png" />
|
||||
<Resource Include="Controls\GlassLayer\GaussianBlur.ps" />
|
||||
|
Reference in New Issue
Block a user