Skip to content

Commit

Permalink
0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ellraiser committed Apr 27, 2024
1 parent 47e8690 commit c517516
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

# this builds the 'example-project' game for all 3 OS's using the builder
# we use love12 to run the builder, however the game is built with 11.5

name: continuous-integration
on: [push, pull_request]
Expand Down Expand Up @@ -109,4 +110,4 @@ jobs:
if: always()
run: |
kill $XVFBPID
kill $OPENBOXPID
kill $OPENBOXPID
2 changes: 1 addition & 1 deletion build.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- using love-build to build love-build, nice
return {
name = 'love-build',
version = '0.4',
version = '0.5',
love = '12.0',
icon = 'resources/love-hammer.png',
identifier = 'com.love.build',
Expand Down
4 changes: 2 additions & 2 deletions conf.lua
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
function love.conf(t)
t.console = true
t.window.title = "Love Builder v0.4"
t.window.title = "Love Builder v0.5"
t.window.width = 640
t.window.height = 320
t.window.resizable = true
t.renderers = {"opengl"}
t.window.icon = 'resources/love-hammer.png'
end
end
2 changes: 1 addition & 1 deletion example-project/conf.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
function love.conf(t)
t.window.title = "Example Project"
end
end
3 changes: 2 additions & 1 deletion todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@
- running with window disabled for pure CLI version, this is possible BUT
`love-icon` + `love-exedit` both rely on love.graphics for resizing stuff
so we'd need to recreate the functionality without it, or make people provide
all sizes+formats of icons which isn't nice
all sizes+formats of icons which isn't nice

0 comments on commit c517516

Please # to comment.