Skip to content

Commit d980665

Browse files
committed
发布0.3.0
1 parent ed9d9a0 commit d980665

File tree

8 files changed

+14
-18
lines changed

8 files changed

+14
-18
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
通过[Releases](https://github.com/tinper-uba/uba-gui/releases)页面下的提示下载使用
88

9-
1. [macOSX](http://iuap-design-cdn.oss-cn-beijing.aliyuncs.com/static/uba/gui/download/0.2.0/Uba-GUI-0.2.0.dmg)
10-
2. [windows](http://iuap-design-cdn.oss-cn-beijing.aliyuncs.com/static/uba/gui/download/0.2.0/Uba-GUI%20Setup%200.2.0.exe)
9+
1. [macOSX](http://iuap-design-cdn.oss-cn-beijing.aliyuncs.com/static/uba/gui/download/0.3.0/Uba-GUI-0.3.0.dmg)
10+
2. [windows](http://iuap-design-cdn.oss-cn-beijing.aliyuncs.com/static/uba/gui/download/0.3.0/Uba-GUI%20Setup%200.3.0.exe)
1111

1212

1313
![uba-gui](https://raw.githubusercontent.com/tinper-uba/uba-gui/develop/screenshot/uba-gui-1.gif)

app/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "uba-gui",
33
"productName": "uba-gui",
4-
"version": "0.2.1",
4+
"version": "0.3.0",
55
"description": "A tool for uba developement",
66
"main": "./main.js",
77
"keywords": [],
@@ -14,8 +14,8 @@
1414
},
1515
"license": "MIT",
1616
"dependencies": {
17-
"npm": "^6.0.0",
18-
"npminstall": "^3.5.0",
19-
"uba": "^4.0.0-rc.1"
17+
"npm": "^6.1.0",
18+
"npminstall": "^3.6.2",
19+
"uba": "4.0.1"
2020
}
2121
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "uba-gui",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"description": "A tool for uba developement",
55
"private": true,
66
"main": "app/main.js",

src/main/menu/uba.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
export default function ubaMenu({ app }) {
99
return {
10-
label: 'Uba-GUI',
10+
label: '应用平台开发者工具',
1111
submenu: [{
1212
label: 'About uba GUI',
1313
role: 'about'

src/renderer/components/MainPanel/Gift.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Gift extends Component {
1818
<h4>让时光不在一行行代码中流逝</h4>
1919
</Col>
2020
<Col span={24}>
21-
<h2>uba-gui 只为让你离梦想更快一些</h2>
21+
<h2>只为让你离梦想更快一些</h2>
2222
</Col>
2323
</Row>
2424
);

src/renderer/components/Setting/index.jsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React, { Component } from 'react';
22
import { Tabs, Row, Col } from 'antd';
33
import {ipcRenderer} from 'electron';
4+
import Empty from '../Empty';
45
import './index.less';
56

67
const ipc = ipcRenderer;
@@ -10,12 +11,7 @@ class Setting extends Component {
1011
return (<div className="setting-wrap">
1112
<Row>
1213
<Col span={24}>
13-
1
14-
</Col>
15-
</Row>
16-
<Row>
17-
<Col span={24}>
18-
2
14+
<Empty title="设置" />
1915
</Col>
2016
</Row>
2117
</div>);

src/renderer/components/Welcome/Helper.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Helper extends Component {
3636
<img className="banner" src={bannerPng} />
3737
</Col>
3838
<Col className="col-center" span={24} >
39-
<div className="title">Welcome to UBA-GUI</div>
39+
<div className="title">应用平台开发者工具</div>
4040
<div className="version">Version {pkg.version}</div>
4141
</Col>
4242
<Col span={24} >
@@ -51,7 +51,7 @@ class Helper extends Component {
5151
<List.Item>
5252
<List.Item.Meta
5353
avatar={<Avatar shape="square" src={welcome_news} />}
54-
title={<a onClick={this.openDocument} href="javascript:;">uba 使用文档</a>}
54+
title={<a onClick={this.openDocument} href="javascript:;">使用文档</a>}
5555
description="各种功能介绍和文档"
5656
/>
5757
</List.Item>

static/index.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
66
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7-
<title>Uba-GUI</title>
7+
<title>应用平台开发者工具</title>
88
</head>
99
<body>
1010
<div id="root"></div>

0 commit comments

Comments
 (0)