From 80589c9ac551394ecea77e8bea590d492162e6fe Mon Sep 17 00:00:00 2001 From: Ivan Diaz Date: Fri, 5 Oct 2018 23:20:32 -0300 Subject: [PATCH] Add 4.3.0 version --- README.md | 2 +- client/src/app/main/main-layout-footer.js | 3 ++- client/src/config.js | 1 + client/src/index.php | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d73497dd..4ef9b586 100644 --- a/README.md +++ b/README.md @@ -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/) diff --git a/client/src/app/main/main-layout-footer.js b/client/src/app/main/main-layout-footer.js index a6b4560b..27c1640d 100644 --- a/client/src/app/main/main-layout-footer.js +++ b/client/src/app/main/main-layout-footer.js @@ -7,9 +7,10 @@ class MainLayoutFooter extends React.Component { render() { return (
- {(this.props.adminPanelOpened) ? this.renderExtraLinks() : null} + {this.props.adminPanelOpened ? this.renderExtraLinks() : null}
Powered by OpenSupports + {this.props.adminPanelOpened ? `v${opensupports_version}` : null}
); diff --git a/client/src/config.js b/client/src/config.js index 1828bbe4..e2013ed3 100644 --- a/client/src/config.js +++ b/client/src/config.js @@ -1,3 +1,4 @@ +opensupports_version = '4.3.0'; root = 'http://localhost:3000'; apiRoot = 'http://localhost:3000/api'; globalIndexPath = ''; diff --git a/client/src/index.php b/client/src/index.php index 76b5baeb..152529e6 100755 --- a/client/src/index.php +++ b/client/src/index.php @@ -19,6 +19,7 @@