diff options
Diffstat (limited to 'lv2specgen/lv2specgen.py')
-rwxr-xr-x | lv2specgen/lv2specgen.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index 527c11d..884ede1 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -716,7 +716,10 @@ def specgen(specloc, docdir, template, instances=False, mode="spec"): other_files = '<li><a href=".">Online Bundle</a></li>\n' if revision and revision[0] != '0': - other_files += '<li><a href="http://lv2plug.in/spec/lv2-%s-%s.tar.gz">Release</a> (<a href="http://lv2plug.in/spec">all releases</a>)</li>\n' % (basename, revision[0]) + release_name = "lv2-" + basename + if basename == "lv2": + release_name = "lv2core" + other_files += '<li><a href="http://lv2plug.in/spec/%s-%s.0.tar.gz">Release</a> (<a href="http://lv2plug.in/spec">all releases</a>)</li>\n' % (release_name, revision[0]) 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') |