Update doc

This commit is contained in:
Aoran Zeng
2025-10-29 12:41:07 +08:00
parent 1264b4192f
commit 6e03939f45
12 changed files with 57 additions and 34 deletions

4
.github/READIT.md vendored
View File

@@ -3,8 +3,8 @@
! ------------------------------------------------------------- ! -------------------------------------------------------------
! Doc Type : Markdown ! Doc Type : Markdown
! Doc Name : (Overview .github) READIT.md ! Doc Name : (Overview .github) READIT.md
! Doc Authors : Aoran Zeng <ccmywish@qq.com> ! Doc Authors : 曾奥然 <ccmywish@qq.com>
! Contributors : Nul None <nul@none.org> ! Contributors : Nul None <nul@none.org>
! | ! |
! Created On : <2025-06-20> ! Created On : <2025-06-20>
! Last Modified : <2025-06-20> ! Last Modified : <2025-06-20>

View File

@@ -73,7 +73,7 @@ jobs:
* Release version $version * Release version $version
-- Aoran Zeng <ccmywish@qq.com> $(date -R) -- 曾奥然 <ccmywish@qq.com> $(date -R)
EOF EOF

4
.vscode/README.md vendored
View File

@@ -3,8 +3,8 @@
! ------------------------------------------------------------- ! -------------------------------------------------------------
! Doc Type : Markdown ! Doc Type : Markdown
! Doc Name : (for VS Code users) README.md ! Doc Name : (for VS Code users) README.md
! Doc Authors : Aoran Zeng <ccmywish@qq.com> ! Doc Authors : 曾奥然 <ccmywish@qq.com>
! Contributors : Nul None <nul@none.org> ! Contributors : Nul None <nul@none.org>
! | ! |
! Created On : <2025-06-18> ! Created On : <2025-06-18>
! Last Modified : <2025-06-20> ! Last Modified : <2025-06-20>

View File

@@ -3,8 +3,8 @@
! ------------------------------------------------------------- ! -------------------------------------------------------------
! Doc Type : Markdown ! Doc Type : Markdown
! Doc Name : (chsrc-bootstrap Introduction.md) ! Doc Name : (chsrc-bootstrap Introduction.md)
! Doc Authors : Aoran Zeng <ccmywish@qq.com> ! Doc Authors : 曾奥然 <ccmywish@qq.com>
! Contributors : Nul None <nul@none.org> ! Contributors : Nul None <nul@none.org>
! | ! |
! Created On : <2025-07-12> ! Created On : <2025-07-12>
! Last Modified : <2025-07-22> ! Last Modified : <2025-07-22>

View File

@@ -2,14 +2,14 @@
.\" SPDX-License-Identifier: GFDL-1.3-or-later .\" SPDX-License-Identifier: GFDL-1.3-or-later
.\" -------------------------------------------------------------- .\" --------------------------------------------------------------
.\" Doc Type : Man Page .\" Doc Type : Man Page
.\" Doc Authors : Aoran Zeng <ccmywish@qq.com> .\" Doc Authors : 曾奥然 <ccmywish@qq.com>
.\" Contributors : Nul None <nul@none.org> .\" Contributors : Nul None <nul@none.org>
.\" | .\" |
.\" Created On : <2024-08-21> .\" Created On : <2024-08-21>
.\" Last Modified : <2025-08-11> .\" Last Modified : <2025-10-29>
.\" -------------------------------------------------------------- .\" ----------------------------------------------------------------
.TH chsrc 1 "2025-08-11" "v0.2.2.3" "RubyMetric chsrc" .TH chsrc 1 "2025-10-29" "v0.2.3.1" "RubyMetric chsrc"
.SH NAME .SH NAME
chsrc - Change Source for every software on every platform from the command line chsrc - Change Source for every software on every platform from the command line

View File

@@ -2,29 +2,29 @@
@c SPDX-License-Identifier: GFDL-1.3-or-later @c SPDX-License-Identifier: GFDL-1.3-or-later
@c -------------------------------------------------------------- @c --------------------------------------------------------------
@c Doc Type : Texinfo @c Doc Type : Texinfo
@c Doc Authors : Aoran Zeng <ccmywish@qq.com> @c Doc Authors : 曾奥然 <ccmywish@qq.com>
@c Contributors : Nul None <nul@none.org> @c Contributors : Nul None <nul@none.org>
@c | @c |
@c Created On : <2024-08-22> @c Created On : <2024-08-22>
@c Last Modified : <2025-08-11> @c Last Modified : <2025-10-29>
@c -------------------------------------------------------------- @c --------------------------------------------------------------
\input texinfo \input texinfo
@setfilename chsrc.info @setfilename chsrc.info
@settitle chsrc @settitle chsrc
@set Chsrc_Version v0.2.2.3 @set Chsrc_Version v0.2.3.1
@set Doc_Publish_Date 2025-08-11 @set Doc_Publish_Date 2025-10-29
@copying @copying
@comment 这是软件copyright不是文档copyright因此不放在titlepage @comment 这是软件copyright不是文档copyright因此不放在titlepage
Copyright @copyright{} 2025 Aoran Zeng, Heng Guo Copyright @copyright{} 2025 曾奥然, 郭恒
@end copying @end copying
@titlepage @titlepage
@title chsrc printed manual @title chsrc printed manual
@subtitle Change Source everywhere for every software! @subtitle Change Source everywhere for every software!
@author Aoran Zeng @author 曾奥然
@c @insertcopying @c @insertcopying
For chsrc @value{Chsrc_Version} For chsrc @value{Chsrc_Version}
@page @page

