Skip to content

Commit

Permalink
v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jahaja committed Mar 29, 2014
1 parent b91ee62 commit 9525c3f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*.pyc
*.egg-info
*.egg-info
.pypirc
6 changes: 2 additions & 4 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
--- v0.1.1 [Not released yet] ---
--- v0.1.1 [2014-03-29] ---

* [FIX] Fixed error when specifying a unreadable log file. psdash will now check that
each log file is readable on startup.
Expand All @@ -7,6 +7,4 @@

* [NEW] Added a PSDASH_ prefix on all psdash specific configuration options.




* [FIX] Added argparse to setup.py requirements for Python 2.6 compatibility
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Available command-line arguments:
```
usage: psdash [-h] [-l path] [-b host] [-p port] [-d]
psdash 0.1.0 - system information web dashboard
psdash 0.1.1 - system information web dashboard
optional arguments:
-h, --help show this help message and exit
Expand Down Expand Up @@ -73,9 +73,6 @@ If this is set, only provided ip addresses will be allowed to access psdash.
Addresses is separated by a comma.<br>
eg: `PSDASH_ALLOWED_REMOTE_ADDRESSES = "10.0.0.2, 192.29.20.2"`

**NOTE:** The prefix `PSDASH_` is not present in the latest release 0.1.0.<br>
As such, the options are `AUTH_USERNAME`, `AUTH_PASSWORD` and `ALLOWED_REMOTE_ADDRESSES` in the 0.1.0 release.

## Screenshots

Overview:
Expand Down
2 changes: 1 addition & 1 deletion psdash/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ def search_log():

def parse_args():
parser = argparse.ArgumentParser(
description="psdash %s - system information web dashboard" % "0.1.0"
description="psdash %s - system information web dashboard" % "0.1.1"
)
parser.add_argument(
"-l", "--log",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="psdash",
version="0.1.0",
version="0.1.1",
description="Linux system information web dashboard",
long_description="psdash is a system information web dashboard for linux using data mainly served by psutil",
classifiers=[
Expand Down

0 comments on commit 9525c3f

Please sign in to comment.