Skip to content

Commit

Permalink
release v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Sreyas-Sreelal committed Jul 12, 2020
1 parent 82c604d commit 518844f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tgconnector"
version = "0.3.1"
version = "0.3.2"
authors = ["Sreyas-Sreelal"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion include/tgconnector.inc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#endif
#define _tgconnector_included

#define TGCONNECTOR_VERSION 31
#define TGCONNECTOR_VERSION 32
#define INVALID_MESSAGE_ID (TGMessage:-1)
#define INVALID_BOT_ID (TGBot:-1)

Expand Down
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ initialize_plugin!(
TgConnector::get_chat_description
],
{
samp::plugin::enable_process_tick();
let samp_logger = samp::plugin::logger()
.level(log::LevelFilter::Info);

Expand All @@ -48,7 +49,7 @@ initialize_plugin!(
.apply();

TgConnector {
plugin_version: 31,
plugin_version: 32,
amx_list: Vec::new(),
bots: HashMap::new(),
bot_context_id: 0,
Expand Down
4 changes: 2 additions & 2 deletions src/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl SampPlugin for TgConnector {
"
###############################################################
# TGConnector #
# v0.3.1 #
# v0.3.2 #
# Found any bugs? Report it here: #
# https://github.com/Sreyas-Sreelal/tgconnector/issues #
# #
Expand All @@ -35,7 +35,7 @@ impl SampPlugin for TgConnector {
}

fn on_unload(self: &mut TgConnector) {
info!("**TGConnector v0.3.1!");
info!("**TGConnector v0.3.2!");
}

fn on_amx_load(&mut self, amx: &Amx) {
Expand Down

0 comments on commit 518844f

Please sign in to comment.