Skip to content

Commit bb91d2c

Browse files
committed
Changes name oficially by "SMM2 Level Queue Bot" in all files and updates Twitch and GitHub links
1 parent 0ff2566 commit bb91d2c

File tree

7 files changed

+27
-27
lines changed

7 files changed

+27
-27
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# SMM2 Queue
22

3-
Super Mario Maker 2 level queue system
3+
Super Mario Maker 2 Level Queue Bot

README.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
#############################
2-
# SMM2 Level Queue System #
2+
# SMM2 Level Queue Bot #
33
#############################
44
Authors: IsaacRF239 & Gabriel Rodríguez
55
License: GNU General Public License v3.0
6-
Project URL: https://github.com/IsaacRF/smm2lqs
7-
Twitch Channel: https://twitch.tv/clickandslash
6+
Project URL: https://github.com/IsaacRF/smm2-level-queue-bot
7+
Twitch Channel: https://twitch.tv/hirokurai
88
Isaac Website: https://isaacrf.com
99
Gabriel Website: https://twitter.com/gabri239
1010

1111
[English]
12-
SMM2 Level Queue System is a Streamlabs bot / script that allows viewers to queue Super Mario Maker 2 levels, while offering all sort of commands to allow mods to refresh overlay or jump to next level in queue; and viewers to see their turn in queue, list levels, etc. SMM2LQS includes an animated overlay compatible with all main stream software such as OBS, Streamlabs OBS and XSplit to visualize the current and next level in queue.
12+
SMM2 Level Queue Bot is a Streamlabs bot / script that allows viewers to queue Super Mario Maker 2 levels, while offering all sort of commands to allow mods to refresh overlay or jump to next level in queue; and viewers to see their turn in queue, list levels, etc. SMM2LQS includes an animated overlay compatible with all main stream software such as OBS, Streamlabs OBS and XSplit to visualize the current and next level in queue.
1313

1414
[Español]
15-
SMM2 Level Queue System es un bot / script de Streamlabs que permite a los usuarios añadir sus niveles a una cola, mientras que ofrece todo tipo de comandos para permitir que los moderadores hagan un refresh del overlay o salten al siguiente nivel de la cola; y a los viewers ver su turno en la cola, listar niveles, etc. SMM2LQS incluye un overlay animado compatible con cualquier software de stream, como OBS, Streamlabs OBS y XSplit, para visualizar en pantalla el nivel actual y el siguiente.
15+
SMM2 Level Queue Bot es un bot / script de Streamlabs que permite a los usuarios añadir sus niveles a una cola, mientras que ofrece todo tipo de comandos para permitir que los moderadores hagan un refresh del overlay o salten al siguiente nivel de la cola; y a los viewers ver su turno en la cola, listar niveles, etc. SMM2LQS incluye un overlay animado compatible con cualquier software de stream, como OBS, Streamlabs OBS y XSplit, para visualizar en pantalla el nivel actual y el siguiente.
1616

1717
###################################
1818
# License and conditions #
@@ -33,12 +33,6 @@ Este proyecto utiliza una licencia GNU General Public License v3.0. Esto signifi
3333

3434
Para más información sobre la licencia y las condiciones de uso, echa un vistazo al archivo LICENSE.
3535

36-
#####################
37-
# Versions #
38-
#####################
39-
1.1.0 - Adds a levels overlay and adds responses to configuration
40-
1.0.0 - Initial Release
41-
4236
#####################
4337
# Installation #
4438
#####################
@@ -97,4 +91,10 @@ NOTE 2: Advanced permission commands can only be executed by Caster or Mods by d
9791

9892
!deletelevel : Jump to the next level in queue, but lets the counters unaltered
9993

100-
!refreshlevels : Forces the overlay to refresh its data
94+
!refreshlevels : Forces the overlay to refresh its data
95+
96+
#####################
97+
# Changelog #
98+
#####################
99+
1.1.0 - Adds a levels overlay and adds responses to configuration
100+
1.0.0 - Initial Release

SMM2_Queue_StreamlabsSystem.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python
22
# -*- coding: utf-8 -*-
33
# pylint: disable=invalid-name
4-
"""SMM2 Level Queue System"""
4+
"""SMM2 Level Queue Bot"""
55

66
# ---------------------------------------
77
# Libraries and references
@@ -16,14 +16,14 @@
1616
# ---------------------------------------
1717
# [Required] Script information
1818
# ---------------------------------------
19-
ScriptName = "SMM2 Level Queue System"
20-
Website = "https://github.com/IsaacRF/smm2lqs"
19+
ScriptName = "SMM2 Level Queue Bot"
20+
Website = "https://github.com/IsaacRF/smm2-level-queue-bot"
2121
Creator = "IsaacRF239 & Gabriel Rodríguez"
22-
TwitchChannelUrl = "https://twitch.tv/clickandslash"
22+
TwitchChannelUrl = "https://twitch.tv/hirokurai"
2323
Author1Website = "https://isaacrf.com"
2424
Author2Website = "https://twitter.com/gabri239"
2525
Version = "1.1.0"
26-
Description = "Super Mario Maker 2 Level Queue System"
26+
Description = "Super Mario Maker 2 Level Queue Bot"
2727

