Skip to content

Commit 4fbee95

Browse files
committed
Update webp library version to v1.3.2
1 parent 2512e44 commit 4fbee95

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

src/WebPWrapper/Decoder/WebPDecoderBuilder.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ public class WebPDecoderBuilder : IWebPDecoderBuilder {
1717
private string _executeFilePath;
1818

1919
// Default CLI path. (If Cli downloaded by WebPExecuteDownloader.
20-
public const string _windowsDir = "libwebp-1.3.1-windows-x64";
21-
public const string _linuxDir = "libwebp-1.3.1-linux-x86-64";
22-
public const string _osxDir = "libwebp-1.3.1-mac-x86-64";
23-
public const string _osxARMDir = "libwebp-1.3.1-mac-arm64";
20+
public const string _windowsDir = "libwebp-1.3.2-windows-x64";
21+
public const string _linuxDir = "libwebp-1.3.2-linux-x86-64";
22+
public const string _osxDir = "libwebp-1.3.2-mac-x86-64";
23+
public const string _osxARMDir = "libwebp-1.3.2-mac-arm64";
2424

2525
/// <summary>
2626
/// Create <see cref="WebPDecoderBuilder"/>

src/WebPWrapper/Encoder/WebPEncoderBuilder.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ public class WebPEncoderBuilder : IWebPEncoderBuilder {
1717
private string _executeFilePath;
1818

1919

20-
public const string _windowsDir = "libwebp-1.3.1-windows-x64";
21-
public const string _linuxDir = "libwebp-1.3.1-linux-x86-64";
22-
public const string _osxDir = "libwebp-1.3.1-mac-x86-64";
23-
public const string _osxARMDir = "libwebp-1.3.1-mac-arm64";
20+
public const string _windowsDir = "libwebp-1.3.2-windows-x64";
21+
public const string _linuxDir = "libwebp-1.3.2-linux-x86-64";
22+
public const string _osxDir = "libwebp-1.3.2-mac-x86-64";
23+
public const string _osxARMDir = "libwebp-1.3.2-mac-arm64";
2424
/// <summary>
2525
/// Create <see cref="WebPEncoderBuilder"/>
2626
/// </summary>

src/WebPWrapper/WebPExecuteDownloader.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ namespace WebPWrapper
1616
public static class WebPExecuteDownloader
1717
{
1818
public const string WELL_KNOWN_WINDOWS_CLI_URL =
19-
"https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.3.1-windows-x64.zip";
19+
"https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.3.2-windows-x64.zip";
2020

2121
public const string WELL_KNOWN_LINUX_CLI_URL =
22-
"https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.3.1-linux-x86-64.tar.gz";
22+
"https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.3.2-linux-x86-64.tar.gz";
2323

2424
public const string WELL_KNOWN_OSX_CLI_URL =
25-
"https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.3.1-mac-x86-64.tar.gz";
25+
"https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.3.2-mac-x86-64.tar.gz";
2626

2727
public const string WELL_KNOWN_OSX_ARM_CLI_URL =
28-
"https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.3.1-mac-arm64.tar.gz";
28+
"https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.3.2-mac-arm64.tar.gz";
2929

3030
/// <summary>
3131
/// Download CLI binary file.

0 commit comments

Comments
 (0)