diff --git a/README.md b/README.md index 681f67c..c573791 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -YALP v0.5 +YALP v1.0 ========== _YALP_, short for _Yet Another Lua Plugin_, aims to be a simple yet extendable SA-MP plugin allowing to use [Lua](https://www.lua.org/) for SA-MP server programming. diff --git a/pawno/include/YALP.inc b/pawno/include/YALP.inc index fe816ec..71c24d6 100644 --- a/pawno/include/YALP.inc +++ b/pawno/include/YALP.inc @@ -1,4 +1,4 @@ -/** YALP v0.5 by IllidanS4 **/ +/** YALP v1.0 by IllidanS4 **/ //github.com/IllidanS4/YALP #if defined _inc_YALP diff --git a/plugins/src/lua_api.cpp b/plugins/src/lua_api.cpp index c7a15c8..2ecc327 100644 --- a/plugins/src/lua_api.cpp +++ b/plugins/src/lua_api.cpp @@ -449,7 +449,7 @@ static int open_base(lua_State *L) { luaopen_base(L); - lua::pushliteral(L, "YALP 0.2"); + lua::pushliteral(L, "YALP 1.0"); lua_setfield(L, -2, "YALP_VERSION"); lua_pushcfunction(L, custom_print); diff --git a/plugins/src/main.cpp b/plugins/src/main.cpp index e742284..2052f85 100644 --- a/plugins/src/main.cpp +++ b/plugins/src/main.cpp @@ -28,7 +28,7 @@ PLUGIN_EXPORT bool PLUGIN_CALL Load(void **ppData) hooks::load(); - logprintf(" YALP v0.5 loaded"); + logprintf(" YALP v1.0 loaded"); logprintf(" Created by IllidanS4"); return true; } @@ -39,7 +39,7 @@ PLUGIN_EXPORT void PLUGIN_CALL Unload() lua::remote::close(); hooks::unload(); - logprintf(" YALP v0.5 unloaded"); + logprintf(" YALP v1.0 unloaded"); } PLUGIN_EXPORT int PLUGIN_CALL AmxLoad(AMX *amx)