Skip to content

Commit

Permalink
0.5.0 release version
Browse files Browse the repository at this point in the history
  • Loading branch information
raptox committed Jan 19, 2019
1 parent a2e732c commit 40868f8
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 21 deletions.
1 change: 0 additions & 1 deletion app/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,5 @@
);
}
</script>
<img alt='TU Logo' src='../resources/TU-Signet.png' style='position:fixed; width:50px; height:50px; right:3px; top:3px;'/>
</body>
</html>
12 changes: 12 additions & 0 deletions app/components/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import React, { Component } from 'react';
import { Link } from 'react-router-dom';
import routes from '../constants/routes';
import styles from './Basic.css';
import tuLogo from './TU-Signet.png';

type Props = {};
const remote = require('electron').remote;
Expand All @@ -14,6 +15,17 @@ export default class Home extends Component<Props> {
render() {
return (
<div className={styles.container} data-tid="container">
<img
alt="TU Logo"
src={tuLogo}
style={{
position: 'fixed',
width: '50px',
height: '50px',
right: '3px',
top: '3px'
}}
/>
<h2>Interactive Visualization of MPI Performance Data</h2>
<div className={styles.buttons}>
<Link to={routes.PARSE}>Parse XML</Link> <br />
Expand Down
12 changes: 12 additions & 0 deletions app/components/ParseXML.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import TextField from '@material-ui/core/TextField';
import ReactJson from 'react-json-view';
import { ClipLoader } from 'react-spinners';
import styles from './Basic.css';
import tuLogo from './TU-Signet.png';

const { dialog } = require('electron').remote;
const fs = require('fs');
Expand All @@ -31,6 +32,17 @@ export default class ParseXML extends Component {

return (
<div>
<img
alt="TU Logo"
src={tuLogo}
style={{
position: 'fixed',
width: '50px',
height: '50px',
right: '3px',
top: '3px'
}}
/>
<div className={styles.backButton} data-tid="backButton">
<Link to={routes.HOME}>
<i className="fa fa-arrow-left fa-2x" />
Expand Down
File renamed without changes
12 changes: 12 additions & 0 deletions app/components/ViewParsed.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import Button from '@material-ui/core/Button';
import ReactTable from 'react-table';
import moment from 'moment';
import { Pie } from 'react-chartjs-2';
import tuLogo from './TU-Signet.png';

const { dialog } = require('electron').remote;
const fs = require('fs');
Expand All @@ -24,6 +25,17 @@ export default class ViewParsed extends Component {

return (
<div>
<img
alt="TU Logo"
src={tuLogo}
style={{
position: 'fixed',
width: '50px',
height: '50px',
right: '3px',
top: '3px'
}}
/>
<div className={styles.backButton} data-tid="backButton">
<Link to={routes.HOME}>
<i className="fa fa-arrow-left fa-2x" />
Expand Down
28 changes: 8 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "electron-react-boilerplate",
"productName": "ElectronReact",
"version": "0.17.0",
"description": "Electron application boilerplate based on React, React Router, Webpack, React Hot Loader for rapid application development",
"name": "ipm-hpc-v2",
"productName": "IPM-HPC-v2",
"version": "0.5.0",
"description": "Interactive Visualization of MPI Performance Data (Bachelor Thesis)",
"scripts": {
"build": "concurrently \"yarn build-main\" \"yarn build-renderer\"",
"build-dll": "cross-env NODE_ENV=development webpack --config ./configs/webpack.config.renderer.dev.dll.babel.js --colors",
Expand Down Expand Up @@ -57,7 +57,7 @@
},
"main": "./app/main.prod.js",
"build": {
"productName": "ElectronReact",
"productName": "IPM-HPC-v2",
"appId": "org.develar.ElectronReact",
"files": [
"app/dist/",
Expand Down Expand Up @@ -111,22 +111,10 @@
"url": "git+https://github.com/electron-react-boilerplate/electron-react-boilerplate.git"
},
"author": {
"name": "Electron React Boilerplte Maintainers",
"email": "[email protected]",
"url": "https://electron-react-boilerplate.js.org"
"name": "Alexander Tornoreanu",
"email": "[email protected]",
"url": "http://www.alextornoreanu.at/"
},
"contributors": [
{
"name": "Vikram Rangaraj",
"email": "[email protected]",
"url": "https://github.com/vikr01"
},
{
"name": "Amila Welihinda",
"email": "[email protected]",
"url": "https://github.com/amilajack"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/electron-react-boilerplate/electron-react-boilerplate/issues"
Expand Down

0 comments on commit 40868f8

Please sign in to comment.