2828
# ---------------------------------------
2929
# Versions
@@ -45,7 +45,7 @@
4545
levelCodePattern = re.compile("([A-HJ-NP-Za-hj-np-z0-9]{3})(-| )([A-HJ-NP-Za-hj-np-z0-9]{3})(-| )([A-HJ-NP-Za-hj-np-z0-9]{3})$")
4646
twitchLineBreak = "_______________________________________ "
4747
twitchLineHeader = "---------------- Cola de niveles -------------------"
48-
copyrightLine = "SMM2 Level Queue System developed by " + Creator + ". " + Website
48+
copyrightLine = "SMM2 Level Queue Bot developed by " + Creator + ". " + Website
4949
wins = 0
5050
skips = 0
5151

UI_Config.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"type": "textbox",
1919
"value": "!smm2lqs",
2020
"label": "Command Name (Info)",
21-
"tooltip": "Command to get info about SMM2 Level Queue System",
21+
"tooltip": "Command to get info about SMM2 Level Queue Bot",
2222
"group": "General"
2323
},
2424
"command_add": {
@@ -541,23 +541,23 @@
541541
"OpenHiroTwitchChannel": {
542542
"type": "button",
543543
"label": "Visit Hiro Twitch Channel",
544-
"tooltip": "Visit Hiro Twitch Channel, one of the creators of SMM2 Level Queue System",
544+
"tooltip": "Visit Hiro Twitch Channel, one of the creators of SMM2 Level Queue Bot",
545545
"function": "openCreatorTwitchChannel",
546546
"wsevent": "",
547547
"group": ""
548548
},
549549
"OpenIsaacWebsite": {
550550
"type": "button",
551551
"label": "Visit Isaac Website",
552-
"tooltip": "Visit Isaac Website, a.k.a. Hiro, one of the creators of SMM2 Level Queue System",
552+
"tooltip": "Visit Isaac Website, a.k.a. Hiro, one of the creators of SMM2 Level Queue Bot",
553553
"function": "openAuthor1Website",
554554
"wsevent": "",
555555
"group": ""
556556
},
557557
"OpenGabrielWebsite": {
558558
"type": "button",
559559
"label": "Visit Gabriel Website",
560-
"tooltip": "Visit Gabriel Rodríguez Website, one of the creators of SMM2 Level Queue System",
560+
"tooltip": "Visit Gabriel Rodríguez Website, one of the creators of SMM2 Level Queue Bot",
561561
"function": "openAuthor2Website",
562562
"wsevent": "",
563563
"group": ""

overlay/client.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! SMM2 Level Queue System v1.1.0 | https://github.com/IsaacRF/smm2lqs | (c) IsaacRF239 & Gabriel Rodríguez | License GNU GPLv3
1+
/*! SMM2 Level Queue Bot v1.1.0 | https://github.com/IsaacRF/smm2lqs | (c) IsaacRF239 & Gabriel Rodríguez | License GNU GPLv3
22
Isaac Rodríguez Fernández | https://isaacrf.com
33
Gabriel Rodríguez Fernández | https://twitter.com/Gabri239
44
*/
@@ -23,7 +23,7 @@ $(function() {
2323
// Format your Authentication Information
2424
var auth = {
2525
author: "IsaacRF239 & Gabriel Rodríguez",
26-
website: "https://github.com/IsaacRF/smm2lqs",
26+
website: "https://github.com/IsaacRF/smm2-level-queue-bot",
2727
api_key: API_Key,
2828
events: [
2929
"EVENT_SMM2QS_LEVEL_UPDATE",

overlay/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<div class="prompt">
7373
<div class="message">
7474
<p>¡Recuerda añadir tus niveles utilizando el comando <strong>!add [Código del nivel]</strong> en el chat!</p>
75-
<p>Bot y overlay desarrollados por IsaacRF239 y Gabriel Rodríguez | <strong>github.com/isaacrf/smm2lqs</strong></p>
75+
<p>Bot y overlay desarrollados por IsaacRF239 y Gabriel Rodríguez | <strong>github.com/IsaacRF/smm2-level-queue-bot</strong></p>
7676
</div>
7777
</div>
7878
</div>

overlay/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var testUsers = ['clickandslash', 'ggpalma', 'sirteclas', 'tomatefey', 'zeroretr0', 'steyb'];
1+
var testUsers = ['hirokurai', 'ggpalma', 'sirteclas', 'tomatefey', 'zeroretr0', 'steyb'];
22
var testWins = 0;
33
var testSkips = 0;
44
var testLevels = [];

0 commit comments

Comments
 (0)