Skip to content

Commit

Permalink
Updated built-in plugins to v1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason committed Apr 18, 2019
1 parent 5b9d608 commit 731606f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion plugins/bot_commands/bot_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Plugin(PluginBase):
<b>!reboot/!restart</b>: Completely stops the bot and restarts it.<br>\
<b>!about</b>: Displays the bots about screen.<br>\
<b>!spam_test</b>: Spams 10 test messages in the channel. This is an admin-only command.<br>"
plugin_version = "1.8.0"
plugin_version = "1.8.1"
priv_path = "bot_commands/bot_commands_privileges.csv"

def __init__(self):
Expand Down
2 changes: 1 addition & 1 deletion plugins/help/help.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Plugin(PluginBase):
<b>!images_help/!img_help</b>: Displays the images plugin help screen.<br>\
<b>!randomizer_help</b>: Displays the randomizer plugin help screen.<br>\
<b>!uptime_help</b> Displays the uptime plugin help screen.<br>"
plugin_version = "1.8.0"
plugin_version = "1.8.1"
priv_path = "help/help_privileges.csv"
bot_plugins = {}

Expand Down
2 changes: 1 addition & 1 deletion plugins/images/images.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Plugin(PluginBase):
<b>!post 'image_url'</b>: Posts the image from the url in the channel chat.<br>\
<b>!img 'image_name'</b>: Posts locally hosted images in the channel chat. The image must be a jpg.<br>\
<b>!imglist</b>: Lists all locally hosted images."
plugin_version = "1.8.0"
plugin_version = "1.8.1"
priv_path = "images/images_privileges.csv"

def __init__(self):
Expand Down
2 changes: 1 addition & 1 deletion plugins/sound_board/sound_board.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Plugin(PluginBase):
<b>!sbstop/!sbs</b>: Stops the currently playing sound board track.<br>\
<b>!sbdownload 'youtube_url' 'file_name'</b>: Downloads a sound clip from a youtube link and adds it to the sound board.<br>\
<b>!sbdelete 'file_name.wav'</b>: Deletes a clip from the sound board storage. Be sure to specify the .wav extension."
plugin_version = "1.8.0"
plugin_version = "1.8.1"
priv_path = "sound_board/sound_board_privileges.csv"

exit_flag = False
Expand Down
2 changes: 1 addition & 1 deletion plugins/youtube/youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Plugin(PluginBase):
<b>!queue/!q</b>: Displays the youtube queue.<br>\
<b>!song</b>: Shows currently playing track.<br>\
<b>!clear</b>: Clears the current youtube queue.<br>"
plugin_version = "1.8.0"
plugin_version = "1.8.1"
priv_path = "youtube/youtube_privileges.csv"

ydl_opts = {
Expand Down

0 comments on commit 731606f

Please sign in to comment.