1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

更新 CHANGELOG.md

This commit is contained in:
2025-12-05 10:21:07 +08:00
parent 87da87d000
commit d83481c6a4
3 changed files with 21 additions and 6 deletions

View File

@@ -11,7 +11,7 @@
// Code Spell Checker 插件
"cSpell.words": [
"Gitee",
"coder-xiaomo"
"coder-xiaomo",
"Gitee"
],
}

View File

@@ -25,6 +25,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
-->
## [Unreleased]
### Added
- Add new configuration `variable-conversion.formatOrder` to customize the display order of variable naming conventions. (新增 `variable-conversion.formatOrder` 配置项,用于自定义变量命名方式的显示顺序)
### Improved
- Improve cyclic conversion to follow user-configured formatOrder. (改进了循环转换功能使其遵循用户配置的formatOrder顺序)
## 2.1.0
### Changed

View File

@@ -7,6 +7,10 @@ A powerful variable and path conversion extension. Supports one-key conversion &
> **【近期更新】**
>
> **v2.2.0 (2025-12-05)**
>
> - 支持配置目标转换格式顺序
>
> **v2.1.0 (2025-07-14)**
>
> - 支持仅开启部分目标转换格式 (优化 VSCode 配置项)
@@ -90,10 +94,11 @@ Or right-click on the selected text -> Convert string to...
## 配置项 Configurations
| 配置项 Configuration Key | 描述 Description | 配置示例 | 默认值 |
| --------------------------------------- | ------------------------------------------------------------ | ------------------------------------- | -------- |
| `variable-conversion.enabledFormats` | 配置启用的变量命名方式<br />Configuration of Enabled Variable Naming Conventions. | `{ "xxxCase.enabled": boolean, ... }` | 见配置项 |
| `variable-conversion.disablePathFormat` | 定义哪些路径风格是禁用的<br />Define which path formats are disabled. | `["windows_style", "unix_style"]` | 见配置项 |
| 配置项 Configuration Key | 描述 Description | 配置示例 | 默认值 |
| --------------------------------------- | ------------------------------------------------------------ | ----------------------------------------------- | -------- |
| `variable-conversion.enabledFormats` | 配置启用的变量命名方式<br />Configuration of Enabled Variable Naming Conventions. | `{ "xxxCase.enabled": boolean, ... }` | 见配置项 |
| `variable-conversion.formatOrder` | 配置变量命名方式的显示顺序<br />Configure the display order of variable naming conventions. | `[ "camel_case", "pascal_case", "snake_case" ]` | 见配置项 |
| `variable-conversion.disablePathFormat` | 定义哪些路径风格是禁用的<br />Define which path formats are disabled. | `["windows_style", "unix_style"]` | 见配置项 |
## 支持的类型 Support Case