File tree 4 files changed +12
-3
lines changed
4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Syrinx - Sound Manager: Changelog
2
2
3
+ ## v0.6 (2022-11-12)
4
+
5
+ - Sound Manager: Added ` Sound Instance ` pooling capability
6
+ - Sound Manager: Fixed typo in ` getRegisteredTracks ` method
7
+ - Demo: Updated to support the new pooling capability
8
+ - Demo: Fixed viewport
9
+ - Demo: Improved events handling
10
+
3
11
## v0.5 (2022-07-26)
4
12
5
13
- Track Configuration: Added base volume for volume mastering configuration
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ by Aurélien Da Campo ([Adolio](https://twitter.com/AurelienDaCampo))
9
9
- Intuitive & friendly API
10
10
- Seamless sound looping via silence trimming and/or WAV files format
11
11
- Pitch capability
12
+ - Sound instances pooling
12
13
13
14
## ▶️ Try it!
14
15
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<application xmlns =" http://ns.adobe.com/air/application/33.1" >
3
3
<id >Syrinx-Sound-Manager-Demo</id >
4
- <versionLabel >0.5 </versionLabel >
5
- <versionNumber >0.5 </versionNumber >
4
+ <versionLabel >0.6 </versionLabel >
5
+ <versionNumber >0.6 </versionNumber >
6
6
<filename >Syrinx-Sound-Manager-Demo</filename >
7
7
<name >Syrinx-Sound-Manager-Demo</name >
8
8
<initialWindow >
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ package ch.adolio.sound
24
24
public class SoundManager
25
25
{
26
26
// Const
27
- public static const VERSION : String = "0.5 " ;
27
+ public static const VERSION : String = "0.6 " ;
28
28
public static const MAX_CHANNELS : uint = 32 ; // Adobe AIR hard limit
29
29
30
30
// Core
You can’t perform that action at this time.
0 commit comments