Skip to content

Commit

Permalink
1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
CrazyHackGUT committed Oct 30, 2017
1 parent 3dd1736 commit 5921bbd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion extension.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ bool RipExt::SDK_OnLoad(char *error, size_t maxlength, bool late)
CURLcode res = curl_global_init(CURL_GLOBAL_ALL);
if (res != CURLE_OK)
{
smutils->Format(error, maxlength, "%s", curl_easy_strerror(res));
smutils->Format(error, maxlength, "cURL init error: %s", curl_easy_strerror(res));
return false;
}

Expand Down
10 changes: 5 additions & 5 deletions smsdk_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@

/* Basic information exposed publicly */
#define SMEXT_CONF_NAME "REST in Pawn"
#define SMEXT_CONF_DESCRIPTION "Provides HTTP and JSON natives for plugins"
#define SMEXT_CONF_VERSION "1.0.3"
#define SMEXT_CONF_AUTHOR "Tsunami"
#define SMEXT_CONF_URL "http://www.tsunami-productions.nl"
#define SMEXT_CONF_DESCRIPTION "Provides HTTP and JSON natives for plugins"
#define SMEXT_CONF_VERSION "1.0.4"
#define SMEXT_CONF_AUTHOR "Tsunami, CrazyHackGUT aka Kruzya"
#define SMEXT_CONF_URL "https://kruzefag.ru/"
#define SMEXT_CONF_LOGTAG "RIPEXT"
#define SMEXT_CONF_LICENSE "GPL"
#define SMEXT_CONF_DATESTRING __DATE__
#define SMEXT_CONF_DATESTRING __DATE__

/**
* @brief Exposes plugin's main interface.
Expand Down

0 comments on commit 5921bbd

Please sign in to comment.