File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ public class WebPDecoderBuilder : IWebPDecoderBuilder {
17
17
private string _executeFilePath ;
18
18
19
19
// 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" ;
24
24
25
25
/// <summary>
26
26
/// Create <see cref="WebPDecoderBuilder"/>
Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ public class WebPEncoderBuilder : IWebPEncoderBuilder {
17
17
private string _executeFilePath ;
18
18
19
19
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" ;
24
24
/// <summary>
25
25
/// Create <see cref="WebPEncoderBuilder"/>
26
26
/// </summary>
Original file line number Diff line number Diff line change @@ -16,16 +16,16 @@ namespace WebPWrapper
16
16
public static class WebPExecuteDownloader
17
17
{
18
18
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" ;
20
20
21
21
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" ;
23
23
24
24
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" ;
26
26
27
27
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" ;
29
29
30
30
/// <summary>
31
31
/// Download CLI binary file.
You can’t perform that action at this time.
0 commit comments