Skip to content

Commit

Permalink
Project: Updated version to 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Adolio committed Jan 11, 2022
1 parent 48c1457 commit 558d645
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.4 (2022-01-11)

- Sound Instance: Fixed looping capability for standard sounds
- Sound Instance: Added `currentLoop` accessor
- Demo: Extended loops limit
- Demo: Improved stop & re-play capability

## v0.3 (2020-09-30)

- Sound Instance: Added remaining time method
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/32.0">
<id>Syrinx-Sound-Manager-Demo</id>
<versionLabel>0.3</versionLabel>
<versionNumber>0.3</versionNumber>
<versionLabel>0.4</versionLabel>
<versionNumber>0.4</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.3";
public static const VERSION:String = "0.4";
public static const MAX_CHANNELS:uint = 32; // Adobe AIR hard limit

// Core
Expand Down

0 comments on commit 558d645

Please sign in to comment.