Commit Graph

2355 Commits

Author SHA1 Message Date
Lars A. Doucet
af809f06d4 proper cpp || neko guard for CFFI 2016-01-01 14:11:39 -08:00
Lars A. Doucet
3644008132 Implementing BitmapData.threshold() natively for massive speedup - 95% reduction in time taken 2016-01-01 14:11:25 -08:00
Joshua Granick
91dd2b13cc Remove debug messages 2016-01-01 14:08:25 -08:00
Joshua Granick
da9600efd5 Fix crash in OGG load on newer Android toolchain 2016-01-01 14:01:31 -08:00
Joshua Granick
a9bed580b3 Use previous buffer structure 2016-01-01 13:12:40 -08:00
Joshua Granick
2b952d2dc3 Bytes fix 2016-01-01 11:17:02 -08:00
Joshua Granick
40aaff6e8f Fix -notrace flag 2015-12-31 18:26:16 -08:00
Joshua Granick
cd4d4a8f43 Fix race condition in lime_image_load, lime_audio_load 2015-12-31 14:42:20 -08:00
Joshua Granick
4dc0aa3db4 Remove old ByteArray CPP class 2015-12-31 14:41:54 -08:00
James Gray
2e5d4e10fc console: add notImplemented to audio property stubs 2015-12-29 22:11:59 -06:00
James Gray
2cbcebe810 add lime.Lib.notImplemented 2015-12-29 22:11:58 -06:00
James Gray
15727db9d8 console: rename fmod.Sound to fmod.FMODSound 2015-12-29 22:11:49 -06:00
James Gray
3acee68e61 console: add finalizer for fmod.Sound in AudioBuffer 2015-12-29 22:10:43 -06:00
James Gray
68530b46c1 cleanup 2015-12-29 22:07:06 -06:00
James Gray
07f82f6c60 console: add a few blend states 2015-12-29 22:00:35 -06:00
James Gray
dce801ca99 tools: fix for rebuild -final 2015-12-29 21:54:41 -06:00
James Gray
871e375da3 ensure cairo cffi links with STATIC_LINK 2015-12-29 21:50:13 -06:00
James Gray
5a5c10db36 console: handle Assets.embedBytes/embedByteArray 2015-12-29 21:33:04 -06:00
James Gray
08c7a3a8d9 console: assign RendererType 2015-12-29 21:30:33 -06:00
Joshua Granick
f319a56b65 Remove js/Boot override, Haxe 3.2 resolves the key issue 2015-12-29 13:01:29 -08:00
Joshua Granick
48334337b8 Help improve support for builds with no <source path='' /> 2015-12-28 18:23:46 -08:00
Joshua Granick
b0942baa9b Do not add -cp if path is empty (implied for Haxe builds) 2015-12-28 16:26:55 -08:00
Joshua Granick
3159486032 Add +x file permissions to command alias 2015-12-28 15:26:54 -08:00
Joshua Granick
a0e03e6b35 Improve use of tools without haxelib 2015-12-28 13:43:53 -08:00
Joshua Granick
bc30dc7645 Merge pull request #652 from ImaginationSydney/master
add cross domain image loading support
2015-12-17 13:03:07 -08:00
Joshua Granick
14620f0871 Fix previous setup behavior 2015-12-17 10:25:17 -08:00
P.J.Shand
603457892c add cross domain image loading support 2015-12-17 14:29:58 +11:00
Joshua Granick
a8eeb76a01 Update CHANGELOG 2.8.2 2015-12-16 14:17:16 -08:00
Joshua Granick
fe920bf015 Update to 2.8.2 2015-12-16 14:17:11 -08:00
Joshua Granick
763552ca12 Build fix 2015-12-16 13:47:22 -08:00
Joshua Granick
4f965053da Merge pull request #649 from jobs-git/patch-6
Fixes Icon Issue on Neko Cross Compile Linux to Windows, fix openfl/lime#626
2015-12-16 12:47:53 -08:00
Joshua Granick
4fccca5da2 Use default key commands for desktop fullscreen, Android back button exit 2015-12-16 11:26:25 -08:00
Joshua Granick
d98f2724e1 Add support for event canceling 2015-12-16 11:25:52 -08:00
Joshua Granick
bd629f3a45 Update iOS system font path (remove 'Cache' from path) 2015-12-15 15:39:21 -08:00
Joshua Granick
38a6c4433c Merge pull request #651 from ProPuke/fix-ios-legacy-font-loading
fixed: font paths inconsistent between iOS installs
2015-12-15 15:35:48 -08:00
Joshua Granick
f79640e766 Default to HTML5/WebGL, respect window.hardware on HTML5 to disable WebGL support, don't use alpha on HTML5 WebGL canvas 2015-12-15 15:30:01 -08:00
ProPuke
00d4bdcee8 fixed: fonts paths inconsistent between iOS installs
Both Core/ and CoreAddition/ must be searched as they seem to vary
between iOS version and individual device
2015-12-15 22:22:03 +00:00
Joshua Granick
d56528ed0f Compile fix 2015-12-14 23:02:07 -08:00
Joshua Granick
3feb02ae68 Update AudioSource with timer changes on set currentTime or length 2015-12-14 15:10:46 -08:00
Joshua Granick
9acf835d55 Build fix 2015-12-14 11:20:58 -08:00
Joshua Granick
9b69214dea Fix decode on Android 2015-12-14 11:11:19 -08:00
Joshua Granick
7e1b122d1b Add a few more things to the default Android ADB filter 2015-12-14 11:06:53 -08:00
Joshua Granick
887bb118b7 Allow <window resizable='false' /> in default HTML5 template 2015-12-11 14:18:07 -08:00
Dominic Guana
0edb173227 Fixes Icon Issue on Neko Cross Compile Linux to Windows, fix openfl/lime#626
During Cross-Compile from Linux to Windows, Neko Compilation chain will normally call into ReplaceVistaIcon.exe, unfortunately, EXE files are not native applications of NON-Windows systems, thus a permission issue occurs.

