Skip to content

Commit

Permalink
Merge pull request #9 from edward-hsu-1994/upgrade/1.4.0
Browse files Browse the repository at this point in the history
Upgrade/1.4.0
  • Loading branch information
edward-hsu-1994 authored Dec 19, 2024
2 parents 2012da9 + e22d940 commit 7056e72
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -348,3 +348,4 @@ healthchecksdb
# Backup folder for Package Reference Convert tool in Visual Studio 2017
MigrationBackup/
.vscode
src/.idea
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.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";
public const string _windowsDir = "libwebp-1.4.0-windows-x64";
public const string _linuxDir = "libwebp-1.4.0-linux-x86-64";
public const string _osxDir = "libwebp-1.4.0-mac-x86-64";
public const string _osxARMDir = "libwebp-1.4.0-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.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";
public const string _windowsDir = "libwebp-1.4.0-windows-x64";
public const string _linuxDir = "libwebp-1.4.0-linux-x86-64";
public const string _osxDir = "libwebp-1.4.0-mac-x86-64";
public const string _osxARMDir = "libwebp-1.4.0-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.2-windows-x64.zip";
"https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.4.0-windows-x64.zip";

public const string WELL_KNOWN_LINUX_CLI_URL =
"https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.3.2-linux-x86-64.tar.gz";
"https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.4.0-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.2-mac-x86-64.tar.gz";
"https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.4.0-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.2-mac-arm64.tar.gz";
"https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.4.0-mac-arm64.tar.gz";

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

0 comments on commit 7056e72

Please sign in to comment.