Adding app info to version information
This commit is contained in:
1
website/.env
Normal file
1
website/.env
Normal file
@@ -0,0 +1 @@
|
||||
REACT_APP_TITLE=Deighton AR System
|
||||
@@ -1,11 +1,11 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Deighton AR</title>
|
||||
<title>%REACT_APP_TITLE%</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link href="https://fonts.googleapis.com/css?family=Hind" rel="stylesheet">
|
||||
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.png">
|
||||
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
|
||||
</head>
|
||||
<body style="margin: 0;">
|
||||
<div id="root"></div>
|
||||
|
||||
@@ -42,7 +42,7 @@ export class App extends React.Component {
|
||||
</Column.Item>
|
||||
<Column.Item>
|
||||
<Box color='#FAFAFA' borderTop='1px solid #B2B2B2'>
|
||||
<Text tone='dimmed' margin={10}>{versionInfo.fullVersion} © 2018, Kingston Software Solutions.</Text>
|
||||
<Text tone='dimmed' margin={10}>{versionInfo.fullVersion} {versionInfo.copyright}</Text>
|
||||
</Box>
|
||||
</Column.Item>
|
||||
</Column>
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
export const versionInfo = {
|
||||
version: '0.1.0',
|
||||
fullVersion: '0.1.0-20180225.0',
|
||||
startYear: '2017',
|
||||
fullVersion: '0.1.0-20180226.0',
|
||||
title: 'Deighton AR System',
|
||||
copyright: '© 2018, Kingston Software Solutions.',
|
||||
supportEmail: 'support@kss.us.com',
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user