Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jahaja committed Apr 15, 2014
1 parent 481a429 commit cea1c5d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
--- v0.x.x [Not released] ---
--- v0.3.0 [2014-04-15] ---

* [NEW] Added a PSDASH_URL_PREFIX configuration setting to allow psdash to be served from a sub-url rather than always on root.

* [NEW] Now updating the list of available logs every minute.

* [NEW] The list of logs is now sorted in alphabetical order.

* [FIX] Fixed bug where the view logs page would crash if a previously added log becomes unavailable.

* [FIX] Fix for Python 3 support.

--- v0.2.0 [2014-04-05] ---

* [NEW] It's now possible to pass a pattern (e.g /var/log/**/*.log) when adding log files through the arg option --log.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Available command-line arguments:
```
usage: psdash [-h] [-l path] [-b host] [-p port] [-d]
psdash 0.2.0 - system information web dashboard
psdash 0.3.0 - system information web dashboard
optional arguments:
-h, --help show this help message and exit
Expand Down
2 changes: 1 addition & 1 deletion psdash/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.0"
__version__ = "0.3.0"
4 changes: 2 additions & 2 deletions psdash/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ def search_log():

def parse_args():
parser = argparse.ArgumentParser(
description="psdash %s - system information web dashboard" % "0.2.0"
description="psdash %s - system information web dashboard" % "0.3.0"
)
parser.add_argument(
"-l", "--log",
Expand Down Expand Up @@ -493,7 +493,7 @@ def enable_verbose_logging():
def main():
setup_logging()

logger.info("Starting psdash v0.2.0")
logger.info("Starting psdash v0.3.0")

# This set locale to the user default (usually controlled by the LANG env var)
locale.setlocale(locale.LC_ALL, "")
Expand Down

0 comments on commit cea1c5d

Please sign in to comment.