Skip to content

Commit 53e06c1

Browse files
committed
Project: Updated version to 0.6
1 parent 1df6182 commit 53e06c1

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Syrinx - Sound Manager: Changelog
22

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+
311
## v0.5 (2022-07-26)
412

513
- Track Configuration: Added base volume for volume mastering configuration

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ by Aurélien Da Campo ([Adolio](https://twitter.com/AurelienDaCampo))
99
- Intuitive & friendly API
1010
- Seamless sound looping via silence trimming and/or WAV files format
1111
- Pitch capability
12+
- Sound instances pooling
1213

1314
## ▶️ Try it!
1415

demo/application.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<application xmlns="http://ns.adobe.com/air/application/33.1">
33
<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>
66
<filename>Syrinx-Sound-Manager-Demo</filename>
77
<name>Syrinx-Sound-Manager-Demo</name>
88
<initialWindow>

src/ch/adolio/sound/SoundManager.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ package ch.adolio.sound
2424
public class SoundManager
2525
{
2626
// Const
27-
public static const VERSION:String = "0.5";
27+
public static const VERSION:String = "0.6";
2828
public static const MAX_CHANNELS:uint = 32; // Adobe AIR hard limit
2929

3030
// Core

0 commit comments

Comments
 (0)