From c464b33cae9f18f4a4dade7630fd5fcb629d3985 Mon Sep 17 00:00:00 2001 From: Logan Yang Date: Mon, 23 Feb 2026 21:11:04 -0800 Subject: [PATCH] 3.2.3 (#2214) * 3.2.3 * fix: rename "Copy command" to "Duplicate command" with copy-plus icon (#2150) Improves UX clarity by distinguishing the duplicate action from clipboard copy. Co-Authored-By: Claude Opus 4.6 --------- Co-authored-by: Claude Opus 4.6 --- manifest.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- .../v2/components/CommandSettings.tsx | 19 ++++++++++++------- versions.json | 3 ++- 5 files changed, 18 insertions(+), 12 deletions(-) diff --git a/manifest.json b/manifest.json index e43558e4..d2575a2c 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "copilot", "name": "Copilot", - "version": "3.2.2", + "version": "3.2.3", "minAppVersion": "0.15.0", "description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.", "author": "Logan Yang", diff --git a/package-lock.json b/package-lock.json index 6c563ba3..1678e2cf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-copilot", - "version": "3.2.2", + "version": "3.2.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-copilot", - "version": "3.2.2", + "version": "3.2.3", "license": "AGPL-3.0", "dependencies": { "@dnd-kit/core": "^6.3.1", diff --git a/package.json b/package.json index 7c164f39..f1fd2370 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-copilot", - "version": "3.2.2", + "version": "3.2.3", "description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.", "main": "main.js", "scripts": { diff --git a/src/settings/v2/components/CommandSettings.tsx b/src/settings/v2/components/CommandSettings.tsx index a41835fd..542b6db2 100644 --- a/src/settings/v2/components/CommandSettings.tsx +++ b/src/settings/v2/components/CommandSettings.tsx @@ -2,7 +2,7 @@ import React, { useMemo, useRef } from "react"; import { Button } from "@/components/ui/button"; import { useCustomCommands } from "@/commands/state"; import { MobileCard, MobileCardDropdownAction } from "@/components/ui/mobile-card"; -import { Copy, GripVertical, Lightbulb, PenLine, Plus, Trash2 } from "lucide-react"; +import { CopyPlus, GripVertical, Lightbulb, PenLine, Plus, Trash2 } from "lucide-react"; import { Checkbox } from "@/components/ui/checkbox"; import { @@ -71,8 +71,8 @@ const MobileCommandCard: React.FC<{ onClick: handleEdit, }, { - icon: , - label: "Copy", + icon: , + label: "Duplicate", onClick: onCopy, }, { @@ -254,8 +254,13 @@ const SortableTableRow: React.FC<{ > -