bumped cargo version. tagged info commands with pkg name and version

This commit is contained in:
jude 2020-10-20 09:13:55 +01:00
parent c0be97115c
commit c90bb1fc07
3 changed files with 45 additions and 5 deletions

2
Cargo.lock generated
View File

@ -1165,7 +1165,7 @@ dependencies = [
[[package]] [[package]]
name = "reminder_rs" name = "reminder_rs"
version = "0.1.0" version = "0.1.3"
dependencies = [ dependencies = [
"Inflector", "Inflector",
"async-trait", "async-trait",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "reminder_rs" name = "reminder_rs"
version = "0.1.0" version = "0.1.3"
authors = ["jellywx <judesouthworth@pm.me>"] authors = ["jellywx <judesouthworth@pm.me>"]
edition = "2018" edition = "2018"

View File

@ -45,7 +45,18 @@ async fn help(ctx: &Context, msg: &Message, _args: String) -> CommandResult {
msg.channel_id msg.channel_id
.send_message(ctx, |m| { .send_message(ctx, |m| {
m.embed(move |e| e.title("Help").description(desc).color(*THEME_COLOR)) m.embed(move |e| {
e.title("Help")
.description(desc)
.footer(|f| {
f.text(concat!(
env!("CARGO_PKG_NAME"),
" ver ",
env!("CARGO_PKG_VERSION")
))
})
.color(*THEME_COLOR)
})
}) })
.await?; .await?;
@ -75,7 +86,18 @@ async fn info(ctx: &Context, msg: &Message, _args: String) -> CommandResult {
msg.channel_id msg.channel_id
.send_message(ctx, |m| { .send_message(ctx, |m| {
m.embed(move |e| e.title("Info").description(desc).color(*THEME_COLOR)) m.embed(move |e| {
e.title("Info")
.description(desc)
.footer(|f| {
f.text(concat!(
env!("CARGO_PKG_NAME"),
" ver ",
env!("CARGO_PKG_VERSION")
))
})
.color(*THEME_COLOR)
})
}) })
.await?; .await?;
@ -97,7 +119,18 @@ async fn donate(ctx: &Context, msg: &Message, _args: String) -> CommandResult {
msg.channel_id msg.channel_id
.send_message(ctx, |m| { .send_message(ctx, |m| {
m.embed(move |e| e.title("Donate").description(desc).color(*THEME_COLOR)) m.embed(move |e| {
e.title("Donate")
.description(desc)
.footer(|f| {
f.text(concat!(
env!("CARGO_PKG_NAME"),
" ver ",
env!("CARGO_PKG_VERSION")
))
})
.color(*THEME_COLOR)
})
}) })
.await?; .await?;
@ -111,6 +144,13 @@ async fn dashboard(ctx: &Context, msg: &Message, _args: String) -> CommandResult
m.embed(move |e| { m.embed(move |e| {
e.title("Dashboard") e.title("Dashboard")
.description("https://reminder-bot.com/dashboard") .description("https://reminder-bot.com/dashboard")
.footer(|f| {
f.text(concat!(
env!("CARGO_PKG_NAME"),
" ver ",
env!("CARGO_PKG_VERSION")
))
})
.color(*THEME_COLOR) .color(*THEME_COLOR)
}) })
}) })