diff --git a/CHANGELOG.md b/CHANGELOG.md index 202d24e..68d1358 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +0.1.1 +**Enhancements** +- Terminal dashboard processes amount. + 0.1.0 **Enhancements** - Terminal dashboard. diff --git a/README.md b/README.md index 4b0e874..3c19e91 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,13 @@ pm2-gui [![NPM version](https://badge.fury.io/js/pm2-gui.svg)](http://badge.fury.io/js/pm2-gui) [![Build Status](https://travis-ci.org/Tjatse/pm2-gui.svg?branch=master)](https://travis-ci.org/Tjatse/pm2-gui) ======= -An elegant web interface for Unitech/PM2. +An elegant web & terminal interface for Unitech/PM2. > Compatible with PM2 v0.12.7+ > If you wanna update to pm2-gui@latest, make sure you've read the [change logs](CHANGELOG.md). +![image](screenshots/pm2-web.gif) + # Guide - [Features](#feats) - [Cautions](#cauts) @@ -13,6 +15,7 @@ An elegant web interface for Unitech/PM2. - [CLI](#cli) - [Curses-like dashboard](#dashboard) - [Run Web Interface](#cli_web) + - [Daemonic](#daemonic) - [Configs](#cli_confs) - [Authorization](#auth) - [UI/UX](#ui) @@ -76,6 +79,7 @@ $ npm install -g pm2-gui Start the web server, by specific configuration file: $ pm2-gui start --config my-config.ini ``` + ## Curses-like dashboard **Only working on unix system** @@ -99,7 +103,8 @@ $ npm install -g pm2-gui --no-debug hide stdout / stderr information ``` -**Daemonic:** + +## Daemonic ```bash # start $ nohup pm2-gui start > /dev/null 2>&1 & echo $! > /path/to/pm2-gui.pid @@ -198,7 +203,7 @@ Some screenshots: Curses-like dashboard: -![image](screenshots/mon.gif) +![image](screenshots/pm2-gui.gif) Backend (without `--no-debug` option): diff --git a/package.json b/package.json index 467c9fd..2769bf3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "pm2-gui", - "version": "0.1.0", - "description": "An elegant web interface for Unitech/PM2.", + "version": "0.1.1", + "description": "An elegant web & terminal interface for Unitech/PM2.", "scripts": { "test": "NODE_ENV=test bash test/index.sh" },