mirror of
https://github.com/9001/copyparty.git
synced 2026-02-26 05:23:10 -07:00
jxl in cbz
This commit is contained in:
parent
48c1017843
commit
0e8913c2d0
|
|
@ -64,7 +64,7 @@ def have_ff(scmd: str) -> bool:
|
||||||
HAVE_FFMPEG = not os.environ.get("PRTY_NO_FFMPEG") and have_ff("ffmpeg")
|
HAVE_FFMPEG = not os.environ.get("PRTY_NO_FFMPEG") and have_ff("ffmpeg")
|
||||||
HAVE_FFPROBE = not os.environ.get("PRTY_NO_FFPROBE") and have_ff("ffprobe")
|
HAVE_FFPROBE = not os.environ.get("PRTY_NO_FFPROBE") and have_ff("ffprobe")
|
||||||
|
|
||||||
CBZ_PICS = set("png jpg jpeg gif bmp tga tif tiff webp avif".split())
|
CBZ_PICS = set("png jpg jpeg gif bmp tga tif tiff webp avif jxl".split())
|
||||||
CBZ_01 = re.compile(r"(^|[^0-9v])0+[01]\b")
|
CBZ_01 = re.compile(r"(^|[^0-9v])0+[01]\b")
|
||||||
|
|
||||||
FMT_AU = set("mp3 ogg flac wav".split())
|
FMT_AU = set("mp3 ogg flac wav".split())
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,6 @@ window.baguetteBox = (function () {
|
||||||
re_i = /^[^?]+\.(a?png|avif|bmp|gif|heif|jfif|jpe?g|jxl|svg|tiff?|webp)(\?|$)/i,
|
re_i = /^[^?]+\.(a?png|avif|bmp|gif|heif|jfif|jpe?g|jxl|svg|tiff?|webp)(\?|$)/i,
|
||||||
re_v = /^[^?]+\.(webm|mkv|mp4|m4v|mov)(\?|$)/i,
|
re_v = /^[^?]+\.(webm|mkv|mp4|m4v|mov)(\?|$)/i,
|
||||||
re_cbz = /^[^?]+\.(cbz)(\?|$)/i,
|
re_cbz = /^[^?]+\.(cbz)(\?|$)/i,
|
||||||
cbz_pics = ["png", "jpg", "jpeg", "gif", "bmp", "tga", "tif", "tiff", "webp", "avif"],
|
|
||||||
anims = ['slideIn', 'fadeIn', 'none'],
|
anims = ['slideIn', 'fadeIn', 'none'],
|
||||||
data = {}, // all galleries
|
data = {}, // all galleries
|
||||||
imagesElements = [],
|
imagesElements = [],
|
||||||
|
|
@ -251,8 +250,7 @@ window.baguetteBox = (function () {
|
||||||
var imagesList = fileList.map(function (file) {
|
var imagesList = fileList.map(function (file) {
|
||||||
return file["fn"];
|
return file["fn"];
|
||||||
}).filter(function (file) {
|
}).filter(function (file) {
|
||||||
return file.indexOf(".") !== -1
|
return re_i.test(file);
|
||||||
&& cbz_pics.indexOf(file.split(".").pop()) !== -1;
|
|
||||||
}).sort();
|
}).sort();
|
||||||
|
|
||||||
if (imagesList.length === 0) {
|
if (imagesList.length === 0) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue