diff options
Diffstat (limited to 'lv2specgen/lv2specgen.py')
-rwxr-xr-x | lv2specgen/lv2specgen.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index 9adae8d..00290eb 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -715,7 +715,8 @@ def specgen(specloc, docdir, template, instances=False, mode="spec"): header_path = bundle_path + '/' + basename + '.h' other_files = '<li><a href=".">Bundle</a></li>\n' - other_files += '<li><a href="../releases">Releases</a></li>\n' + if revision and revision[0] != '0': + other_files += '<li><a href="http://lv2plug.in/spec">Releases</a></li>\n' if os.path.exists(os.path.abspath(header_path)): other_files += '<li><a href="' + docdir + '/html/%s">Header Documentation</a></li>\n' % ( basename + '_8h.html') |