By indicating to the Source Code that ReplaceVistaIcon.exe be called only when it detected Windows systems through 

    PlatformHelper.hostPlatform == Platform.WINDOWS

The issue is fixed.
2015-12-11 01:31:55 +08:00
Dominic Guana
1a78613d77 Fixes Icon Issue on Neko Cross Compile Linux to Windows, fix openfl/lime#626
During Cross-Compile from Linux to Windows, Neko Compilation chain will normally call into ReplaceVistaIcon.exe, unfortunately, EXE files are not native applications of NON-Windows systems, thus a permission issue occurs.

By indicating to the Source Code that ReplaceVistaIcon.exe be called only when it detected Windows systems through 

    PlatformHelper.hostPlatform == Platform.WINDOWS

The issue is fixed.
2015-12-11 01:20:01 +08:00
Dominic Guana
5cdfc4cbc5 Fixes Icon Issue on Neko Cross Compile Linux to Windows, fix openfl/lime#626
During Cross-Compile from Linux to Windows, Neko Compilation chain will normally call into ReplaceVistaIcon.exe, unfortunately, EXE files are not native applications of NON-Windows systems, thus a permission issue occurs.

By indicating to the Source Code that ReplaceVistaIcon.exe be called only when it detected Windows systems through 

   PlatformHelper.hostPlatform == Platform.WINDOWS

The issue is fixed.
2015-12-11 01:17:14 +08:00
Joshua Granick
bf8f0a77c1 Merge pull request #647 from larsiusprime/angle_altenter
updated ANGLE binaries that disable ALT+ENTER fullscreen -- this now …
2015-12-09 21:24:03 -08:00
Lars A. Doucet
63ae694ba1 updated ANGLE binaries that disable ALT+ENTER fullscreen -- this now causes Alt+Enter fullscreen behavior to work properly, as openfl takes care of this instead of ANGLE 2015-12-09 22:12:41 -06:00
Joshua Granick
c14f94f84c Update CHANGELOG 2.8.1 2015-12-09 15:15:51 -08:00
Joshua Granick
1972dafd85 Update to 2.8.1 2015-12-09 15:15:45 -08:00