Add 4.3.0 version

This commit is contained in:
Ivan Diaz 2018-10-05 23:20:32 -03:00
parent becb41d3ce
commit 80589c9ac5
4 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
![OpenSupports](http://www.opensupports.com/logo.png)
[![Build Status](https://travis-ci.org/opensupports/opensupports.svg?branch=master)](https://travis-ci.org/opensupports/opensupports) v4.2.0
[![Build Status](https://travis-ci.org/opensupports/opensupports.svg?branch=master)](https://travis-ci.org/opensupports/opensupports) v4.3.0
OpenSupports is an open source ticket system built primarily with PHP and ReactJS.
Please, visit our website for more information: [http://www.opensupports.com/](http://www.opensupports.com/)

View File

@ -7,9 +7,10 @@ class MainLayoutFooter extends React.Component {
render() {
return (
<div className={this.getClass()}>
{(this.props.adminPanelOpened) ? this.renderExtraLinks() : null}
{this.props.adminPanelOpened ? this.renderExtraLinks() : null}
<div className="main-layout-footer__powered">
Powered by <a className="main-layout-footer__os-link" href="http://www.opensupports.com/" target="_blank">OpenSupports</a>
<span> {this.props.adminPanelOpened ? `v${opensupports_version}` : null}</span>
</div>
</div>
);

View File

@ -1,3 +1,4 @@
opensupports_version = '4.3.0';
root = 'http://localhost:3000';
apiRoot = 'http://localhost:3000/api';
globalIndexPath = '';

View File

@ -19,6 +19,7 @@
<div id="app"></div>
<script>
opensupports_version = '4.3.0';
root = "<?=$url ?>";
apiRoot = '<?=$url ?>/api';
globalIndexPath = "<?=$path ?>";