Skip to content

Commit

Permalink
change: 版本号 & 通道
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxLHy0424 committed Sep 1, 2024
1 parent d3cd632 commit e989428
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

# 获取

**最新发行版: v5.1.2.**\
**[更新日志](https://github.com/MaxLHy0424/CRCSN/releases/tag/v5.1.2) | [直链下载](https://github.com/MaxLHy0424/CRCSN/releases/download/v5.1.2/CRCSN-v5.1.2-Stable.7z)**
**最新发行版: v5.1.3.**\
**[更新日志](https://github.com/MaxLHy0424/CRCSN/releases/tag/v5.1.3) | [直链下载](https://github.com/MaxLHy0424/CRCSN/releases/download/v5.1.3/CRCSN-v5.1.3-Stable.7z)**

或者:

Expand All @@ -17,7 +17,7 @@
**由于 CRCSN 存在敏感操作, 使用时建议关闭防病毒软件. 若 CRCSN 被报为恶意软件, 请添加排除项.**

> [!NOTE]
> 适用于 v5.1.2.
> 适用于 v5.1.3.
## 1 启动

Expand Down
8 changes: 4 additions & 4 deletions info.rc
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
1 VERSIONINFO
PRODUCTVERSION 5,1,2
FILEVERSION 5,1,2
PRODUCTVERSION 5,1,3
FILEVERSION 5,1,3
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904B0"
BEGIN
VALUE "CompanyName","MaxLHy0424"
VALUE "FileDescription","CRCSN"
VALUE "FileVersion","v5.1.2"
VALUE "FileVersion","v5.1.3"
VALUE "InternalName","CRCSN"
VALUE "LegalCopyright","(C) 2023 MaxLHy0424, All Rights Reserved."
VALUE "OriginalFilename","CRCSN-$(CRT).exe"
VALUE "ProductName","Computer Room Control Software Nemesis"
VALUE "ProductVersion","v5.1.2"
VALUE "ProductVersion","v5.1.3"
END
END
BLOCK "VarFileInfo"
Expand Down
6 changes: 3 additions & 3 deletions launcher.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ set arch=x86_64
set runtime=msvcrt
set argv=
set AUTO_LAUNCH=0
set CHANNEL=2
set CUSTOM_TITLE=[[CUSTOM]] CRCSN Launcher
set CHANNEL=0
set CUSTOM_TITLE=[$CUSTOM$] CRCSN Launcher
if %CHANNEL%==0 (
title CRCSN Launcher
) else if %CHANNEL%==1 (
Expand All @@ -19,7 +19,7 @@ mode con cols=50 lines=25
cd /d "%~dp0"
%1
echo CRCSN Launcher
echo v5.1.2
echo v5.1.3
echo (C) 2023 MaxLHy0424, All Rights Reserved.
echo.
echo (i) 将要启动 CRCSN %arch%, %runtime%.
Expand Down
4 changes: 2 additions & 2 deletions src/def.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ typedef const i8 * cstr;
typedef short i16;
typedef unsigned short u16;
typedef int i32;
#define CHANNEL 2
#define CUSTOM_TITLE "[[CUSTOM]] CRCSN"
#define CHANNEL 0
#define CUSTOM_TITLE "[$CUSTOM$] CRCSN"
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ auto main(const i32 argc,cstr argv[])->i32{
std::thread(Mod::frontShow).detach();
}
ui.push(" [ Computer Room Control Software Nemesis ]");
ui.push(" v5.1.2");
ui.push(" v5.1.3");
ui.push(" https://github.com/MaxLHy0424/CRCSN");
ui.push(" (C) 2023 MaxLHy0424, All Rights Reserved.\n");
if(optErr){
Expand Down

0 comments on commit e989428

Please sign in to comment.