Skip to content

Commit

Permalink
Raised version to 0.3 & updated CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Adolio committed Oct 19, 2021
1 parent ea1cdd7 commit 97e0cf1
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Starling-Spatial-Deactivator: Changelog
=======================================

Version 0.3 - 2021-10-19
------------------------

- Spatial Deactivator: Added enabling / disabling capability
- Spatial Deactivator: Added version
- Spatial Element: Reduced memory consumption by re-using list of chunks
- Project: Migrated to Visual Studio Code with the ActionScript & MXML extension

Version 0.2 - 2017-11-12
------------------------

Expand All @@ -11,7 +19,7 @@ Version 0.2 - 2017-11-12
- Spatial Deactivator: Fixed active area first update delay (and delay after reset as well)
- Spatial Element: Fixed first update delay by initializing _timeSinceLastUpdate to Number.MAX_VALUE
- Spatial Element: Made activity changed callback field private
- Demo: Updated the Starling Forum link to reach the dedicated topic
- Demo: Updated the Starling Forum link to reach the dedicated topic
- Spatial Element: Added isActivityBridge flag & updated logic to support it (closes #1)
- Reduced a bit memory allocations by re-using Vector of chunks

Expand Down
4 changes: 2 additions & 2 deletions 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>Starling-Spatial-Deactivator</id>
<versionLabel>0.2</versionLabel>
<versionNumber>0.2</versionNumber>
<versionLabel>0.3</versionLabel>
<versionNumber>0.3</versionNumber>
<filename>Starling-Spatial-Deactivator</filename>
<name>Starling-Spatial-Deactivator</name>
<gpuPreference>discrete</gpuPreference>
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>Starling-Spatial-Deactivator-Demo</id>
<versionLabel>0.2</versionLabel>
<versionNumber>0.2</versionNumber>
<versionLabel>0.3</versionLabel>
<versionNumber>0.3</versionNumber>
<filename>Starling-Spatial-Deactivator-Demo</filename>
<name>Starling-Spatial-Deactivator-Demo</name>
<gpuPreference>discrete</gpuPreference>
Expand Down
2 changes: 1 addition & 1 deletion src/ch/adolio/deactivator/SpatialDeactivator.as
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ package ch.adolio.deactivator
public class SpatialDeactivator extends Juggler
{
// version
public static const VERSION:String = "0.2";
public static const VERSION:String = "0.3";

// State
private var _isEnable:Boolean = true;
Expand Down

0 comments on commit 97e0cf1

Please sign in to comment.