Skip to content

Commit

Permalink
Merge pull request #1174 from thewtex/apply-go
Browse files Browse the repository at this point in the history
apply go
  • Loading branch information
thewtex authored Jul 12, 2024
2 parents 88ef85b + e25592f commit 5f19b67
Show file tree
Hide file tree
Showing 32 changed files with 943 additions and 220 deletions.
4 changes: 2 additions & 2 deletions CMake/BuildZstd.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ option(ZSTD_BUILD_LZ4 "BUILD_LZ4" OFF)
option(ZSTD_BUILD_LZMA "BUILD_LZMA" OFF)
option(ZSTD_BUILD_ZLIB "BUILD_ZLIB" OFF)
set(zstd_GIT_REPOSITORY "https://github.com/facebook/zstd.git")
# v1.5.5
set(zstd_GIT_TAG 17ecb1e2df45a45be908b34aba34955199bf11b4)
# v1.5.6
set(zstd_GIT_TAG 794ea1b0afca0f020f4e57b6732332231fb23c70)
FetchContent_Declare(
zstd_lib
GIT_REPOSITORY ${zstd_GIT_REPOSITORY}
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ FetchContent_Declare(
GIT_SHALLOW TRUE
)

set(glaze_GIT_REPOSITORY "https://github.com/thewtex/glaze")
set(glaze_GIT_REPOSITORY "https://github.com/stephenberry/glaze")
# glaze v2.9.5
set(glaze_GIT_TAG 19d492fa9fef206fcf61fc03f0981d17f8af8648)
set(glaze_GIT_TAG 7c298ef6c403c505cf6291b686e32d943f1fb102)
FetchContent_Declare(
glaze
GIT_REPOSITORY ${glaze_GIT_REPOSITORY}
Expand Down
2 changes: 0 additions & 2 deletions include/itkImageToWasmImageFilter.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,6 @@ ImageToWasmImageFilter<TImage>
{
itkExceptionMacro("Failed to serialize ImageJSON");
}
std::cout << "serialized: " << serialized << std::endl;

wasmImage->SetJSON(serialized);
}

Expand Down
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions packages/compress-stringify/BuildZstd.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ option(ZSTD_BUILD_LZ4 "BUILD_LZ4" OFF)
option(ZSTD_BUILD_LZMA "BUILD_LZMA" OFF)
option(ZSTD_BUILD_ZLIB "BUILD_ZLIB" OFF)
set(zstd_GIT_REPOSITORY "https://github.com/facebook/zstd.git")
# v1.5.5
set(zstd_GIT_TAG 17ecb1e2df45a45be908b34aba34955199bf11b4)
# v1.5.6
set(zstd_GIT_TAG 794ea1b0afca0f020f4e57b6732332231fb23c70)
FetchContent_Declare(
zstd_lib
GIT_REPOSITORY ${zstd_GIT_REPOSITORY}
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const defaultImageTag = '20240624-b89bcb6c'
const defaultImageTag = '20240712-daa6deea'
export default defaultImageTag
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class PolyData {
numberOfCellPixels: number
cellData: null | TypedArray

constructor(public readonly polyDataType = new PolyDataType()) {
constructor (public readonly polyDataType = new PolyDataType()) {
this.polyDataType = polyDataType

this.name = 'PolyData'
Expand Down
Loading

0 comments on commit 5f19b67

Please sign in to comment.