From 8ad2e358fd3b05eed2919de50640682e51687fb5 Mon Sep 17 00:00:00 2001 From: login Date: Sun, 8 Jan 2023 15:51:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0about=20app=E4=B8=AD=E7=9A=84?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E5=8F=B7=20(#145)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 更新about app中的版本号 --- docs/community/ChangeLog/V0.1.x/V0.1.3.md | 24 +++++++++++++++++++++++ user/apps/about/about.c | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/docs/community/ChangeLog/V0.1.x/V0.1.3.md b/docs/community/ChangeLog/V0.1.x/V0.1.3.md index e0929a29..e1d6565b 100644 --- a/docs/community/ChangeLog/V0.1.x/V0.1.3.md +++ b/docs/community/ChangeLog/V0.1.x/V0.1.3.md @@ -132,6 +132,30 @@ DragonOS V0.1.3版本由以下小伙伴贡献代码: ## 当前版本的所有提交记录 ```text +commit a8b621c8d1fe77251b8e4eafe258dc0ee7366dd5 +Author: login +Date: Sun Jan 8 15:47:44 2023 +0800 + + 修正由于libc中具有crti.S和crtn.S,造成的与x86_64-elf-gcc不兼容的问题 (#144) + +commit 9358ff0f6f7daa18d6fab4497de025736b3d6725 +Author: login +Date: Sun Jan 8 15:06:52 2023 +0800 + + Add v0.1.3 changelog (#143) + + * new: 0.1.3发行日志 + + * 新增输出指定时间范围内的贡献者名单的脚本 + + * 更新bootloader文档 + + * update: 简介文档 + + * new: 镜像站文档 + + * update: 功能特性文档 + commit fd91905f022b3ceaa59e666d1ff42d91fb8d40ef Author: login Date: Sun Jan 8 11:38:59 2023 +0800 diff --git a/user/apps/about/about.c b/user/apps/about/about.c index f25f06fa..d0edaf54 100644 --- a/user/apps/about/about.c +++ b/user/apps/about/about.c @@ -19,7 +19,7 @@ void print_copyright() printf(" DragonOS - An opensource operating system.\n"); printf(" Copyright: fslongjin & DragonOS Community. 2022, All rights reserved.\n"); printf(" Version: "); - put_string("V0.1.2\n", COLOR_GREEN, COLOR_BLACK); + put_string("V0.1.3\n", COLOR_GREEN, COLOR_BLACK); printf(" Git commit SHA1: %s\n", DRAGONOS_GIT_COMMIT_SHA1); printf(" Build time: %s %s\n", __DATE__, __TIME__); printf(" \nYou can visit the project via:\n");