Skip to content
This repository has been archived by the owner on Jun 11, 2020. It is now read-only.

Commit

Permalink
increased version to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluscream committed Jan 12, 2018
1 parent 1225656 commit 8a1346b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions TS3Hook/Ts3Plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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() {
Expand Down

0 comments on commit 8a1346b

Please sign in to comment.