diff --git a/README.md b/README.md index fd7c9ec..c98a8df 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ A terminal-based math tool that runs on linux. This program is free and open source. We allow everyone to use the source code for enrichment, compilation, etc. But we don't take any responsibility for any problems! -⚠ note: This program cannot be used for science! If anything goes wrong, do so at your own risk! +⚠ Note: This program cannot be used for science! If anything goes wrong, do so at your own risk! ## ❔ How to use diff --git a/README_zh.md b/README_zh.md index d43748a..1d19bfb 100644 --- a/README_zh.md +++ b/README_zh.md @@ -26,7 +26,7 @@ 本程序是免费开源的,此源代码可以随意使用。允许任何人使用源代码进行扩充,编译等操作。出现任何问题,本人不承担任何责任! -⚠注意:本程序处于开发阶段,不可用于科学的精密计算!如果出现任何问题,后果自负! +⚠ 注意:本程序处于开发阶段,不可用于科学的精密计算!如果出现任何问题,后果自负! ## ❔如何使用 @@ -34,7 +34,7 @@ 或自行拉取编译 -📦编译环境需求:cmake, make,gcc +📦编译环境需求:cmake, ninja,gcc ## 🧑‍💻感谢 @@ -53,4 +53,3 @@ 本项目使用了头文件[ECPPH](https://github.com/QuantumLS-Studio/ECPPH) 先前的版本参见[MathCentralTools](https://github.com/FTS427/MathCentralTools)(已归档🗃️) - diff --git a/change_log.md b/change_log.md index b1571df..04afebc 100644 --- a/change_log.md +++ b/change_log.md @@ -75,3 +75,7 @@ - 功能:移除对Windows、Mac平台的支持 - UI:部分微调 - 整体:简化代码逻辑,便于维护 +- v0.0.1.3-4 + - 功能:无 + - UI:部分调整 + - 整体:代码部分重写,采用ninja&cmake编译 diff --git a/make.sh b/make.sh index 98594e4..9e423bd 100755 --- a/make.sh +++ b/make.sh @@ -1,5 +1,5 @@ cmake -S . -B ./build && cd ./build && -make && +ninja && echo "Done!" && echo "Exec -> build/MCT"