浏览代码

added support webp format (#652)

* added support webp format

* update nuke plugin with support webp format
master
akimdi GitHub 4 年前
父节点
当前提交
6548a0fa7c
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. +1
    -1
      plugins/imgview
  2. +1
    -1
      plugins/nuke

+ 1
- 1
plugins/imgview 查看文件

@@ -18,7 +18,7 @@ abspath() {

listimages() {
find -L "$(dirname "$target")" -maxdepth 1 -type f -iregex \
'.*\(jpe?g\|bmp\|png\|gif\)$' -print0 | sort -z
'.*\(jpe?g\|bmp\|webp\|png\|gif\)$' -print0 | sort -z
}

view_dir() {


+ 1
- 1
plugins/nuke 查看文件

@@ -254,7 +254,7 @@ abspath() {

listimages() {
find -L "$(dirname "$target")" -maxdepth 1 -type f -iregex \
'.*\(jpe?g\|bmp\|png\|gif\)$' -print0 | sort -z
'.*\(jpe?g\|bmp\|webp\|png\|gif\)$' -print0 | sort -z
}

load_dir() {


正在加载...
取消
保存