Skip to content

Commit

Permalink
v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
IS4Code committed Feb 18, 2019
1 parent 0d02405 commit efedf04
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pawno/include/YALP.inc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** YALP v0.5 by IllidanS4 **/
/** YALP v1.0 by IllidanS4 **/
//github.com/IllidanS4/YALP

#if defined _inc_YALP
Expand Down
2 changes: 1 addition & 1 deletion plugins/src/lua_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions plugins/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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)
Expand Down

0 comments on commit efedf04

Please sign in to comment.