Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ HEIC, HEIF, RAW, CR2, NEF, ARW 확장자는 인식하지만, 현재 버전에서
- **파일 복사** - `Ctrl+Shift+C` 또는 컨텍스트 메뉴로 현재 이미지 파일을 탐색기·메일 등에 붙여넣을 수 있게 복사
- **파일 경로 복사** - 컨텍스트 메뉴에서 현재 이미지의 전체 경로를 클립보드에 복사
- **다른 이름으로 저장** - `Ctrl+S` 또는 컨텍스트 메뉴로 원본 이미지 파일 저장
- **메신저 임시 이미지 보호** - 메신저·브라우저가 Windows 임시 폴더의 원본을 지우거나 잠가도 세션 보관본으로 복사·저장·열기 등 파일 작업 유지
- **이름 바꾸기** - 컨텍스트 메뉴에서 이미지 확장자를 유지한 채 파일 이름 변경
- **빠른 파일 이동** - 컨텍스트 메뉴 또는 `Ctrl+M`으로 현재 이미지를 다른 폴더로 이동
- **휴지통 지원** - 컨텍스트 메뉴 또는 `Delete`로 현재 이미지를 휴지통으로 이동
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ HEIC, HEIF, RAW, CR2, NEF, and ARW extensions are recognized, but the current ve
- **File copy** - copy the current image as a file object with `Ctrl+Shift+C` or the context menu so it can be pasted into File Explorer, mail, and other compatible apps
- **File path copy** - copy the current image's full path from the context menu
- **Save as** - save the original image file with `Ctrl+S` or the context menu
- **Temporary image retention** - keep file actions available through a session-owned copy when a messenger or browser removes or locks an image opened from the Windows temporary folder
- **Rename** - rename the current image while preserving its file extension
- **Quick file move** - move the current image to another folder with the context menu or `Ctrl+M`
- **Recycle Bin support** - move the current image to the Recycle Bin with the context menu or `Delete`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dev": "vite",
"build": "tsc && vite build",
"test:context-menu": "node --test tests/contextMenuGeometry.test.ts",
"test:context-menu-ui": "vitest run tests/ContextMenu.test.tsx tests/useKeyboardShortcuts.test.tsx tests/useOverlayVisibility.test.ts tests/SettingsModal.test.tsx tests/ErrorView.test.tsx tests/EmptyView.test.tsx tests/OverlayControls.test.tsx tests/useFolderSync.test.tsx",
"test:context-menu-ui": "vitest run tests/ContextMenu.test.tsx tests/useKeyboardShortcuts.test.tsx tests/useOverlayVisibility.test.ts tests/SettingsModal.test.tsx tests/ErrorView.test.tsx tests/EmptyView.test.tsx tests/OverlayControls.test.tsx tests/WindowResizeHandles.test.tsx tests/useFolderSync.test.tsx",
"test:image-cache": "node --test tests/imageCache.test.ts",
"test:image-formats": "node --test tests/imageFormats.test.ts",
"test:update-check": "node --test tests/updateCheck.test.ts",
Expand Down
1 change: 1 addition & 0 deletions src-tauri/capabilities/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"core:window:allow-set-focus",
"core:window:allow-center",
"core:window:allow-start-dragging",
"core:window:allow-start-resize-dragging",
"core:window:allow-is-maximized",
"core:window:allow-outer-position",
"core:window:allow-inner-size",
Expand Down
Loading