View File

@@ -3,8 +3,8 @@
! ------------------------------------------------------------- ! -------------------------------------------------------------
! Doc Type : Markdown ! Doc Type : Markdown
! Doc Name : README.md ! Doc Name : README.md
! Doc Authors : Aoran Zeng <ccmywish@qq.com> ! Doc Authors : 曾奥然 <ccmywish@qq.com>
! Contributors : Nil Null <nil@null.org> ! Contributors : Nil Null <nil@null.org>
! | ! |
! Created On : <2025-06-15> ! Created On : <2025-06-15>
! Last Modified : <2025-06-16> ! Last Modified : <2025-06-16>

View File

@@ -455,7 +455,8 @@ cli_print_version ()
{ {
char *version_string = "v" Chsrc_Version " (" Chsrc_Release_Date ")"; char *version_string = "v" Chsrc_Version " (" Chsrc_Release_Date ")";
char *str = xy_str_gsub (RAWSTR_chsrc_for_v, "@ver@", version_string); char *str = xy_str_gsub (CHINESE ? RAWSTR_chsrc_for_v_CHINESE : RAWSTR_chsrc_for_v_ENGLISH,
"@ver@", version_string);
println (str); println (str);
} }

View File

@@ -12,12 +12,12 @@
* 发布新版本前请修改此文件 * 发布新版本前请修改此文件
* ------------------------------------------------------------*/ * ------------------------------------------------------------*/
#define Chsrc_Version "0.2.3.1" #define Chsrc_Version "0.2.3.2-dev1"
// 以下四个宏仅用于 resource/chsrc.rc // 以下四个宏仅用于 resource/chsrc.rc
#define Chsrc_Version_Major 0 #define Chsrc_Version_Major 0
#define Chsrc_Version_Minor 2 #define Chsrc_Version_Minor 2
#define Chsrc_Version_Patch 3 #define Chsrc_Version_Patch 3
#define Chsrc_Version_Pre 1 #define Chsrc_Version_Pre 2
#define Chsrc_Release_Date "2025/10/28" #define Chsrc_Release_Date "2025/10/29"

File diff suppressed because one or more lines are too long

View File

@@ -5,7 +5,7 @@
! Config Authors: 曾奥然 <ccmywish@qq.com> ! Config Authors: 曾奥然 <ccmywish@qq.com>
! Contributors : Nil Null <nil@null.org> ! Contributors : Nil Null <nil@null.org>
! Created On : <2025-07-22> ! Created On : <2025-07-22>
! Last Modified : <2025-08-22> ! Last Modified : <2025-10-29>
! ---------------------------------------------------------- --> ! ---------------------------------------------------------- -->
# [rawstr4c] input for chsrc # [rawstr4c] input for chsrc
@@ -132,16 +132,36 @@ MAINTAIN:
## for `chsrc -v` ## for `chsrc -v`
- name = `for__v` - name = `for__v_CHINESE`
``` ```
chsrc @ver@ chsrc @ver@
Copyright (C) 2025 Aoran Zeng, Heng Guo
Copyright (C) 2023-2025 曾奥然, 郭恒
许可证 GPLv3+GNU GPL 第 3 版或更高版本 <https://gnu.org/licenses/gpl.html>
这是自由软件:您可以自由修改和分发它。
在法律允许的最大范围内,本软件按'原样'提供,不作任何明示或暗示的保证。
由作者曾奥然、郭恒协作者Mikachu2333、Happy Game 以及各位贡献者开发。(详见 chsrc-main.c, 或 `chsrc ls <target>`)
```
<br>
## for `chsrc -v -en`
- name = `for__v_ENGLISH`
```
chsrc @ver@
Copyright (C) 2023-2025 Aoran Zeng, Heng Guo
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html> License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it. This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. There is NO WARRANTY, to the extent permitted by law.
Written by Aoran Zeng, Heng Guo and contributors. (See chsrc-main.c) Written by authors: Aoran Zeng, Heng Guo, collaborators: Mikachu2333, Happy Game, and contributors. (See chsrc-main.c, or `chsrc ls <target>`)
``` ```
<br> <br>

View File

@@ -3,9 +3,9 @@
! ------------------------------------------------------------- ! -------------------------------------------------------------
! Doc Type : Markdown ! Doc Type : Markdown
! Doc Name : (Tools Introduction).md ! Doc Name : (Tools Introduction).md
! Doc Authors : Aoran Zeng <ccmywish@qq.com> ! Doc Authors : 曾奥然 <ccmywish@qq.com>
! | xuan <wick.dynex@qq.com> ! | xuan <wick.dynex@qq.com>
! Contributors : ChatGPT <https://chatgpt.com> ! Contributors : ChatGPT <https://chatgpt.com>
! | ! |
! Created On : <2024-10-25> ! Created On : <2024-10-25>
! Last Modified : <2025-07-21> ! Last Modified : <2025-07-21>