Search found 245 matches

by kalle2990
Sun Mar 11, 2012 5:52 pm
Forum: LÖVE-Android
Topic: Guide: Building love-native-android
Replies: 44
Views: 45983

Re: Guide: Building love-native-android

It appears that love-native-android cannot be compiled on Windows with the current version of the NDK. When compiling on Windows, the compiler fails with this exception Unhandled exception filter called from program C:\Users\Patrik\android-ndk-r7b\\prebuilt\windows\bin\make.exe ExceptionCode = c000...
by kalle2990
Thu Dec 22, 2011 9:53 am
Forum: LÖVE-Android
Topic: State of the attempt to natively port love to android
Replies: 137
Views: 76934

Re: State of the attempt to natively port love to android

I am not sure. but I planned to check the license stuff, upload the code and prepare an alpha apk within the next weeks. Okay, that seems fair :) Would be quite sad if the licenses got messed up.. Not entirely sure about the ins and outs of the Android Market, but is there any way that LOVE could g...
by kalle2990
Wed Dec 21, 2011 7:21 pm
Forum: LÖVE-Android
Topic: State of the attempt to natively port love to android
Replies: 137
Views: 76934

Re: State of the attempt to natively port love to android

Really happy to see that the progress is going further and further, good work! :ultrahappy:
How long is it untill we see a beta apk?
by kalle2990
Mon Dec 19, 2011 10:43 pm
Forum: LÖVE-Android
Topic: State of the attempt to natively port love to android
Replies: 137
Views: 76934

Re: State of the attempt to natively port love to android

T-Bone wrote:The standard Android bar should preferably be optional. The grey one should be sealed away into the depths of Mordor.
I'm glad I'm not the only one to hate that ugly creation.. :?
by kalle2990
Sun Dec 18, 2011 11:20 pm
Forum: LÖVE-Android
Topic: State of the attempt to natively port love to android
Replies: 137
Views: 76934

Re: State of the attempt to natively port love to android

hagish wrote:I managed to successfully start native love on android :). The no game screen works and looks good.
Next thing is trying to start a game.
Awesome news! :D How's performance vs the Java LÖVE?
by kalle2990
Sun Dec 18, 2011 4:38 pm
Forum: LÖVE-Android
Topic: love-java-android/love-native-android: project information
Replies: 72
Views: 107721

Re: love-android: project information

So the only difference between this and what's currently implemented is that you have to move the file from /dropbox to /love. ? Yes, but since Android is based upon Linux, it should be possible to symlink from the /sdcard/dropbox folder to the /sdcard/love one, so one does not have to move the fil...
by kalle2990
Sat Dec 17, 2011 5:21 pm
Forum: LÖVE-Android
Topic: State of the attempt to natively port love to android
Replies: 137
Views: 76934

Re: State of the attempt to natively port love to android

So LOVEly to see progress on the nLove port for Android when I get back from a long period of inactiveness.. ^^ I assume that these stacklogs are the native errors telling nearly nothing about the problem, but which library it comes from(?) I got some of those back in the days I was getting nLove to...
by kalle2990
Thu May 26, 2011 3:59 pm
Forum: Support and Development
Topic: Filesystem Hack: Set Identity to Whatever You Want
Replies: 35
Views: 10939

Re: Filesystem Hack: Set Identity to Whatever You Want

Okay, I have tested the new version on Ubuntu now and it seems to be working just fine. It features detection of Linux desktops without gnome and Macs, and opening of files for them ^^

Please tell me how it runs on OSX ;)
by kalle2990
Thu May 26, 2011 6:23 am
Forum: Support and Development
Topic: Filesystem Hack: Set Identity to Whatever You Want
Replies: 35
Views: 10939

Re: Filesystem Hack: Set Identity to Whatever You Want

This should detect Windows / Linux / Darwin (and probably other unix-likes, such as OpenBSD or Windows+MingGW): function platform() -- returns 'Windows', 'Linux' or 'Darwin' if package.config:sub(1,1) == '\\' then return 'Windows' end return io.popen("uname -s"):read("*l") end I...
by kalle2990
Tue May 24, 2011 3:43 pm
Forum: Support and Development
Topic: Filesystem Hack: Set Identity to Whatever You Want
Replies: 35
Views: 10939

Re: Filesystem Hack: Set Identity to Whatever You Want

Don't think so, XDG is what is now freedesktop.org is. They work on interoperability for desktop environments using X. Mac doesn't use X, so it doesn't work with that. OS X does provide the similar command " open ", though. Yeah, I read that the Mac command is "open" somewhere, ...