root 3 年之前
父節點
當前提交
a535a5a478

+ 5 - 5
electron-builder.yml

@@ -1,6 +1,6 @@
-appId: org.CocoRobo.AIInnovationEducation
+appId: org.CocoRobo.CocoRoboXDeskTop
 copyright: Copytright © 2021 CocoRobo LTD
-productName: AI创新教育
+productName: CocoRoboXDeskTop
 npmRebuild: true
 asar: true
 
@@ -32,7 +32,7 @@ mac:
   hardenedRuntime: true
   entitlements: build/entitlements.mac.plist
   entitlementsInherit: build/entitlements.mac.plist
-  artifactName: AIInnovationEducation Installer v${version}.${ext}
+  artifactName: CocoRoboXDeskTop Installer v${version}.${ext}
   extraFiles:
     - from: src/static/mac/tools
       to: tools
@@ -72,7 +72,7 @@ win:
         - x64
         - ia32
   icon: src/static/common/cocorobo.ico
-  artifactName: AIInnovationEducation Installer v${version}.${ext}
+  artifactName: CocoRoboXDeskTop Installer v${version}.${ext}
   extraFiles:
     - from: src/static/win/cp210x_drivers
       to: cp210x_drivers
@@ -101,7 +101,7 @@ linux:
     - deb
     - AppImage
   icon: src/static/common/cocorobo.png
-  artifactName: AIInnovationEducation Installer v${version}.${ext}
+  artifactName: CocoRoboXDeskTop Installer v${version}.${ext}
   extraFiles:
     - from: src/static/linux/tools
       to: tools

+ 1 - 1
package.json

@@ -1,5 +1,5 @@
 {
-  "name": "AIInnovationEducation",
+  "name": "CocoRoboXDeskTop",
   "version": "1.0.0",
   "description": "cocorobo",
   "repository": "https://github.com/CocoRoboLabs/CocoBlockly-desktop.git",

+ 1 - 1
src/main/main.js

@@ -43,7 +43,7 @@ if (platform === 'darwin') {
 	const sudo = require('sudo-prompt');
 	const AutoLaunch = require('auto-launch');
 	const opts = {
-		name: "AIInnovationEducation",
+		name: "CocoRoboXDeskTop",
 		isHidden: false,
 		mac: { useLaunchAgent: true }
 	};

+ 1 - 1
src/renderer/cocoblockly-x

@@ -1 +1 @@
-Subproject commit 7308df1f95be0f183fc83beb48d1eec98aa0f821
+Subproject commit b8c77d41ef4f6cba2bfec0d80401d203cab4eb81

二進制
src/static/common/cocorobo.ico


二進制
src/static/common/cocorobo.png


二進制
src/static/common/cocorobo_.ico


二進制
src/static/common/cocorobo_.png


二進制
src/static/common/cocorobo_black.png


二進制
src/static/common/logo-1.png


+ 2 - 2
src/static/win/installer.nsh

@@ -7,7 +7,7 @@
 !macroend
 
 !macro customInstall
-    WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Run""AIInnovationEducation" "$INSTDIR\AIInnovationEducation.exe"
+    WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Run""CocoRoboXDeskTop" "$INSTDIR\CocoRoboXDeskTop.exe"
     nsExec::Exec ".\resources\ca.bat"
     ${ifNot} ${isUpdated}
         ; ${If} ${RunningX64}
@@ -31,5 +31,5 @@
     #nsExec::Exec 'cmd.exe /c del "$INSTDIR\resources\ca.bat" "$INSTDIR\resources\ca.crt" "$INSTDIR\python\python-3.8.0-amd64.bat" "$INSTDIR\python\python-3.8.0.bat" "$INSTDIR\cp210x_drivers\CP210xVCPInstaller_x64.bat" "$INSTDIR\cp210x_drivers\CP210xVCPInstaller_x86.bat"'
 !macroend
 !macro customUnInstall
-    DeleteRegValue HKCU "Software\Microsoft\Windows\CurrentVersion\Run" "AIInnovationEducation"
+    DeleteRegValue HKCU "Software\Microsoft\Windows\CurrentVersion\Run" "CocoRoboXDeskTop"
 !macroend