Skip to content

Commit

Permalink
Project: Updated version to 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Adolio committed Jul 26, 2022
1 parent 9222850 commit 5c30494
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Syrinx - Sound Manager: Changelog

## v0.5 (2022-07-26)

- Track Configuration: Added base volume for volume mastering configuration
- Sound Instance: Added base volume for volume mastering
- Sound Manager: Added `findRegisteredTrack` method
- Sound Instance: Fixed minor constant usage

## v0.4 (2022-01-11)

- Sound Instance: Fixed looping capability for standard sounds
Expand Down
4 changes: 2 additions & 2 deletions demo/application.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<application xmlns="http://ns.adobe.com/air/application/33.1">
<id>Syrinx-Sound-Manager-Demo</id>
<versionLabel>0.4</versionLabel>
<versionNumber>0.4</versionNumber>
<versionLabel>0.5</versionLabel>
<versionNumber>0.5</versionNumber>
<filename>Syrinx-Sound-Manager-Demo</filename>
<name>Syrinx-Sound-Manager-Demo</name>
<initialWindow>
Expand Down
2 changes: 1 addition & 1 deletion src/ch/adolio/sound/SoundManager.as
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ package ch.adolio.sound
public class SoundManager
{
// Const
public static const VERSION:String = "0.4";
public static const VERSION:String = "0.5";
public static const MAX_CHANNELS:uint = 32; // Adobe AIR hard limit

// Core
Expand Down

0 comments on commit 5c30494

Please sign in to comment.