Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Appworks Toolkit
# AppWorks Toolkit

## Development

Expand Down
20 changes: 12 additions & 8 deletions main/data/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
"platform": "darwin"
},
{
"title": "Appworks",
"title": "AppWorks Pack",
"name": "iceworks-team.iceworks",
"description": "Appworks 前端研发套件",
"description": "基于 VS Code 的多端研发套件",
"icon": "https://img.alicdn.com/imgextra/i4/O1CN01PkaZpW1K3xuisg58t_!!6000000001109-2-tps-512-512.png",
"version": "0.19.0",
"recommended": true,
Expand Down Expand Up @@ -115,13 +115,17 @@
],
"IdeExtensions": [
{
"name": "Appworks Pack",
"description": "",
"icon": "",
"downloadUrl": "",
"version": "0.19.2",
"title": "AppWorks Pack",
"name": "iceworks-team.iceworks",
"description": "基于 VS Code 的多端研发套件",
"icon": "https://img.alicdn.com/imgextra/i4/O1CN01PkaZpW1K3xuisg58t_!!6000000001109-2-tps-512-512.png",
"version": "0.19.0",
"recommended": true,
"isInternal": false
"isInternal": false,
"type": "IDEExtension",
"options": {
"IDEType": "VSCode"
}
}
]
}
2 changes: 1 addition & 1 deletion main/packageInstaller/DmgInstaller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class DmgInstaller implements IPackageInstaller {

installPkg = async ({ sourcePath, name }) => {
const modifiedSource = formatWhitespaceInPath(sourcePath);
const options = { name: 'Appworks Toolkit' };
const options = { name: 'AppWorks Toolkit' };

return new Promise((resolve, reject) => {
sudo.exec(
Expand Down
2 changes: 1 addition & 1 deletion main/utils/formatWhitespaceInPath.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Replace whitespace with `\ `
* transform /Applications/Appworks Toolkit.app to /Applications/Appworks\ Toolkit.app
* transform /Applications/AppWorks Toolkit.app to /Applications/AppWorks\ Toolkit.app
*/
export default function formatWhitespaceInPath(p: string) {
return p.replace(/ /g, '\\ ');
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"main": "./dist/index.js",
"build": {
"appId": "appworks-toolkit",
"productName": "Appworks Toolkit",
"productName": "AppWorks Toolkit",
"files": [
"dist/**/*",
"package.json"
Expand All @@ -35,7 +35,7 @@
"buildResources": "resource",
"output": "release"
},
"copyright": "Copyright © 2021 Appworks",
"copyright": "Copyright © 2021-present AppWorks",
"mac": {
"target": [
"dmg",
Expand Down Expand Up @@ -97,4 +97,4 @@
"typescript": "^4.0.0",
"wait-on": "^5.3.0"
}
}
}
4 changes: 2 additions & 2 deletions renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@appworks/toolkit-renderer",
"name": "appworks-toolkit-renderer",
"version": "0.1.0",
"description": "",
"dependencies": {
Expand Down Expand Up @@ -33,4 +33,4 @@
"build": "icejs build"
},
"private": true
}
}
22 changes: 12 additions & 10 deletions renderer/public/index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge,chrome=1" />
<meta name="viewport" content="width=device-width" />
<title>Appworks Toolkit</title>
</head>

<body>
<div id="ice-container"></div>
</body>
</html>
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge,chrome=1" />
<meta name="viewport" content="width=device-width" />
<title>AppWorks Toolkit</title>
</head>

<body>
<div id="ice-container"></div>
</body>

</html>