Search found 7 matches

by gigimoi
Sun Apr 07, 2013 3:53 pm
Forum: Libraries and Tools
Topic: Project Manager
Replies: 0
Views: 1611

Project Manager

Simple python script which creates a nice programming environment and file structure to work with.

Requires Python 2.7

Source w/o data
Download v0.1
by gigimoi
Sun Apr 07, 2013 3:24 pm
Forum: Support and Development
Topic: Making an Exe out of a .love file
Replies: 5
Views: 3484

Re: Making an Exe out of a .love file

Huh, that's an odd way to handle it, but certainty correct and tested.
by gigimoi
Sun Apr 07, 2013 2:06 pm
Forum: Support and Development
Topic: Making an Exe out of a .love file
Replies: 5
Views: 3484

Making an Exe out of a .love file

In http://www.love2d.org/wiki/Game_Distribution , the wiki states that to create a .exe out of a .love file, you run the line "copy /b love.exe+game.love game.exe" in the command line.

What exactly is "copy /b love.exe+game.love game.exe" doing to produce an executable?
by gigimoi
Thu Jul 26, 2012 9:39 am
Forum: Support and Development
Topic: Distributing for linux... Runs the game slave.
Replies: 7
Views: 4534

Re: Distributing for linux... Runs the game slave.

bartbes wrote:There's been some known issues with folder having the same name as the executable
Upon renaming the binary to asdfghjkl, nothing has changed.
bartbes wrote:if not, are you sure your .love is packaged correctly?
The .love file runs correctly.
by gigimoi
Thu Jul 26, 2012 4:57 am
Forum: Support and Development
Topic: Distributing for linux... Runs the game slave.
Replies: 7
Views: 4534

Re: Distributing for linux... Runs the game slave.

I'd advise against distributing games on linux that way. The biggest problem you'd encounter is that the version you built the game on (say Ubuntu 12.04) almost certainly wouldn't run on Fedora or Arch, or even Ubuntu 11.10. It'd be similar to how things made for Windows7 probably wouldn't run on W...
by gigimoi
Wed Jul 25, 2012 10:44 pm
Forum: Support and Development
Topic: What's bad about a Canvas?
Replies: 14
Views: 10111

Re: What's bad about a Canvas?

No linux OS can use the canvas, to my knowledge.

I'm running Ubuntu 12.04 and as soon as the canvas is used, I will get an error, same for Fedora and Lindows. On Windows, I have no trouble.
by gigimoi
Wed Jul 25, 2012 9:48 pm
Forum: Support and Development
Topic: Distributing for linux... Runs the game slave.
Replies: 7
Views: 4534

Distributing for linux... Runs the game slave.

Build.sh #!/bin/bash zip -r ${PWD##*/}.love *.png *.lua Package.sh #!/bin/bash cat /usr/bin/love ${PWD##*/}.love > ${PWD##*/} && chmod +x ${PWD##*/} main.lua require "TLpath" require "TLfrez" function love.draw() love.graphics.print("Hello World", 0, 0) TLfres.t...