更新启明数字员工品牌资源
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@qiming-ai/qimingclaw",
|
"name": "@qiming-ai/qimingclaw",
|
||||||
"version": "0.9.7",
|
"version": "0.9.7",
|
||||||
"description": "QimingClaw",
|
"description": "启明数字员工",
|
||||||
"main": "dist/main/main.js",
|
"main": "dist/main/main.js",
|
||||||
"author": "Qiming Team",
|
"author": "Qiming Team",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
@@ -128,7 +128,7 @@
|
|||||||
},
|
},
|
||||||
"build": {
|
"build": {
|
||||||
"appId": "com.qiming.qimingclaw",
|
"appId": "com.qiming.qimingclaw",
|
||||||
"productName": "QimingClaw",
|
"productName": "启明数字员工",
|
||||||
"afterSign": "scripts/build/after-sign.js",
|
"afterSign": "scripts/build/after-sign.js",
|
||||||
"electronLanguages": [
|
"electronLanguages": [
|
||||||
"en",
|
"en",
|
||||||
@@ -297,8 +297,8 @@
|
|||||||
"hardenedRuntime": true,
|
"hardenedRuntime": true,
|
||||||
"extendInfo": {
|
"extendInfo": {
|
||||||
"CFBundleIdentifier": "com.qiming.agent",
|
"CFBundleIdentifier": "com.qiming.agent",
|
||||||
"CFBundleName": "QimingClaw",
|
"CFBundleName": "启明数字员工",
|
||||||
"CFBundleDisplayName": "QimingClaw",
|
"CFBundleDisplayName": "启明数字员工",
|
||||||
"NSDesktopFolderUsageDescription": "需要访问桌面文件夹以支持文件操作",
|
"NSDesktopFolderUsageDescription": "需要访问桌面文件夹以支持文件操作",
|
||||||
"NSDocumentsFolderUsageDescription": "需要访问文档文件夹以支持文件操作",
|
"NSDocumentsFolderUsageDescription": "需要访问文档文件夹以支持文件操作",
|
||||||
"NSDownloadsFolderUsageDescription": "需要访问下载文件夹以支持文件操作"
|
"NSDownloadsFolderUsageDescription": "需要访问下载文件夹以支持文件操作"
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 6.0 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 8.6 KiB |
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 672 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 99 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 247 KiB |
|
Before Width: | Height: | Size: 683 KiB After Width: | Height: | Size: 1.7 MiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 8.6 KiB |
|
Before Width: | Height: | Size: 591 B After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 4.6 KiB |
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<link rel="icon" type="image/png" href="/icon.png" />
|
<link rel="icon" type="image/png" href="/icon.png" />
|
||||||
<!-- 与 @shared/constants APP_DISPLAY_NAME 保持一致 -->
|
<!-- 与 @shared/constants APP_DISPLAY_NAME 保持一致 -->
|
||||||
<title>QimingClaw</title>
|
<title>启明</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="root"></div>
|
<div id="root"></div>
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ import {
|
|||||||
describe("Constants", () => {
|
describe("Constants", () => {
|
||||||
describe("App Identity", () => {
|
describe("App Identity", () => {
|
||||||
it("should have consistent app name", () => {
|
it("should have consistent app name", () => {
|
||||||
expect(APP_DISPLAY_NAME).toBe("QimingClaw");
|
expect(APP_DISPLAY_NAME).toBe("启明数字员工");
|
||||||
expect(APP_NAME_IDENTIFIER).toBe("qimingclaw");
|
expect(APP_NAME_IDENTIFIER).toBe("qimingclaw");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import type { AgentEngineType } from "@shared/types/electron";
|
|||||||
// ==================== 应用名称 ====================
|
// ==================== 应用名称 ====================
|
||||||
|
|
||||||
/** 应用对外显示名称(窗口标题、关于、安装包名称等),与 package.json build.productName 保持一致 */
|
/** 应用对外显示名称(窗口标题、关于、安装包名称等),与 package.json build.productName 保持一致 */
|
||||||
export const APP_DISPLAY_NAME = "QimingClaw";
|
export const APP_DISPLAY_NAME = "启明数字员工";
|
||||||
|
|
||||||
/** 应用技术标识(进程名、目录名等,小写字母),与 appId 等保持一致 */
|
/** 应用技术标识(进程名、目录名等,小写字母),与 appId 等保持一致 */
|
||||||
export const APP_NAME_IDENTIFIER = "qimingclaw";
|
export const APP_NAME_IDENTIFIER = "qimingclaw";
|
||||||
|
|||||||