Commit 7f88f8d2 authored by Leo Iannacone's avatar Leo Iannacone

Merge branch 'master' into portable

parents a43d53df 14dccc43
# 0.4.0 (2014-06-12) # 0.4.0 (2014-06-12)
* [new] always show only max_lines in preview, also when new_content is recevied * [new] always show only max_lines in preview, also when new_content is recevied
* [new] get debomatic real status by reading pidfile in /var/run directory * [new] get debomatic real status by reading pidfile in /var/run directory
* [new] by default package in status bar links to buildlog file instead of datestamp
* [new] add History file * [new] add History file
# 0.3.0 (2014-06-09) # 0.3.0 (2014-06-09)
......
...@@ -14,7 +14,7 @@ function Page_Generic() { ...@@ -14,7 +14,7 @@ function Page_Generic() {
function __get_status_html_href(status_data) { function __get_status_html_href(status_data) {
var result = config.paths.distribution + '#' + status_data.distribution; var result = config.paths.distribution + '#' + status_data.distribution;
if (status_data.hasOwnProperty('package')) if (status_data.hasOwnProperty('package'))
result += '/' + status_data.package.replace('_', '/') + '/datestamp'; result += '/' + status_data.package.replace('_', '/') + '/buildlog';
return result; return result;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment