Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ body:
attributes:
label: PDFtoZPL version
description: Which version of PDFtoZPL is affected?
value: 6.2.1
value: 6.2.2
validations:
required: true
- type: dropdown
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/githubpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ jobs:
- name: Publish
run: dotnet publish WebConverter/WebConverter.csproj -c Release -p:PublishProfile=WebConverter/Properties/PublishProfiles/PublishSite.pubxml -p:VersionSuffix=ci --no-restore
- name: Create .nojekyll file
run: touch WebConverter/bin/Release/net10.0/publish/wwwroot/.nojekyll
run: touch WebConverter/bin/Release/net10.0-browser/publish/wwwroot/.nojekyll
- name: Update service-worker-assets.js hashes
working-directory: WebConverter/bin/Release/net10.0/publish/wwwroot
working-directory: WebConverter/bin/Release/net10.0-browser/publish/wwwroot
if: false
run: |
jsFile=$(<service-worker-assets.js)
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Upload pages artifact
uses: actions/upload-pages-artifact@main
with:
path: WebConverter/bin/Release/net10.0/publish/wwwroot
path: WebConverter/bin/Release/net10.0-browser/publish/wwwroot
deploy:
name: Deploy
needs: publish
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/githubpages_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ jobs:
- name: Publish
run: dotnet publish WebConverter/WebConverter.csproj -c Release -p:PublishProfile=WebConverter/Properties/PublishProfiles/PublishSite.pubxml -p:VersionSuffix=ci --no-restore
- name: Create .nojekyll file
run: touch WebConverter/bin/Release/net10.0/publish/wwwroot/.nojekyll
run: touch WebConverter/bin/Release/net10.0-browser/publish/wwwroot/.nojekyll
- name: Update service-worker-assets.js hashes
working-directory: WebConverter/bin/Release/net10.0/publish/wwwroot
working-directory: WebConverter/bin/Release/net10.0-browser/publish/wwwroot
if: false
run: |
jsFile=$(<service-worker-assets.js)
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Upload pages artifact
uses: actions/upload-pages-artifact@main
with:
path: WebConverter/bin/Release/net10.0/publish/wwwroot
path: WebConverter/bin/Release/net10.0-browser/publish/wwwroot
deploy:
name: Deploy
needs: publish
Expand Down
9 changes: 5 additions & 4 deletions PDFtoZPL/PDFtoZPL.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Assembly -->
<PropertyGroup>
<TargetFrameworks>net471;net481;netstandard2.1;net8.0;net9.0;net9.0-android;net9.0-ios;net9.0-maccatalyst;net10.0;net10.0-android;net10.0-ios;net10.0-maccatalyst</TargetFrameworks>
<TargetFrameworks>net471;net481;netstandard2.1;net8.0;net9.0;net10.0;net10.0-android;net10.0-ios;net10.0-maccatalyst</TargetFrameworks>
<AssemblyName>PDFtoZPL</AssemblyName>
<RootNamespace>PDFtoZPL</RootNamespace>
<EmbedAllSources>true</EmbedAllSources>
Expand All @@ -12,7 +12,7 @@

<!-- NuGet -->
<PropertyGroup>
<VersionPrefix>6.2.1</VersionPrefix>
<VersionPrefix>6.2.2</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Authors>David Sungaila</Authors>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
Expand All @@ -21,7 +21,8 @@
<PackageProjectUrl>https://github.com/sungaila/PDFtoZPL</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/sungaila/PDFtoZPL/master/Icon_128.png</PackageIconUrl>
<Description>A .NET library to convert PDF files (and bitmaps) into Zebra Programming Language code.</Description>
<PackageReleaseNotes>- Add optional parameter SetPrintWidth.</PackageReleaseNotes>
<PackageReleaseNotes>- Fixed a crash in linux-x64 builds.
- Fixed a crash when .NET Framework builds attempt to open a PDF file with a password containing non-ASCII characters.</PackageReleaseNotes>
<PackageTags>PDF ZPL Zebra Bitmap Convert Conversion C# PDFium MAUI wasm WebAssembly</PackageTags>
<RepositoryUrl>https://github.com/sungaila/PDFtoZPL.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down Expand Up @@ -78,7 +79,7 @@

<!-- SourceLink build steps and NuGet packages -->
<ItemGroup>
<PackageReference Include="PDFtoImage" Version="5.2.0" PrivateAssets="analyzers" />
<PackageReference Include="PDFtoImage" Version="5.2.1" PrivateAssets="analyzers" />
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="4.14.0" PrivateAssets="all" />
<PackageReference Include="SharpZipLib" Version="1.4.2" PrivateAssets="analyzers" />
</ItemGroup>
Expand Down
108 changes: 0 additions & 108 deletions PDFtoZPL/PublicAPI/net8.0-android/PublicAPI.Shipped.txt

This file was deleted.

3 changes: 0 additions & 3 deletions PDFtoZPL/PublicAPI/net8.0-android/PublicAPI.Unshipped.txt

This file was deleted.

Loading
Loading