diff options
author | Aki <nthirtyone@gmail.com> | 2017-10-03 18:24:07 +0200 |
---|---|---|
committer | Aki <nthirtyone@gmail.com> | 2017-10-03 18:24:07 +0200 |
commit | 832fd64e1011ace02139843b4c2a871b25376866 (patch) | |
tree | 448d5beb3f77e4a25be87b75dcdfcad142598db6 /conf.lua | |
parent | de1ab188d737ef731f4ad08788424b802814f1e7 (diff) | |
download | roflnauts-832fd64e1011ace02139843b4c2a871b25376866.zip roflnauts-832fd64e1011ace02139843b4c2a871b25376866.tar.gz roflnauts-832fd64e1011ace02139843b4c2a871b25376866.tar.bz2 |
Updated conf and makefile to use love-release
Diffstat (limited to 'conf.lua')
-rw-r--r-- | conf.lua | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -1,12 +1,17 @@ --- Game configuration -function love.conf(t) +function love.conf (t) t.title = "Roflnauts 2" t.version = "0.10.2" t.window.width = 320 t.window.height = 180 - -- t.window.borderless = true t.identity = "not-nautz" - -- t.window.fullscreentype = "desktop" - -- t.window.fullscreen = true t.console = false + t.releases = { + title = t.title, + identifier = t.identity, + package = "roflnauts", + author = "The Roflnauts 2 Team", + email = "nthirtyone@gmail.com", + description = "Fan made sequel to Roflnauts.", + homepage = "https://github.com/nthirtyone/roflnauts" + } end |