From 52d97253d184b00501a7f81b6f46d56bfc9ef15d Mon Sep 17 00:00:00 2001
From: Innei
Date: Thu, 18 Jul 2024 19:50:10 +0800
Subject: [PATCH] feat: update about desc
Signed-off-by: Innei
---
.../src/modules/settings/tabs/about.tsx | 36 ++++++++++++++++---
1 file changed, 31 insertions(+), 5 deletions(-)
diff --git a/src/renderer/src/modules/settings/tabs/about.tsx b/src/renderer/src/modules/settings/tabs/about.tsx
index 531eb5183..39268fd30 100644
--- a/src/renderer/src/modules/settings/tabs/about.tsx
+++ b/src/renderer/src/modules/settings/tabs/about.tsx
@@ -1,13 +1,10 @@
-import { repository } from "@pkg"
+import { license, repository } from "@pkg"
import { Logo } from "@renderer/components/icons/logo"
import { StyledButton } from "@renderer/components/ui/button"
export const SettingAbout = () => (
+ {APP_NAME} + {" "} + is a free and open-source project. It is licensed under the + {" "} + {license} + {" "} + License. +
+ ++ {APP_NAME} + {" "} + ( + {GIT_COMMIT_SHA.slice(0, 7).toUpperCase()} + ) + {" "} + currently early in development. If you have any feedback or + suggestions, please feel free to + {" "} + + open an issue + {" "} + + + {" "} + on the GitHub. +
)