Love 0.9.0* with Luajit 2.0.1
It's probably only safe for testing new features. I'm sure the official 0.9.0 isn't too far away now. Props to the Love team for making their project easy to build.
* See here for changes.
LÖVE 0.8.0 Released
- slime
- Solid Snayke
- Posts: 3166
- Joined: Mon Aug 23, 2010 6:45 am
- Location: Nova Scotia, Canada
- Contact:
Re: LÖVE 0.8.0 Released
Keep in mind it's quite possible for any existing 0.9.0 addition to be removed or changed at any time before 0.9.0's release.
Also, there are a few things which aren't in 0.9.0 yet but are planned to be.
Also, there are a few things which aren't in 0.9.0 yet but are planned to be.
- Jasoco
- Inner party member
- Posts: 3727
- Joined: Mon Jun 22, 2009 9:35 am
- Location: Pennsylvania, USA
- Contact:
Re: LÖVE 0.8.0 Released
Does anyone have a Mac version possibly? I'd be interested in playing with 0.9.0, but running it on Windows for me is slow as moles asses in winter because it's in a VM. Or maybe simple instructions on how to compile it myself in Xcode?szensk wrote:Love 0.9.0* with Luajit 2.0.1
It's probably only safe for testing new features. I'm sure the official 0.9.0 isn't too far away now. Props to the Love team for making their project easy to build.
* See here for changes.
- Hexenhammer
- Party member
- Posts: 175
- Joined: Sun Feb 17, 2013 8:19 am
Re: LÖVE 0.8.0 Released
Thanks!szensk wrote:Love 0.9.0* with Luajit 2.0.1
EDIT: The Luajit 2.0.1 build includes the hotfix, right?
- slime
- Solid Snayke
- Posts: 3166
- Joined: Mon Aug 23, 2010 6:45 am
- Location: Nova Scotia, Canada
- Contact:
Re: LÖVE 0.8.0 Released
https://dl.dropbox.com/u/4214717/love-0.9.0-osx-pre.zipJasoco wrote:Does anyone have a Mac version possibly? I'd be interested in playing with 0.9.0, but running it on Windows for me is slow as moles asses in winter because it's in a VM. Or maybe simple instructions on how to compile it myself in Xcode?szensk wrote:Love 0.9.0* with Luajit 2.0.1
It's probably only safe for testing new features. I'm sure the official 0.9.0 isn't too far away now. Props to the Love team for making their project easy to build.
* See here for changes.
LuaJIT not included (yet), however.
- Jasoco
- Inner party member
- Posts: 3727
- Joined: Mon Jun 22, 2009 9:35 am
- Location: Pennsylvania, USA
- Contact:
Re: LÖVE 0.8.0 Released
Darn. I'm also having strange problems getting my current project updated for it. (Every time I fix one problem another comes up) Might be best to wait until it's completely documented first.slime wrote:https://dl.dropbox.com/u/4214717/love-0.9.0-osx-pre.zipJasoco wrote:Does anyone have a Mac version possibly? I'd be interested in playing with 0.9.0, but running it on Windows for me is slow as moles asses in winter because it's in a VM. Or maybe simple instructions on how to compile it myself in Xcode?szensk wrote:Love 0.9.0* with Luajit 2.0.1
It's probably only safe for testing new features. I'm sure the official 0.9.0 isn't too far away now. Props to the Love team for making their project easy to build.
* See here for changes.
LuaJIT not included (yet), however.
- Hexenhammer
- Party member
- Posts: 175
- Joined: Sun Feb 17, 2013 8:19 am
Re: LÖVE 0.8.0 Released
New LoveJIT build for Windows (x86)
I made this build for distributing my own stuff but some may find it useful.
LÖVE 0.8.0
+ ATI fix (https://bitbucket.org/rude/love/commits ... 670a232ae5)
+ LuaJIT 2.0.1 hotfixed
Download Link: http://www.mediafire.com/?qr6r2mv15k72vso
I made this build for distributing my own stuff but some may find it useful.
LÖVE 0.8.0
+ ATI fix (https://bitbucket.org/rude/love/commits ... 670a232ae5)
+ LuaJIT 2.0.1 hotfixed
Download Link: http://www.mediafire.com/?qr6r2mv15k72vso
-
- Prole
- Posts: 5
- Joined: Sat Aug 27, 2011 10:21 pm
Re: LÖVE 0.8.0 Released
I am not sure where to post this (as there was no information listed), but I looked at the examples file given for Love 8.0, and I like the variety. The one thing I am curious about is how to make a text entry system. No one appears to have focused on text entry at all, that I've found, and it would be a nice example to put in the example file. For example, say I make a ship and want to name it, I don't want to press virtual keys with my mouse. I'd rather type it with my keyboard. How would I go about doing that? I assume I can append every pressed key to a string and refresh the string. I know that would work well enough, but has anyone thought about the GUI for that? A text box with word-wrap? Or has anyone already implemented that? I'd be curious to know.
Re: LÖVE 0.8.0 Released
Both Quickie and Love Frames have library functions for single line input which can be used to name things.
https://www.love2d.org/wiki/L%C3%B6ve_Frames
https://www.love2d.org/wiki/Quickie
There is also a more powerful Rich Text library but I think that's still under construction so it might not be stable.
https://github.com/gvx/richtext
See if any of those work for you
https://www.love2d.org/wiki/L%C3%B6ve_Frames
https://www.love2d.org/wiki/Quickie
There is also a more powerful Rich Text library but I think that's still under construction so it might not be stable.
https://github.com/gvx/richtext
See if any of those work for you
-
- Prole
- Posts: 5
- Joined: Sat Aug 27, 2011 10:21 pm
Re: LÖVE 0.8.0 Released
Thanks. I still think text entry and text display systems should be hard coded in some way into Love, and it would still be nice or an example of this in the example program. Surprisingly, I found both Love Frames and Quickie before I saw this post. Quickie was nice, but Love Frames looked better for what I was doing, so I will stick with that, I think. I appreciate your help. I also saw RichText, but it is still pretty buggy looking.Plu wrote:Both Quickie and Love Frames have library functions for single line input which can be used to name things.
https://www.love2d.org/wiki/L%C3%B6ve_Frames
https://www.love2d.org/wiki/Quickie
There is also a more powerful Rich Text library but I think that's still under construction so it might not be stable.
https://github.com/gvx/richtext
See if any of those work for you
Who is online
Users browsing this forum: No registered users and 7 guests