Page 23 of 28

Re: Distributing your games (making a .love file)

Posted: Thu Jul 31, 2014 9:11 pm
by tio
You can compile code using luac (on official Lua page).
Or you can crypt your files and decrypt them the time you load them.

edit:
(still, the code that decrypts files need to be decrypted so it's pretty much pointless).

Re: Distributing your games (making a .love file)

Posted: Mon Aug 18, 2014 9:59 pm
by Rukiri
I know how to make a .love file/project but how do I make a .exe, or .dmg, or random linux executable?

Re: Distributing your games (making a .love file)

Posted: Tue Aug 19, 2014 12:16 pm
by tio
Rukiri wrote:I know how to make a .love file/project but how do I make a .exe, or .dmg, or random linux executable?
http://love2d.org/wiki/Game_Distribution ;)

Re: Distributing your games (making a .love file)

Posted: Sun Oct 05, 2014 4:39 pm
by Rucikir
Rukiri wrote:I know how to make a .love file/project but how do I make a .exe, or .dmg, or random linux executable?
If you're using OS X or Linux, try love-release.sh, a Bash script that can do all of these, and much more.
On Github | Forum thread.

Re: Distributing your games (making a .love file)

Posted: Sat Oct 25, 2014 4:13 pm
by R-BG
I appear to have a problem with my MacOSX distribution (Löve 0.9.1).
It runs fine on MacOSX 10.9.4, but there is a problem with 10.10.

See: http://blau.gr/up/file/5115/errormessage.jpg

Are there any known problems about this?

Re: Distributing your games (making a .love file)

Posted: Sun Oct 26, 2014 7:27 pm
by slime
I'm not able to test on Yosemite at the moment, but your issue might have to do with the symlinks in the Frameworks folder inside your .app all being resolved or broken, rather than staying preserved (i.e. what happened here.)

Re: Distributing your games (making a .love file)

Posted: Mon May 04, 2015 4:14 pm
by Bindie
When making a love file, does it automatically lowe case all image adresses and such? Such as love.graphics.newImage(image, "Assets/Player/Still.png") to "assets/player/still.png"?

Re: Distributing your games (making a .love file)

Posted: Mon May 04, 2015 4:19 pm
by Robin
No? You need to take care that the cases in the filenames in the .love and the filenames in your code match.

Re: Distributing your games (making a .love file)

Posted: Mon May 04, 2015 4:37 pm
by Bindie
Ok.

Re: Distributing your games (making a .love file)

Posted: Mon May 04, 2015 5:07 pm
by Bindie
So, I have made a love file. I want to make it .exe. I tried this sentence within CMD: copy /b love.exe+SuperGame.love SuperGame.exe

However, where should I put my .love file and the love.exe? Alternatively, how do I specify the adress within the command line?