Skip to content

Commit

Permalink
bump 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
a1mersnow committed Dec 5, 2024
1 parent fe99025 commit 34b004f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions dist/aliyundrive-rename.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name 云盘批量重命名
// @namespace vite-plugin-monkey
// @version 1.1.0
// @version 1.1.1
// @author a1mersnow
// @description 批量重命名云盘里的文件,支持阿里云盘、夸克云盘、移动云盘
// @license GPL
Expand Down Expand Up @@ -408,7 +408,7 @@
checked.value && _ctx.newName && !vue.unref(isSame) ? "i-carbon:checkbox-checked-filled" : "i-carbon:checkbox",
vue.unref(disabled) ? "opacity-50 cursor-not-allowed" : "cursor-pointer"
], "text-sm text-primary-600"]),
onClick: _cache[0] || (_cache[0] = ($event) => checked.value = !checked.value)
onClick: _cache[0] || (_cache[0] = ($event) => !vue.unref(disabled) && (checked.value = !checked.value))
}, null, 2),
vue.createElementVNode("span", {
title: _ctx.oldName,
Expand Down Expand Up @@ -2446,7 +2446,7 @@
}
const name = "aliyundrive-rename";
const type = "module";
const version = "1.1.0";
const version = "1.1.1";
const packageManager = "pnpm@9.14.4";
const description = "Batch rename files of aliyundrive.";
const author = "a1mersnow";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "aliyundrive-rename",
"type": "module",
"version": "1.1.0",
"version": "1.1.1",
"private": true,
"packageManager": "pnpm@9.14.4",
"description": "Batch rename files of aliyundrive.",
Expand Down

0 comments on commit 34b004f

Please sign in to comment.