Corrected version information (fixes #100)
This commit is contained in:
parent
8198b5cb3d
commit
c4af1edefe
7 changed files with 10 additions and 7 deletions
|
@ -231,6 +231,9 @@ So to get started with a new language, copy the `example.json` to the language y
|
||||||
|
|
||||||
## Releases
|
## Releases
|
||||||
|
|
||||||
|
**Version 3.5.1**\
|
||||||
|
This is just 3.5.0 but with corrected version tags to make Packagist happy and correct my mistake. :facepalm:
|
||||||
|
|
||||||
**Version 3.5.0**\
|
**Version 3.5.0**\
|
||||||
This version changes how the build process includes the javascript.
|
This version changes how the build process includes the javascript.
|
||||||
* The `-j`/`--local-js` flag now embeds the javascript into the `index.php` file rather than having them as a separate files
|
* The `-j`/`--local-js` flag now embeds the javascript into the `index.php` file rather than having them as a separate files
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* OPcache GUI - build script
|
* OPcache GUI - build script
|
||||||
*
|
*
|
||||||
* @author Andrew Collington, andy@amnuts.com
|
* @author Andrew Collington, andy@amnuts.com
|
||||||
* @version 3.5.0
|
* @version 3.5.1
|
||||||
* @link https://github.com/amnuts/opcache-gui
|
* @link https://github.com/amnuts/opcache-gui
|
||||||
* @license MIT, https://acollington.mit-license.org/
|
* @license MIT, https://acollington.mit-license.org/
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -8,7 +8,7 @@ namespace Amnuts\Opcache;
|
||||||
* A simple but effective single-file GUI for the OPcache PHP extension.
|
* A simple but effective single-file GUI for the OPcache PHP extension.
|
||||||
*
|
*
|
||||||
* @author Andrew Collington, andy@amnuts.com
|
* @author Andrew Collington, andy@amnuts.com
|
||||||
* @version 3.5.0
|
* @version 3.5.1
|
||||||
* @link https://github.com/amnuts/opcache-gui
|
* @link https://github.com/amnuts/opcache-gui
|
||||||
* @license MIT, https://acollington.mit-license.org/
|
* @license MIT, https://acollington.mit-license.org/
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"keywords": ["opcache", "cache", "gui", "opcodes", "interface"],
|
"keywords": ["opcache", "cache", "gui", "opcodes", "interface"],
|
||||||
"minimum-stability": "stable",
|
"minimum-stability": "stable",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "3.4.0",
|
"version": "3.5.1",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Andrew Collington",
|
"name": "Andrew Collington",
|
||||||
|
|
|
@ -8,7 +8,7 @@ namespace Amnuts\Opcache;
|
||||||
* A simple but effective single-file GUI for the OPcache PHP extension.
|
* A simple but effective single-file GUI for the OPcache PHP extension.
|
||||||
*
|
*
|
||||||
* @author Andrew Collington, andy@amnuts.com
|
* @author Andrew Collington, andy@amnuts.com
|
||||||
* @version 3.5.0
|
* @version 3.5.1
|
||||||
* @link https://github.com/amnuts/opcache-gui
|
* @link https://github.com/amnuts/opcache-gui
|
||||||
* @license MIT, https://acollington.mit-license.org/
|
* @license MIT, https://acollington.mit-license.org/
|
||||||
*/
|
*/
|
||||||
|
@ -65,7 +65,7 @@ use Exception;
|
||||||
|
|
||||||
class Service
|
class Service
|
||||||
{
|
{
|
||||||
public const VERSION = '3.5.0';
|
public const VERSION = '3.5.1';
|
||||||
|
|
||||||
protected $tz;
|
protected $tz;
|
||||||
protected $data;
|
protected $data;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "opcache-gui",
|
"name": "opcache-gui",
|
||||||
"description": "A clean and responsive interface for Zend OPcache information, showing statistics, settings and cached files, and providing a real-time update for the information (using jQuery and React).",
|
"description": "A clean and responsive interface for Zend OPcache information, showing statistics, settings and cached files, and providing a real-time update for the information (using jQuery and React).",
|
||||||
"version": "3.4.0",
|
"version": "3.5.1",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/cli": "^7.12.8",
|
"@babel/cli": "^7.12.8",
|
||||||
|
|
|
@ -8,7 +8,7 @@ use Exception;
|
||||||
|
|
||||||
class Service
|
class Service
|
||||||
{
|
{
|
||||||
public const VERSION = '3.5.0';
|
public const VERSION = '3.5.1';
|
||||||
|
|
||||||
protected $tz;
|
protected $tz;
|
||||||
protected $data;
|
protected $data;
|
||||||
|
|
Loading…
Reference in a new issue