Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jayarjo committed Nov 29, 2016
1 parent c56f4c0 commit 54a0e4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/moxie
Submodule moxie updated 96 files
+2 −0 .gitattributes
+1 −0 .gitignore
+2 −2 .jshintrc
+71 −23 Jakefile.js
+8 −6 README.md
+ bin/flash/Moxie.cdn.swf
+ bin/flash/Moxie.min.swf
+ bin/flash/Moxie.swf
+20 −25 bin/js/moxie.dev.js
+2,326 −2,000 bin/js/moxie.js
+6 −6 bin/js/moxie.min.js
+ bin/silverlight/Moxie.cdn.xap
+ bin/silverlight/Moxie.min.xap
+ bin/silverlight/Moxie.xap
+1 −6 bower.json
+112 −62 build/mkjs.js
+127 −0 build/mknuget.js
+41 −20 build/tools.js
+10 −0 build/utils.js
+23 −14 build/wiki.js
+622 −300 license.txt
+69 −50 package.json
+1 −1 src/flash/.actionScriptProperties
+15 −0 src/flash/.project
+12 −17 src/flash/src/Moxie.as
+42 −26 src/flash/src/com/FileInput.as
+65 −100 src/flash/src/com/Image.as
+258 −69 src/flash/src/com/ImageEditor.as
+16 −0 src/flash/src/com/events/ImageEditorEvent.as
+35 −0 src/flash/src/com/utils/OEventDispatcher.as
+ src/flash/src/shaders/BicubicScale.pbj
+75 −0 src/flash/src/shaders/BicubicScale.pbk
+ src/flash/src/shaders/BilinearScale.pbj
+26 −0 src/flash/src/shaders/BilinearScale.pbk
+ src/flash/src/shaders/NearestNeighbourScale.pbj
+25 −0 src/flash/src/shaders/NearestNeighbourScale.pbk
+299 −262 src/javascript/core/EventTarget.js
+7 −2 src/javascript/core/Exceptions.js
+3 −0 src/javascript/core/I18n.js
+179 −72 src/javascript/core/utils/Basic.js
+4 −0 src/javascript/core/utils/Encode.js
+5 −4 src/javascript/core/utils/Mime.js
+1 −1 src/javascript/file/Blob.js
+1 −1 src/javascript/file/File.js
+1 −1 src/javascript/file/FileDrop.js
+60 −14 src/javascript/file/FileInput.js
+1 −1 src/javascript/file/FileReader.js
+1 −1 src/javascript/file/FileReaderSync.js
+193 −49 src/javascript/image/Image.js
+2 −2 src/javascript/runtime/Runtime.js
+27 −6 src/javascript/runtime/RuntimeClient.js
+1 −1 src/javascript/runtime/RuntimeTarget.js
+5 −0 src/javascript/runtime/Transporter.js
+4 −1 src/javascript/runtime/dropbox/Runtime.js
+4 −1 src/javascript/runtime/flash/Runtime.js
+0 −1 src/javascript/runtime/flash/file/FileInput.js
+4 −2 src/javascript/runtime/flash/xhr/XMLHttpRequest.js
+4 −1 src/javascript/runtime/html4/Runtime.js
+36 −11 src/javascript/runtime/html4/file/FileInput.js
+11 −4 src/javascript/runtime/html5/Runtime.js
+56 −10 src/javascript/runtime/html5/file/FileInput.js
+89 −132 src/javascript/runtime/html5/image/Image.js
+0 −134 src/javascript/runtime/html5/image/MegaPixel.js
+55 −0 src/javascript/runtime/html5/image/ResizerCanvas.js
+210 −0 src/javascript/runtime/html5/image/ResizerWebGL.js
+0 −1 src/javascript/runtime/html5/utils/BinaryReader.js
+1 −1 src/javascript/runtime/silverlight/Runtime.js
+17 −9 src/javascript/runtime/silverlight/file/FileInput.js
+4 −0 src/javascript/runtime/silverlight/image/Image.js
+4 −2 src/javascript/runtime/silverlight/xhr/XMLHttpRequest.js
+0 −72 src/javascript/runtime/test/Runtime.js
+0 −43 src/javascript/runtime/test/file/FileInput.js
+0 −160 src/javascript/runtime/test/xhr/XMLHttpRequest.js
+1 −1 src/javascript/xhr/FormData.js
+69 −57 src/javascript/xhr/XMLHttpRequest.js
+17 −5 src/silverlight/Com/Errors/RuntimeError.cs
+17 −3 src/silverlight/Com/FileInput.cs
+46 −180 src/silverlight/Com/Image.cs
+468 −0 src/silverlight/MXI/Image/BitmapContext.cs
+214 −0 src/silverlight/MXI/Image/BitmapFactory.cs
+629 −0 src/silverlight/MXI/Image/WriteableBitmapExtension.cs
+3 −7 src/silverlight/Moxie.csproj
+6 −2 src/silverlight/Moxie.xaml.cs
+1 −1 src/silverlight/Properties/AssemblyInfo.cs
+59 −0 tests/auto/FileInput.html
+4 −4 tests/auto/Image.html
+31 −3 tests/auto/Runtime.html
+176 −0 tests/auto/Utils/Basic.html
+1 −1 tests/auto/Utils/Mime.html
+112 −95 tests/auto/XHR.html
+20 −1 tests/auto/runtimes/flash/Runtime.html
+252 −0 tests/js/test-runtime.js
+7 −2 tests/loader.js
+68 −0 tests/manual/runtimes/flash/FileInput.html
+3 −9 tests/manual/runtimes/html4/FileInput.html
+68 −0 tests/manual/runtimes/silverlight/FileInput.html

0 comments on commit 54a0e4e

Please sign in to comment.