Skip to content

Commit fa68cdc

Browse files
committed
update libjxl
1 parent 0afac4b commit fa68cdc

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

build/vcpkg/ports/libjxl/portfile.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ vcpkg_from_github(
22
OUT_SOURCE_PATH SOURCE_PATH
33
REPO libjxl/libjxl
44
REF "v${VERSION}"
5-
SHA512 54dc043dbed4e4bda1a591a07549f31fde17b67c5d754b1676616f3d8ffb82debafa3ed69041fd6523c907550543b11a3788d5cd3f1ca18e3ee2888760795ae3
5+
SHA512 1d19f30c0ae94e212326a15dc128612bce207e619c55c2a020401a27d01a933de71bb35e907521dc8fd853dd5578d74d74f7a5a282f0083fd22cf9cb07ccb96e
66
HEAD_REF main
77
PATCHES
88
fix-dependencies.patch

build/vcpkg/ports/libjxl/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "libjxl",
3-
"version-semver": "0.10.1",
3+
"version-semver": "0.10.2",
44
"description": "JPEG XL image format reference implementation",
55
"homepage": "https://github.com/libjxl/libjxl",
66
"license": "BSD-3-Clause",

src/ManagedCodecs/ImageSharp/ManagedCodecs.ImageSharp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<ItemGroup>
1010
<ProjectReference Include="..\..\MagicScaler\MagicScaler.csproj" />
11-
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.6" />
11+
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.7" />
1212
</ItemGroup>
1313

1414
</Project>

src/NativeCodecs/Libjxl/JxlCodec.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ namespace PhotoSauce.NativeCodecs.Libjxl;
1515

1616
internal static unsafe class JxlFactory
1717
{
18-
public const string DisplayName = $"{libjxl} 0.10.1";
18+
public const string DisplayName = $"{libjxl} 0.10.2";
1919
public const string libjxl = nameof(libjxl);
20-
public const uint libver = 10001;
20+
public const uint libver = 10002;
2121

2222
private static readonly Lazy<bool> dependencyValid = new(() => {
2323
#if NETFRAMEWORK

src/NativeCodecs/Libjxl/NativeCodecs.Libjxl.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>0.10.1</VersionPrefix>
4+
<VersionPrefix>0.10.2</VersionPrefix>
55
<TargetFrameworks>net6.0;net7.0;net472</TargetFrameworks>
66
<TargetFrameworks Condition="'$(Configuration)'=='Dist' Or '$(Configuration)'=='Coverage'">$(TargetFrameworks);net461;netstandard2.0;netstandard2.1</TargetFrameworks>
77
</PropertyGroup>

src/NativeCodecs/Libjxl/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ PhotoSauce.NativeCodecs.Libjxl
33

44
This MagicScaler plugin wraps the [libjxl](https://github.com/libjxl/libjxl) reference [JPEG XL](https://jpeg.org/jpegxl/) codec.
55

6-
*IMPORTANT: Version 0.7.0 of `libjxl` is a preview release and may not be fully stable. Use the encoder with caution.*
6+
*IMPORTANT*: `libjxl` is a preview release and may not be fully stable. In particular, it may crash your process on out of memory conditions. See: https://github.com/libjxl/libjxl/issues/1450.
77

88
Requirements
99
------------

0 commit comments

Comments
 (0)