Skip to content

Commit

Permalink
Upgrade to libvips v8.16.0-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
kleisauke committed Oct 21, 2024
1 parent 466c843 commit 1a51e99
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ set(CMAKE_CXX_EXTENSIONS OFF)

# Find libvips (required)
find_package(PkgConfig)
pkg_check_modules(VIPS vips>=8.15 REQUIRED)
pkg_check_modules(VIPS vips>=8.16 REQUIRED)

add_subdirectory(src)
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ VERSION_TIFF=4.7.0 # https://gitlab.com/libtiff/libtiff
VERSION_RESVG=0.44.0 # https://github.com/RazrFalcon/resvg
VERSION_AOM=3.10.0 # https://aomedia.googlesource.com/aom
VERSION_HEIF=1.18.2 # https://github.com/strukturag/libheif
VERSION_VIPS=8.16.0-rc1 # https://github.com/libvips/libvips
VERSION_VIPS=8.16.0-rc2 # https://github.com/libvips/libvips

VERSION_EMSCRIPTEN="$(emcc -dumpversion)"

Expand Down
1 change: 1 addition & 0 deletions test/unit/node-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export async function mochaGlobalSetup () {
// Handy for debugging
// module.ENV.VIPS_INFO = 1;
// module.ENV.VIPS_LEAK = 1;
// module.ENV.VIPS_CONCURRENCY = 1;

// Hide warning messages
module.ENV.VIPS_WARNING = 0;
Expand Down
4 changes: 2 additions & 2 deletions test/unit/test_foreign.js
Original file line number Diff line number Diff line change
Expand Up @@ -1047,8 +1047,8 @@ describe('foreign', () => {
}

// Chroma subsampling should produce smaller file size for same Q
const b1 = mono.heifsaveBuffer({ compression: 'av1', subsample_mode: 'on' });
const b2 = mono.heifsaveBuffer({ compression: 'av1', subsample_mode: 'off' });
const b1 = colour.heifsaveBuffer({ compression: 'av1', subsample_mode: 'on' });
const b2 = colour.heifsaveBuffer({ compression: 'av1', subsample_mode: 'off' });
expect(b2.byteLength).to.be.above(b1.byteLength);
});

Expand Down

0 comments on commit 1a51e99

Please sign in to comment.