Skip to content

Commit 6279fe1

Browse files
committed
Release v1.3.0: String Escape & UI tweaks
Add changelog entry for v1.3.0 and introduce String Escape/Unescape feature. Improve JSON formatter UX (double-click selects value, right-click copies selection, auto word wrap/no horizontal scroll). Clear input after generating QR/Barcode and optimize shortcut creation, working directory and window style settings. Update README and README_ZH to mention the new Escape feature and add EscapePage.xaml to the project file lists.
1 parent 9645e73 commit 6279fe1

3 files changed

Lines changed: 24 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.
44

55
---
66

7+
## [1.3.0] - 2026-04-10
8+
9+
### Added
10+
- String Escape/Unescape functionality
11+
- Escape special characters in strings
12+
- Unescape escaped strings
13+
- Support for common escape sequences (\n, \t, \r, etc.)
14+
- JSON formatter improvements
15+
- Double-click to select only the value (excluding key and colon)
16+
- Right-click context menu now copies selected text instead of full line
17+
- Auto word wrap for long JSON values
18+
- No horizontal scrolling needed
19+
20+
### Changed
21+
- QR Code and Barcode pages
22+
- Clear input field after generating new codes
23+
- Optimized shortcut creation, working directory and window style settings
24+
25+
---
26+
727
## [1.2.0] - 2025-03-20
828

929
### Added

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
- **Base64 ↔ Image** - Convert between Base64 strings and images
2727
- **JSON Formatter** - Format, expand, and collapse JSON data
2828
- **URL Encode/Decode** - Encode and decode URL strings
29+
- **String Escape/Unescape** - Escape and unescape special characters
2930
- **Handwritten Signature** - Draw signatures and convert to Base64 or save as images
3031

3132
## Installation
@@ -80,6 +81,7 @@ DevTools/
8081
│ ├── ImageToBase64Page.xaml
8182
│ ├── JsonFormatPage.xaml
8283
│ ├── UrlEncodePage.xaml
84+
│ ├── EscapePage.xaml
8385
│ └── SignaturePage.xaml
8486
├── Resources/ # Resources (images, strings, fonts)
8587
│ ├── Images/

README_ZH.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
- **Base64 ↔ 图片** - Base64 字符串与图片互转
2727
- **JSON 格式化** - 格式化、展开、折叠 JSON 数据
2828
- **URL 编码/解码** - 对 URL 字符串进行编码和解码
29+
- **字符串转义/反转义** - 转义和反转义特殊字符
2930
- **手写签名** - 绘制签名并转换为 Base64 或保存为图片
3031

3132
## 安装
@@ -80,6 +81,7 @@ DevTools/
8081
│ ├── ImageToBase64Page.xaml
8182
│ ├── JsonFormatPage.xaml
8283
│ ├── UrlEncodePage.xaml
84+
│ ├── EscapePage.xaml
8385
│ └── SignaturePage.xaml
8486
├── Resources/ # 资源(图片、字符串、字体)
8587
│ ├── Images/

0 commit comments

Comments
 (0)