From 8a1346bdb6f7d0f229dc95eb568a23b0cd398691 Mon Sep 17 00:00:00 2001 From: Bluscream Date: Fri, 12 Jan 2018 22:59:59 +0100 Subject: [PATCH] increased version to 1.1.1 --- TS3Hook/Ts3Plugin.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/TS3Hook/Ts3Plugin.cpp b/TS3Hook/Ts3Plugin.cpp index 84021dd..b388531 100644 --- a/TS3Hook/Ts3Plugin.cpp +++ b/TS3Hook/Ts3Plugin.cpp @@ -5,7 +5,7 @@ #define PLUGIN_API_VERSION 22 const char* ts3plugin_name() { return "TS3Hook"; } -const char* ts3plugin_version() { return "1.0"; } +const char* ts3plugin_version() { return "1.1.1"; } int ts3plugin_apiVersion() { int target = -1; @@ -29,11 +29,13 @@ int ts3plugin_apiVersion() { return target; } -const char* ts3plugin_author() { return "Splamy"; } +const char* ts3plugin_author() { return "Splamy, Bluscream, alex720, exp111"; } const char* ts3plugin_description() { return "Prints command packets on the console.\n\nhttps://github.com/ReSpeak/TS3Hook"; } void ts3plugin_setFunctionPointers(void* funcs) { } int ts3plugin_init() { + printf("-= %s v%s =-\n", ts3plugin_name(), ts3plugin_version()); + printf("-= Written by %s =-\n", ts3plugin_author()); return core_hook() ? 0 : 1; } void ts3plugin_shutdown() {