Commit 3ced5b2837aa7dc3bee4377193eb750b118c5cdf
1 parent
8bb75a8c
bump
git-svn-id: http://svn.net-core.org/repos/t-engine4@1992 51575b47-30f0-44d4-a5cc-537603b46e54
Showing
6 changed files
with
8 additions
and
8 deletions
... | ... | @@ -18,7 +18,7 @@ |
18 | 18 | -- darkgod@te4.org |
19 | 19 | |
20 | 20 | -- Engine Version |
21 | -engine.version = {0,9,14,"te4",6} | |
21 | +engine.version = {0,9,15,"te4",7} | |
22 | 22 | engine.require_c_core = engine.version[5] |
23 | 23 | engine.version_id = ("%s-%d_%d.%d.%d"):format(engine.version[4], engine.require_c_core, engine.version[1], engine.version[2], engine.version[3]) |
24 | 24 | ... | ... |
... | ... | @@ -23,8 +23,8 @@ short_name = "boot" |
23 | 23 | author = { "DarkGod", "darkgod@te4.org" } |
24 | 24 | homepage = "http://te4.org/" |
25 | 25 | is_boot = true |
26 | -version = {0,9,14} | |
27 | -engine = {0,9,14,"te4"} | |
26 | +version = {0,9,15} | |
27 | +engine = {0,9,15,"te4"} | |
28 | 28 | description = [[ |
29 | 29 | Bootmenu! |
30 | 30 | ]] | ... | ... |
... | ... | @@ -23,7 +23,7 @@ short_name = "example" |
23 | 23 | author = { "DarkGod", "darkgod@te4.org" } |
24 | 24 | homepage = "http://te4.org/modules:example" |
25 | 25 | version = {1,0,0} |
26 | -engine = {0,9,14,"te4"} | |
26 | +engine = {0,9,15,"te4"} | |
27 | 27 | description = [[ |
28 | 28 | This is *NOT* a game, just an example/template to make your own using the T-Engine4. |
29 | 29 | ]] | ... | ... |
... | ... | @@ -23,7 +23,7 @@ short_name = "example_realtime" |
23 | 23 | author = { "DarkGod", "darkgod@te4.org" } |
24 | 24 | homepage = "http://te4.org/modules:example" |
25 | 25 | version = {1,0,0} |
26 | -engine = {0,9,14,"te4"} | |
26 | +engine = {0,9,15,"te4"} | |
27 | 27 | description = [[ |
28 | 28 | This is *NOT* a game, just an example/template to make your own using the T-Engine4. |
29 | 29 | ]] | ... | ... |
... | ... | @@ -22,8 +22,8 @@ long_name = "Tales of Maj'Eyal: Age of Ascendancy" |
22 | 22 | short_name = "tome" |
23 | 23 | author = { "DarkGod", "darkgod@te4.org" } |
24 | 24 | homepage = "http://tome.te4.org/" |
25 | -version = {3,9,14} | |
26 | -engine = {0,9,14,"te4"} | |
25 | +version = {3,9,15} | |
26 | +engine = {0,9,15,"te4"} | |
27 | 27 | description = [[ |
28 | 28 | Welcome to Maj'Eyal. |
29 | 29 | ... | ... |
... | ... | @@ -2346,7 +2346,7 @@ int luaopen_core(lua_State *L) |
2346 | 2346 | |
2347 | 2347 | luaL_openlib(L, "core.game", gamelib, 0); |
2348 | 2348 | lua_pushstring(L, "VERSION"); |
2349 | - lua_pushnumber(L, 6); | |
2349 | + lua_pushnumber(L, 7); | |
2350 | 2350 | lua_settable(L, -3); |
2351 | 2351 | |
2352 | 2352 | luaL_openlib(L, "rng", rnglib, 0); | ... | ... |
-
Please register or login to post a comment