Skip to content

Commit

Permalink
Merge pull request #8 from yavorski/master
Browse files Browse the repository at this point in the history
Update webp library version to v1.3.2
  • Loading branch information
edward-hsu-1994 authored Jan 25, 2024
2 parents 2512e44 + 4fbee95 commit 2012da9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions src/WebPWrapper/Decoder/WebPDecoderBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ public class WebPDecoderBuilder : IWebPDecoderBuilder {
private string _executeFilePath;

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

/// <summary>
/// Create <see cref="WebPDecoderBuilder"/>
Expand Down
8 changes: 4 additions & 4 deletions src/WebPWrapper/Encoder/WebPEncoderBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ public class WebPEncoderBuilder : IWebPEncoderBuilder {
private string _executeFilePath;


public const string _windowsDir = "libwebp-1.3.1-windows-x64";
public const string _linuxDir = "libwebp-1.3.1-linux-x86-64";
public const string _osxDir = "libwebp-1.3.1-mac-x86-64";
public const string _osxARMDir = "libwebp-1.3.1-mac-arm64";
public const string _windowsDir = "libwebp-1.3.2-windows-x64";
public const string _linuxDir = "libwebp-1.3.2-linux-x86-64";
public const string _osxDir = "libwebp-1.3.2-mac-x86-64";
public const string _osxARMDir = "libwebp-1.3.2-mac-arm64";
/// <summary>
/// Create <see cref="WebPEncoderBuilder"/>
/// </summary>
Expand Down
8 changes: 4 additions & 4 deletions src/WebPWrapper/WebPExecuteDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ namespace WebPWrapper
public static class WebPExecuteDownloader
{
public const string WELL_KNOWN_WINDOWS_CLI_URL =
"https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.3.1-windows-x64.zip";
"https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.3.2-windows-x64.zip";

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

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

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

/// <summary>
/// Download CLI binary file.
Expand Down

0 comments on commit 2012da9

Please sign in to comment.