Skip to content

Commit 87134b7

Browse files
committed
Updated downloads page. Also, pandoc apparently spews random characters as nonbreaking space in web pages. Fun.
1 parent c5d7787 commit 87134b7

File tree

2 files changed

+44
-3
lines changed

2 files changed

+44
-3
lines changed

doc/downloads.mmd

Lines changed: 43 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ This page lists SoLoud downloads, as well as other relevant information.
55

66
Latest stable release
77
---------------------
8-
[soloud_20150427.zip](soloud_20150427.zip) <<- Download here
8+
[soloud_20150512.zip](soloud_20150512.zip) <<- Download here
99

10-
Documentation: [PDF](soloud_20150427.pdf) | [EPUB](soloud_20150427.epub) | [MOBI](soloud_20150427.mobi) | [HTML](soloud_20150427.html)
10+
Documentation: [PDF](soloud_20150512.pdf) | [EPUB](soloud_20150512.epub) | [MOBI](soloud_20150512.mobi) | [HTML](soloud_20150512.html)
1111

1212
Milestones
1313
----------
@@ -48,6 +48,47 @@ Additional files
4848
Release history
4949
---------------
5050

51+
[soloud_20150512.zip](soloud_20150512.zip)
52+
53+
Documentation: [PDF](soloud_20150512.pdf) | [EPUB](soloud_20150512.epub) | [MOBI](soloud_20150512.mobi) | [HTML](soloud_20150512.html)
54+
55+
- SoLoud "VLF" release
56+
- Hilights:
57+
- Virtual voices - play 1000 voices, SoLoud will figure out which ones you hear
58+
- Major documentation update
59+
- yEd graphs
60+
- New web layout
61+
- Many tweaks to PDF layout
62+
- PDF doc is now 141 pages (ULF release had 94)
63+
- Single-file HTML now contains images
64+
- New backend: ALSA for Linux
65+
- New filter: bassboost
66+
- New backend: Null driver
67+
- No audio device, call mix() to pull samples.
68+
- New demo: virtualvoices
69+
- New demo: null driver
70+
- New demo: enumerate
71+
- Added functions to query information on currently active back-end
72+
- Added get/setLooping for live sounds
73+
- Added default volume for audio sources
74+
- Added custom 3d attenuator interface
75+
- Added LEFT_HANDED_3D flag for left-handed 3d coordinate processing
76+
- Added setInaudibleBehavior
77+
- Split demo common code to a separate static lib
78+
- Upped filter count to 8
79+
- Some x64 fixes
80+
- "nondyn" naming removed, calling static libs static now
81+
- Removed modf in monotone because Linux clib didn't like it
82+
- Cleanup fix - call stop() from all audio source virtual dtors
83+
- Memory file bugfixes
84+
- Wav file loading was broken after move to File interface, fixed
85+
- Some div by zeros fixed in Sfxr
86+
- 3d processing done largely outside audio mutex
87+
- Plus side - 3d stuff is way more performant
88+
- Minus side - 3d stuff isn't thread safe
89+
- And a bunch of smaller bug fixes and tweaks
90+
91+
5192
[soloud_20150427.zip](soloud_20150427.zip)
5293

5394
Documentation: [PDF](soloud_20150427.pdf) | [EPUB](soloud_20150427.epub) | [MOBI](soloud_20150427.mobi) | [HTML](soloud_20150427.html)

doc/makedoc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
with open(datestring + "/web/" + x[:len(x)-3]+"html", "w") as file_out:
9696
with open(datestring + "/web/" + x[:len(x)-3]+"html.bak", "r") as file_in:
9797
for line in file_in:
98-
file_out.write(line.replace('code>', 'code>\n').replace('::','::<wbr>').replace('\xc2',''))
98+
file_out.write(line.replace('code>', 'code>\n').replace('::','::<wbr>').replace('\xc2','').replace('\xa0',''))
9999
if x == "intro.mmd":
100100
if os.path.isfile(datestring + "/web/index.html"):
101101
os.remove(datestring + "/web/index.html")

0 commit comments

Comments
 (0)