Skip to content

Commit

Permalink
Merge branch 'ms-store-package'
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Dec 23, 2023
2 parents db2f427 + 013e8d0 commit a143751
Show file tree
Hide file tree
Showing 12 changed files with 62 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Build MSIX from release.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ move "WingetUI Widgets.msix" ..\..\..\..\

cd ..\..\..\..\

"Y:\- Signing\signtool-x64\signtool.exe" sign /v /debug /fd SHA256 /tr "http://timestamp.acs.microsoft.com" /td SHA256 /dlib "Y:\- Signing\azure.codesigning.client\x64\Azure.CodeSigning.Dlib.dll" /dmdf "Y:\- Signing\metadata.json" "WingetUI Widgets.msix"
rem "Y:\- Signing\signtool-x64\signtool.exe" sign /v /debug /fd SHA256 /tr "http://timestamp.acs.microsoft.com" /td SHA256 /dlib "Y:\- Signing\azure.codesigning.client\x64\Azure.CodeSigning.Dlib.dll" /dmdf "Y:\- Signing\metadata.json" "WingetUI Widgets.msix"

del "WingetUI Widgets Installer.msix"
move "WingetUI Widgets.msix" "WingetUI Widgets Installer.msix"
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Package/Images/powershell_color.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
37 changes: 34 additions & 3 deletions src/Package/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

<!-- Name="9b0c4abb-ca72-42ec-936a-02d4830a14a9" -->
<Identity
Name="34D3940F-84D6-47C5-B446-32D6865D8852"
Publisher="CN=Marti Climent, O=Marti Climent, L=Barcelona, C=ES"
Version="0.2.0.0" />
Name="9932MartCliment.WingetUIWidgets"
Publisher="CN=7054F010-7BE3-4163-B64E-D51DF58CF867"
Version="0.3.0.0" />

<Properties>
<DisplayName>WingetUI Widgets (Preview)</DisplayName>
Expand Down Expand Up @@ -278,6 +278,37 @@
</Definition>



<Definition Id="updates_powershell"
DisplayName="PowerShell updates"
Description="PowerShell modules that can be updated"
AllowMultiple="true">
<Capabilities>
<Capability>
<Size Name="medium" />
</Capability>
<Capability>
<Size Name="large" />
</Capability>
</Capabilities>
<ThemeResources>
<Icons>
<Icon Path="Images\powershell_color.png" />
</Icons>
<DarkMode>
<Screenshots>
<Screenshot Path="Images\WidgetCovers\powershell_dark.png" />
</Screenshots>
</DarkMode>
<LightMode>
<Screenshots>
<Screenshot Path="Images\WidgetCovers\powershell_light.png" />
</Screenshots>
</LightMode>
</ThemeResources>
</Definition>


</Definitions>
</WidgetProvider>
</uap3:Properties>
Expand Down
Binary file modified src/Package/WingetUIWidgetProviderPackage.assets.cache
Binary file not shown.
5 changes: 4 additions & 1 deletion src/Package/WingetUIWidgetProviderPackage.wapproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<PropertyGroup>
<ProjectGuid>0cb7bf44-2619-4597-82c4-75f513345eba</ProjectGuid>
<TargetPlatformVersion>10.0.22621.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<TargetPlatformMinVersion>10.0.22000.0</TargetPlatformMinVersion>
<DefaultLanguage>en-US</DefaultLanguage>
<AppxPackageSigningEnabled>false</AppxPackageSigningEnabled>
<NoWarn>$(NoWarn);NU1702</NoWarn>
Expand Down Expand Up @@ -135,6 +135,7 @@
<Content Include="Images\LargeTile.scale-400.png" />
<Content Include="Images\node_color.png" />
<Content Include="Images\pip_color.png" />
<Content Include="Images\powershell_color.png" />
<Content Include="Images\scoop_color.png" />
<Content Include="Images\SmallTile.scale-100.png" />
<Content Include="Images\SmallTile.scale-125.png" />
Expand All @@ -156,6 +157,8 @@
<Content Include="Images\WidgetCovers\npm_light.png" />
<Content Include="Images\WidgetCovers\pip_dark.png" />
<Content Include="Images\WidgetCovers\pip_light.png" />
<Content Include="Images\WidgetCovers\powershell_dark.png" />
<Content Include="Images\WidgetCovers\powershell_light.png" />
<Content Include="Images\WidgetCovers\scoop_dark.png" />
<Content Include="Images\WidgetCovers\scoop_light.png" />
<Content Include="Images\WidgetCovers\winget_dark.png" />
Expand Down
1 change: 1 addition & 0 deletions src/Templates.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public class Widgets
public const string Pip = "updates_pip";
public const string Npm = "updates_npm";
public const string Dotnet = "updates_dotnet";
public const string Powershell = "updates_powershell";
}

public class Templates
Expand Down
1 change: 1 addition & 0 deletions src/WingetUIConnector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ internal class WingetUIConnector
{Widgets.Pip, "Pip"},
{Widgets.Npm, "Npm"},
{Widgets.Dotnet, ".NET Tool"},
{Widgets.Powershell, "PowerShell"},
};

public WingetUIConnector()
Expand Down
16 changes: 16 additions & 0 deletions src/WingetUIWidgetProvider - Backup.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows10.0.22000.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>AnyCPU;x64</Platforms>
<SignAssembly>False</SignAssembly>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.4.231115000" />
</ItemGroup>

</Project>
4 changes: 3 additions & 1 deletion src/WingetUIWidgetProvider.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
<TargetFramework>net6.0-windows10.0.22000.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>AnyCPU;x64</Platforms>
<SignAssembly>False</SignAssembly>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.4.231008000" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.4.231115000" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions src/WingetUIWidgetProvider.sln
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ Global
{D8495D3C-3169-4A08-B0C4-F5EEE5117C0E}.Release|ARM.Build.0 = Release|Any CPU
{D8495D3C-3169-4A08-B0C4-F5EEE5117C0E}.Release|ARM64.ActiveCfg = Release|Any CPU
{D8495D3C-3169-4A08-B0C4-F5EEE5117C0E}.Release|ARM64.Build.0 = Release|Any CPU
{D8495D3C-3169-4A08-B0C4-F5EEE5117C0E}.Release|x64.ActiveCfg = Release|Any CPU
{D8495D3C-3169-4A08-B0C4-F5EEE5117C0E}.Release|x64.Build.0 = Release|Any CPU
{D8495D3C-3169-4A08-B0C4-F5EEE5117C0E}.Release|x64.ActiveCfg = Release|x64
{D8495D3C-3169-4A08-B0C4-F5EEE5117C0E}.Release|x64.Build.0 = Release|x64
{D8495D3C-3169-4A08-B0C4-F5EEE5117C0E}.Release|x86.ActiveCfg = Release|Any CPU
{D8495D3C-3169-4A08-B0C4-F5EEE5117C0E}.Release|x86.Build.0 = Release|Any CPU
{0CB7BF44-2619-4597-82C4-75F513345EBA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
Expand Down

0 comments on commit a143751

Please sign in to comment.