Skip to content

Commit

Permalink
Update workflow and correct publisher
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubMelka committed Jul 2, 2024
1 parent d2b21df commit 0479905
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/WindowsInstall.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# Add the highest version SDK path to the PATH environment variable
if ($sdkPath) {
Write-Host "Adding $sdkPath to PATH"
[System.Environment]::SetEnvironmentVariable('PATH', $env:PATH + ";$sdkPath", [System.EnvironmentVariableTarget]::Process)
echo "PATH=$env:PATH;$sdkPath" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
} else {
Write-Error "MakeAppx.exe not found in any Windows SDK directories"
}
Expand Down
20 changes: 10 additions & 10 deletions AppxManifest.xml.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="io.github.JakubMelka.PDF4QT" Publisher="CN=JakubMelka" Version="${PDF4QT_VERSION}" />
<Identity Name="io.github.JakubMelka.PDF4QT" Publisher="CN=Jakub Melka, O=Jakub Melka, L=Tursko, C=CZ" Version="${PDF4QT_VERSION}" />
<Properties>
<DisplayName>PDF4QT</DisplayName>
<PublisherDisplayName>Jakub Melka</PublisherDisplayName>
Expand Down Expand Up @@ -39,18 +39,18 @@
</Application>
<Application Id="Pdf4QtPageMaster" Executable="Pdf4QtPageMaster.exe" EntryPoint="windows.fullTrustApplication">
<uap:VisualElements DisplayName="PDF4QT PageMaster"
Description="Take control of your documents. Manage whole documents or individual pages with ease. Merge documents into a single file, or split them into multiple ones. You can also move, clone, or add pages with a few clicks, all within an intuitive user interface."
BackgroundColor="transparent"
Square150x150Logo="assets\150x150\io.github.JakubMelka.Pdf4qt.Pdf4QtPageMaster.png"
Square44x44Logo="assets\44x44\io.github.JakubMelka.Pdf4qt.Pdf4QtPageMaster.png">
Description="Take control of your documents. Manage whole documents or individual pages with ease. Merge documents into a single file, or split them into multiple ones. You can also move, clone, or add pages with a few clicks, all within an intuitive user interface."
BackgroundColor="transparent"
Square150x150Logo="assets\150x150\io.github.JakubMelka.Pdf4qt.Pdf4QtPageMaster.png"
Square44x44Logo="assets\44x44\io.github.JakubMelka.Pdf4qt.Pdf4QtPageMaster.png">
</uap:VisualElements>
</Application>
<Application Id="Pdf4QtDiff" Executable="Pdf4QtDiff.exe" EntryPoint="windows.fullTrustApplication">
<uap:VisualElements DisplayName="PDF4QT PageMaster"
Description="Spot differences effortlessly. This tool allows users to open two documents and receive a detailed list of differences. View these differences in a page-to-page window where they are clearly marked."
BackgroundColor="transparent"
Square150x150Logo="assets\150x150\io.github.JakubMelka.Pdf4qt.Pdf4QtDiff.png"
Square44x44Logo="assets\44x44\io.github.JakubMelka.Pdf4qt.Pdf4QtDiff.png">
<uap:VisualElements DisplayName="PDF4QT Diff"
Description="Spot differences effortlessly. This tool allows users to open two documents and receive a detailed list of differences. View these differences in a page-to-page window where they are clearly marked."
BackgroundColor="transparent"
Square150x150Logo="assets\150x150\io.github.JakubMelka.Pdf4qt.Pdf4QtDiff.png"
Square44x44Logo="assets\44x44\io.github.JakubMelka.Pdf4qt.Pdf4QtDiff.png">
</uap:VisualElements>
</Application>
</Applications>
Expand Down

0 comments on commit 0479905

Please sign in to comment.