From 87134b73fdc87686e646c8e790d3fde5ca82718b Mon Sep 17 00:00:00 2001 From: jarikomppa Date: Tue, 12 May 2015 22:36:31 +0300 Subject: [PATCH] Updated downloads page. Also, pandoc apparently spews random characters as nonbreaking space in web pages. Fun. --- doc/downloads.mmd | 45 +++++++++++++++++++++++++++++++++++++++++++-- doc/makedoc.py | 2 +- 2 files changed, 44 insertions(+), 3 deletions(-) diff --git a/doc/downloads.mmd b/doc/downloads.mmd index d6d9537b..94415bde 100644 --- a/doc/downloads.mmd +++ b/doc/downloads.mmd @@ -5,9 +5,9 @@ This page lists SoLoud downloads, as well as other relevant information. Latest stable release --------------------- -[soloud_20150427.zip](soloud_20150427.zip) <<- Download here +[soloud_20150512.zip](soloud_20150512.zip) <<- Download here -Documentation: [PDF](soloud_20150427.pdf) | [EPUB](soloud_20150427.epub) | [MOBI](soloud_20150427.mobi) | [HTML](soloud_20150427.html) +Documentation: [PDF](soloud_20150512.pdf) | [EPUB](soloud_20150512.epub) | [MOBI](soloud_20150512.mobi) | [HTML](soloud_20150512.html) Milestones ---------- @@ -48,6 +48,47 @@ Additional files Release history --------------- +[soloud_20150512.zip](soloud_20150512.zip) + +Documentation: [PDF](soloud_20150512.pdf) | [EPUB](soloud_20150512.epub) | [MOBI](soloud_20150512.mobi) | [HTML](soloud_20150512.html) + +- SoLoud "VLF" release +- Hilights: + - Virtual voices - play 1000 voices, SoLoud will figure out which ones you hear + - Major documentation update + - yEd graphs + - New web layout + - Many tweaks to PDF layout + - PDF doc is now 141 pages (ULF release had 94) + - Single-file HTML now contains images + - New backend: ALSA for Linux + - New filter: bassboost + - New backend: Null driver + - No audio device, call mix() to pull samples. + - New demo: virtualvoices + - New demo: null driver + - New demo: enumerate + - Added functions to query information on currently active back-end + - Added get/setLooping for live sounds + - Added default volume for audio sources + - Added custom 3d attenuator interface + - Added LEFT_HANDED_3D flag for left-handed 3d coordinate processing + - Added setInaudibleBehavior + - Split demo common code to a separate static lib + - Upped filter count to 8 + - Some x64 fixes + - "nondyn" naming removed, calling static libs static now + - Removed modf in monotone because Linux clib didn't like it + - Cleanup fix - call stop() from all audio source virtual dtors + - Memory file bugfixes + - Wav file loading was broken after move to File interface, fixed + - Some div by zeros fixed in Sfxr + - 3d processing done largely outside audio mutex + - Plus side - 3d stuff is way more performant + - Minus side - 3d stuff isn't thread safe + - And a bunch of smaller bug fixes and tweaks + + [soloud_20150427.zip](soloud_20150427.zip) Documentation: [PDF](soloud_20150427.pdf) | [EPUB](soloud_20150427.epub) | [MOBI](soloud_20150427.mobi) | [HTML](soloud_20150427.html) diff --git a/doc/makedoc.py b/doc/makedoc.py index 6c53349b..5376696c 100644 --- a/doc/makedoc.py +++ b/doc/makedoc.py @@ -95,7 +95,7 @@ with open(datestring + "/web/" + x[:len(x)-3]+"html", "w") as file_out: with open(datestring + "/web/" + x[:len(x)-3]+"html.bak", "r") as file_in: for line in file_in: - file_out.write(line.replace('code>', 'code>\n').replace('::','::').replace('\xc2','')) + file_out.write(line.replace('code>', 'code>\n').replace('::','::').replace('\xc2','').replace('\xa0','')) if x == "intro.mmd": if os.path.isfile(datestring + "/web/index.html"): os.remove(datestring + "/web/index.html")