File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 1- --- v0.x.x [Not released ] ---
1+ --- v0.3.0 [2014-04-15 ] ---
22
33* [NEW] Added a PSDASH_URL_PREFIX configuration setting to allow psdash to be served from a sub-url rather than always on root.
44
5+ * [NEW] Now updating the list of available logs every minute.
6+
7+ * [NEW] The list of logs is now sorted in alphabetical order.
8+
9+ * [FIX] Fixed bug where the view logs page would crash if a previously added log becomes unavailable.
10+
11+ * [FIX] Fix for Python 3 support.
12+
513--- v0.2.0 [2014-04-05] ---
614
715* [NEW] It's now possible to pass a pattern (e.g /var/log/**/*.log) when adding log files through the arg option --log.
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ Available command-line arguments:
4343```
4444usage: psdash [-h] [-l path] [-b host] [-p port] [-d]
4545
46- psdash 0.2 .0 - system information web dashboard
46+ psdash 0.3 .0 - system information web dashboard
4747
4848optional arguments:
4949 -h, --help show this help message and exit
Original file line number Diff line number Diff line change 1- __version__ = "0.2 .0"
1+ __version__ = "0.3 .0"
Original file line number Diff line number Diff line change @@ -417,7 +417,7 @@ def search_log():
417417
418418def parse_args ():
419419 parser = argparse .ArgumentParser (
420- description = "psdash %s - system information web dashboard" % "0.2 .0"
420+ description = "psdash %s - system information web dashboard" % "0.3 .0"
421421 )
422422 parser .add_argument (
423423 "-l" , "--log" ,
@@ -493,7 +493,7 @@ def enable_verbose_logging():
493493def main ():
494494 setup_logging ()
495495
496- logger .info ("Starting psdash v0.2 .0" )
496+ logger .info ("Starting psdash v0.3 .0" )
497497
498498 # This set locale to the user default (usually controlled by the LANG env var)
499499 locale .setlocale (locale .LC_ALL , "" )
You can’t perform that action at this time.
0 commit comments