Skip to content

Commit

Permalink
发布0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kvkens committed Jun 4, 2018
1 parent ed9d9a0 commit d980665
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 18 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

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

1. [macOSX](http://iuap-design-cdn.oss-cn-beijing.aliyuncs.com/static/uba/gui/download/0.2.0/Uba-GUI-0.2.0.dmg)
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)
1. [macOSX](http://iuap-design-cdn.oss-cn-beijing.aliyuncs.com/static/uba/gui/download/0.3.0/Uba-GUI-0.3.0.dmg)
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)


![uba-gui](https://raw.githubusercontent.com/tinper-uba/uba-gui/develop/screenshot/uba-gui-1.gif)
Expand Down
8 changes: 4 additions & 4 deletions app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "uba-gui",
"productName": "uba-gui",
"version": "0.2.1",
"version": "0.3.0",
"description": "A tool for uba developement",
"main": "./main.js",
"keywords": [],
Expand All @@ -14,8 +14,8 @@
},
"license": "MIT",
"dependencies": {
"npm": "^6.0.0",
"npminstall": "^3.5.0",
"uba": "^4.0.0-rc.1"
"npm": "^6.1.0",
"npminstall": "^3.6.2",
"uba": "4.0.1"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uba-gui",
"version": "0.2.1",
"version": "0.3.0",
"description": "A tool for uba developement",
"private": true,
"main": "app/main.js",
Expand Down
2 changes: 1 addition & 1 deletion src/main/menu/uba.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

export default function ubaMenu({ app }) {
return {
label: 'Uba-GUI',
label: '应用平台开发者工具',
submenu: [{
label: 'About uba GUI',
role: 'about'
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/MainPanel/Gift.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Gift extends Component {
<h4>让时光不在一行行代码中流逝</h4>
</Col>
<Col span={24}>
<h2>uba-gui 只为让你离梦想更快一些</h2>
<h2>只为让你离梦想更快一些</h2>
</Col>
</Row>
);
Expand Down
8 changes: 2 additions & 6 deletions src/renderer/components/Setting/index.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React, { Component } from 'react';
import { Tabs, Row, Col } from 'antd';
import {ipcRenderer} from 'electron';
import Empty from '../Empty';
import './index.less';

const ipc = ipcRenderer;
Expand All @@ -10,12 +11,7 @@ class Setting extends Component {
return (<div className="setting-wrap">
<Row>
<Col span={24}>
1
</Col>
</Row>
<Row>
<Col span={24}>
2
<Empty title="设置" />
</Col>
</Row>
</div>);
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/components/Welcome/Helper.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Helper extends Component {
<img className="banner" src={bannerPng} />
</Col>
<Col className="col-center" span={24} >
<div className="title">Welcome to UBA-GUI</div>
<div className="title">应用平台开发者工具</div>
<div className="version">Version {pkg.version}</div>
</Col>
<Col span={24} >
Expand All @@ -51,7 +51,7 @@ class Helper extends Component {
<List.Item>
<List.Item.Meta
avatar={<Avatar shape="square" src={welcome_news} />}
title={<a onClick={this.openDocument} href="javascript:;">uba 使用文档</a>}
title={<a onClick={this.openDocument} href="javascript:;">使用文档</a>}
description="各种功能介绍和文档"
/>
</List.Item>
Expand Down
2 changes: 1 addition & 1 deletion static/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Uba-GUI</title>
<title>应用平台开发者工具</title>
</head>
<body>
<div id="root"></div>
Expand Down

0 comments on commit d980665

Please sign in to comment.