mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-30 20:32:49 +01:00
merge
This commit is contained in:
parent
ef35309580
commit
e0407c83cf
9 changed files with 36 additions and 0 deletions
BIN
server/plugin/plg_image_thumbnail/dist/jpeg_linux_arm64.bin
vendored
Executable file
BIN
server/plugin/plg_image_thumbnail/dist/jpeg_linux_arm64.bin
vendored
Executable file
Binary file not shown.
1
server/plugin/plg_image_thumbnail/dist/jpeg_linux_arm64.bin.sha256
vendored
Normal file
1
server/plugin/plg_image_thumbnail/dist/jpeg_linux_arm64.bin.sha256
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
e4ec493a64ed971bad119bce2bb8f4790876a3bd41a30419dfca7fd66cc20830
|
||||
BIN
server/plugin/plg_image_thumbnail/dist/png_linux_arm64.bin
vendored
Executable file
BIN
server/plugin/plg_image_thumbnail/dist/png_linux_arm64.bin
vendored
Executable file
Binary file not shown.
1
server/plugin/plg_image_thumbnail/dist/png_linux_arm64.bin.sha256
vendored
Normal file
1
server/plugin/plg_image_thumbnail/dist/png_linux_arm64.bin.sha256
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
a67be4a057bf7053ea1f5a52b789cc92f2a176387d25ccfe4c2620484d4b0adf
|
||||
BIN
server/plugin/plg_image_thumbnail/dist/raw_linux_arm64.bin
vendored
Executable file
BIN
server/plugin/plg_image_thumbnail/dist/raw_linux_arm64.bin
vendored
Executable file
Binary file not shown.
1
server/plugin/plg_image_thumbnail/dist/raw_linux_arm64.bin.sha256
vendored
Normal file
1
server/plugin/plg_image_thumbnail/dist/raw_linux_arm64.bin.sha256
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
63e800f314d0392475dec307feaa26440eca116d27233c0a1171a0cc98e28fb4
|
||||
11
server/plugin/plg_image_thumbnail/resize_jpeg_linux_arm64.go
Normal file
11
server/plugin/plg_image_thumbnail/resize_jpeg_linux_arm64.go
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
package plg_image_thumbnail
|
||||
|
||||
import (
|
||||
_ "embed"
|
||||
)
|
||||
|
||||
//go:embed dist/jpeg_linux_arm64.bin
|
||||
var binaryThumbnailJpeg []byte
|
||||
|
||||
//go:embed dist/jpeg_linux_arm64.bin.sha256
|
||||
var checksumJpeg []byte
|
||||
11
server/plugin/plg_image_thumbnail/resize_png_linux_arm64.go
Normal file
11
server/plugin/plg_image_thumbnail/resize_png_linux_arm64.go
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
package plg_image_thumbnail
|
||||
|
||||
import (
|
||||
_ "embed"
|
||||
)
|
||||
|
||||
//go:embed dist/png_linux_arm64.bin
|
||||
var binaryThumbnailPng []byte
|
||||
|
||||
//go:embed dist/png_linux_arm64.bin.sha256
|
||||
var checksumPng []byte
|
||||
11
server/plugin/plg_image_thumbnail/resize_raw_linux_arm64.go
Normal file
11
server/plugin/plg_image_thumbnail/resize_raw_linux_arm64.go
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
package plg_image_thumbnail
|
||||
|
||||
import (
|
||||
_ "embed"
|
||||
)
|
||||
|
||||
//go:embed dist/raw_linux_arm64.bin
|
||||
var binaryThumbnailRaw []byte
|
||||
|
||||
//go:embed dist/raw_linux_arm64.bin.sha256
|
||||
var checksumRaw []byte
|
||||
Loading…
Reference in a new issue