Commit b6aae49b1cc51e10b38e48aae812fb64ed5c8f93

Authored by Geoffrey PREUD'HOMME
1 parent 35820c9d

Release

Showing 2 changed files with 13 additions and 1 deletions   Show diff stats
game/.gitignore 0 → 100644
... ... @@ -0,0 +1 @@
  1 +releases
... ...
game/conf.lua
... ... @@ -6,4 +6,15 @@ function love.conf(t)
6 6 t.screen.width = 800
7 7 t.screen.height = 640
8 8 t.screen.fsaa = 0
9   -end
10 9 \ No newline at end of file
  10 + t.releases = {
  11 + title = "Trosh Club Info", -- The project title (string)
  12 + package = "TroshCI", -- The project command and package name (string)
  13 + loveVersion = "0.8.0", -- The project LÖVE version
  14 + version = "1.1.0", -- The project version
  15 + author = "Club Info Polytech Lille", -- Your name (string)
  16 + email = "Club.Informatique@polytech-lille.fr", -- Your email (string)
  17 + description = "Jeu Trosh modifié par le Club Informatique", -- The project description (string)
  18 + homepage = "http://clubinfo.plil.net/trosh", -- The project homepage (string)
  19 + identifier = "com.ClubInfoPolytechLille.trosh", -- The project Uniform Type Identifier (string)
  20 + }
  21 +end
... ...