Skip to content

Commit

Permalink
Fixing syntax error. Removing test style. Updating version to push live.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Fujiwara committed Sep 17, 2011
1 parent a9cdd08 commit 2dab236
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
2 changes: 1 addition & 1 deletion SWFWireInspector/src/classes/SWFWireInspector-app.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<name>SWFWire Inspector</name>

<!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->
<versionNumber>2.20</versionNumber>
<versionNumber>2.21</versionNumber>

<!-- Description, displayed in the AIR application installer.
May have multiple values for each language. See samples or xsd schema file. Optional. -->
Expand Down
12 changes: 4 additions & 8 deletions SWFWireInspector/src/classes/SWFWireInspector.mxml
Original file line number Diff line number Diff line change
Expand Up @@ -811,6 +811,7 @@
}
.kwd {
color: #0033ff;
font-weight: bold;
}
.com {
color: #009900;
Expand All @@ -821,11 +822,8 @@
color: #3f5fbf;
}
.typ {
color: #0000ff;
font-weight: bold;
font-family: Arial;
font-size: 16px;
font-style: italic;
color: #000000;
font-weight: normal;
}
.lit {
color: #000000;
Expand All @@ -840,9 +838,7 @@
}
.pln {
color: #000000;
font-weight: bold;
font-family: Arial;
font-size: 16px;
font-weight: normal;
}
.tag {
color: #000088;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2082,7 +2082,7 @@ package com.swfwire.decompiler.utils
lines.push(' stack: ' + stack.stackinfo);
lines.push(' local: ' + locals.names.join(', '));
}
var hassourcefornow:Boolean = (source.length > 0) && source.split('\n').some((function(a:String):Boolean { return (a.length>0) && !/^\/\//.test(a); } ));
var hassourcefornow:Boolean = (source.length > 0) && source.split('\n').some((function(a:String, ...args):Boolean { return (a.length>0) && !/^\/\//.test(a); } ));
if(hassourcefornow)
{
if (!hassource)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package com.swfwire.inspector
public class Config
{
public static const TESTING:Boolean = false;
public static const VERSION:String = '2.20';
public static const VERSION:String = '2.21';
}
}

0 comments on commit 2dab236

Please sign in to comment.