diff --git a/CHANGELOG.md b/CHANGELOG.md index 653e432ac..adc9531a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -540,7 +540,7 @@ All notable changes to this project will be documented in this file. - [#2077] AS3 direct editation - switch statement missing offset - [#2077] AS3 allow star string as property name (XML access) - [#2077] AS3 try..catch parts outside block -- AS3 try..catch inside loop unneccessary continue +- AS3 try..catch inside loop unnecessary continue - [#2077] AS3 colliding types in current package with trait names - NullPointer on reload / uncache - [#2076] Auto rename identifiers infinite loop caused by renaming in playerglobal library @@ -1740,7 +1740,7 @@ Major version of SWF to XML export changed to 2. - Changed /bin/bash to /usr/bin/env bash - Building does not require Naashorn - uses Beanshell instead - Use object.§§slot[index] syntax instead of /* UnknownSlot */ comment when slot cannot be determined (AS3) -- Show §§findproperty when neccessary (AS3) +- Show §§findproperty when necessary (AS3) ### Fixed - Scaling - Distorted images/canvas on Hi-dpi monitors for Java 9 and later @@ -2395,7 +2395,7 @@ Major version of SWF to XML export changed to 2. ## [4.0.4] - 2014-11-23 ### Changed -- better file cache, removing unneccessary temp files +- better file cache, removing unnecessary temp files ### Fixed - obfuscated identifiers diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/PreDecrementAVM2Item.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/PreDecrementAVM2Item.java index 4d0b3883c..852633007 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/PreDecrementAVM2Item.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/PreDecrementAVM2Item.java @@ -41,7 +41,7 @@ public class PreDecrementAVM2Item extends UnaryOpItem implements AssignmentAVM2I * @param object Object */ public PreDecrementAVM2Item(GraphSourceItem instruction, GraphSourceItem lineStartIns, GraphTargetItem object) { - super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "--", "" /*"Number" Causes unneccessary ++Number(xx) when xx not number*/); + super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "--", "" /*"Number" Causes unnecessary ++Number(xx) when xx not number*/); } @Override diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/PreIncrementAVM2Item.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/PreIncrementAVM2Item.java index a7c62e0ee..4d650be54 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/PreIncrementAVM2Item.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/model/operations/PreIncrementAVM2Item.java @@ -40,7 +40,7 @@ public class PreIncrementAVM2Item extends UnaryOpItem { * @param object Object */ public PreIncrementAVM2Item(GraphSourceItem instruction, GraphSourceItem lineStartIns, GraphTargetItem object) { - super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "++", "" /*"Number" Causes unneccessary ++Number(xx) when xx not number*/); + super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "++", "" /*"Number" Causes unnecessary ++Number(xx) when xx not number*/); } @Override diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/model/operations/PreDecrementActionItem.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/model/operations/PreDecrementActionItem.java index 64b721097..ddb3b2cbe 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/model/operations/PreDecrementActionItem.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/model/operations/PreDecrementActionItem.java @@ -52,7 +52,7 @@ public class PreDecrementActionItem extends UnaryOpItem { * @param object Object */ public PreDecrementActionItem(GraphSourceItem instruction, GraphSourceItem lineStartIns, GraphTargetItem object) { - super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "--", "" /*"Number" Causes unneccessary ++Number(xx) when xx not number*/); + super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "--", "" /*"Number" Causes unnecessary ++Number(xx) when xx not number*/); } @Override diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/model/operations/PreIncrementActionItem.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/model/operations/PreIncrementActionItem.java index d25c26802..a20e71399 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/model/operations/PreIncrementActionItem.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/model/operations/PreIncrementActionItem.java @@ -53,7 +53,7 @@ public class PreIncrementActionItem extends UnaryOpItem { * @param object Object */ public PreIncrementActionItem(GraphSourceItem instruction, GraphSourceItem lineStartIns, GraphTargetItem object) { - super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "++", "" /*"Number" Causes unneccessary ++Number(xx) when xx not number*/); + super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "++", "" /*"Number" Causes unnecessary ++Number(xx) when xx not number*/); } @Override diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/amf/amf3/types/DictionaryType.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/amf/amf3/types/DictionaryType.java index 82488a3d9..41ea1d3ef 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/amf/amf3/types/DictionaryType.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/amf/amf3/types/DictionaryType.java @@ -49,7 +49,7 @@ public class DictionaryType extends ListMap implements WithSubVa */ public DictionaryType(boolean weakKeys, Map entries) { super(true /*IdentityMap*/, entries); - this.weakKeys = weakKeys; //TODO? Really make the Map weak - something like WeakIdentityMap - but is it neccessary for serialization? + this.weakKeys = weakKeys; //TODO? Really make the Map weak - something like WeakIdentityMap - but is it necessary for serialization? } @Override diff --git a/resources/com.jpexs.decompiler.flash.metainfo.xml b/resources/com.jpexs.decompiler.flash.metainfo.xml index fd5706d59..320f4215a 100644 --- a/resources/com.jpexs.decompiler.flash.metainfo.xml +++ b/resources/com.jpexs.decompiler.flash.metainfo.xml @@ -631,7 +631,7 @@
  • #2077 AS3 direct editation - switch statement missing offset
  • #2077 AS3 allow star string as property name (XML access)
  • #2077 AS3 try..catch parts outside block
  • -
  • AS3 try..catch inside loop unneccessary continue
  • +
  • AS3 try..catch inside loop unnecessary continue
  • #2077 AS3 colliding types in current package with trait names
  • NullPointer on reload / uncache
  • #2076 Auto rename identifiers infinite loop caused by renaming in playerglobal library
  • diff --git a/src/com/jpexs/decompiler/flash/console/help.txt b/src/com/jpexs/decompiler/flash/console/help.txt index 37a57cda1..efbdadb69 100644 --- a/src/com/jpexs/decompiler/flash/console/help.txt +++ b/src/com/jpexs/decompiler/flash/console/help.txt @@ -346,7 +346,7 @@ Pre-options: Values for : f5,mx,mx2004,f8,cs3,cs4,cs5,cs5.5,cs6,cc You can set multiple formats at once using comma (,) DO NOT PUT space between comma (,) and next value. - The prefix with colon (:) is neccessary. + The prefix with colon (:) is necessary. -cli Applies to: main diff --git a/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties b/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties index a772db554..a3743c526 100644 --- a/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties +++ b/src/com/jpexs/decompiler/flash/gui/locales/MainFrame.properties @@ -872,7 +872,7 @@ contextmenu.addScript.doinitaction = Add sprite init script - DoInitAction warning.cannotencrypt = WARNING: The file %file% was encrypted using HARMAN Air encryption.\r\nIt was successfully decrypted to be loaded, but if you want to save modified file later,\r\nthe encryption will be stripped ( = not encrypted). #after 18.5.0 warning.edit.headerframecount = WARNING: Editing frame count in the header does not update \ - neccessary number of ShowFrame tags on SWF timeline.\r\nTo add new frames, you should better use right click context menu on SWF -> Add frames,\r\n\ + necessary number of ShowFrame tags on SWF timeline.\r\nTo add new frames, you should better use right click context menu on SWF -> Add frames,\r\n\ which will update the frame count in the header accordingly. warning.icon = Click to show related warning button.export = Export