Skip to content

Commit fe4d897

Browse files
committed
fix: 修正示例配置文件名
- 将精简配置命名为 AppleChu.example.toml - 将完整配置命名为 AppleChu.full.toml
1 parent e68f2fc commit fe4d897

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Set-StrictMode -Version Latest
99

1010
$root = $PSScriptRoot
1111
$target = Join-Path $root 'target'
12-
$exampleName = 'example.toml'
13-
$fullName = 'full.toml'
12+
$exampleName = 'AppleChu.example.toml'
13+
$fullName = 'AppleChu.full.toml'
1414
$artifacts = @(
1515
@{
1616
Name = 'winhttp.dll'

packages/applechu-schema/src/example.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ use std::path::Path;
33

44
use crate::{canonical_key, LocalizedText, Schema};
55

6-
pub const EXAMPLE_CONFIG_FILE: &str = "example.toml";
7-
pub const FULL_CONFIG_FILE: &str = "full.toml";
6+
pub const EXAMPLE_CONFIG_FILE: &str = "AppleChu.example.toml";
7+
pub const FULL_CONFIG_FILE: &str = "AppleChu.full.toml";
88

99
pub const DEFAULT_CONFIG_HEADER: &str = r#"## 这是 AppleChu 的 TOML 配置文件
1010
##

0 commit comments

Comments
 (0)