mirror of
https://github.com/Sheldan/abstracto-templates.git
synced 2026-01-25 18:36:50 +00:00
Compare commits
15 Commits
templates-
...
templates-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
17dd10af10 | ||
|
|
a941d5e90a | ||
|
|
206bf06c2c | ||
|
|
6ecc487335 | ||
|
|
dedb958bae | ||
|
|
a6caac1044 | ||
|
|
1af63c0112 | ||
|
|
5710772ebd | ||
|
|
1f879167f3 | ||
|
|
7a88e1bfe9 | ||
|
|
0f94c231e7 | ||
|
|
046e71c46e | ||
|
|
ea02284189 | ||
|
|
33daa5620e | ||
|
|
5a3dfa1e7c |
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>abstracto-modules</artifactId>
|
<artifactId>abstracto-modules</artifactId>
|
||||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||||
<artifactId>abstracto-modules</artifactId>
|
<artifactId>abstracto-modules</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<artifactId>core</artifactId>
|
<artifactId>core</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
"author": { "name": "<@safe_include "delete_user_name"/>", "avatar": "https://discord.com/assets/6debd47ed13483642cf09e832ed0bc1b.png" }
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
<#include "success_color">,
|
||||||
|
"description": "
|
||||||
|
<#list profanityGroups as profanityGroup><#assign profanityGroup=profanityGroup/>
|
||||||
|
<#assign profanityGroupName>${profanityGroup.groupName?json_string}</#assign>
|
||||||
|
<@safe_include "showProfanityConfig_group_description"/>
|
||||||
|
|
||||||
|
<#list profanityGroup.profanities as profanity>
|
||||||
|
<#assign profanityRegexName>${profanity.regexName?json_string}</#assign><#assign profanityRegex>${profanity.regex?json_string}</#assign><#if profanity.replacement??><#assign profanityReplacement>${profanity.replacement?json_string}</#assign></#if>
|
||||||
|
<@safe_include "showProfanityConfig_profanity_regex_display"/><#assign profanityReplacement=""/>
|
||||||
|
|
||||||
|
<#else>
|
||||||
|
<@safe_include "showProfanityConfig_no_profanity_regex"/>
|
||||||
|
</#list>
|
||||||
|
<#else>
|
||||||
|
<@safe_include "showProfanityConfig_no_profanity_groups"/>
|
||||||
|
</#list>
|
||||||
|
"
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
<#include "abstracto_color">,
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"name": "<@safe_include "uptime_response_embed_start_date_field_title"/>",
|
||||||
|
<#assign startDate>${formatDate(startDate, "yyyy-MM-dd HH:mm:ss z")}</#assign>
|
||||||
|
"value": "${startDate}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "<@safe_include "uptime_response_embed_uptime_field_title"/>",
|
||||||
|
<#assign uptime>${fmtDuration(uptime)}</#assign>
|
||||||
|
"value": "${uptime}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<#include "profanity_group_exists_exception_text">
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<#include "profanity_group_not_found_exception_text">
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<#include "profanity_regex_exists_exception_text">
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<#include "profanity_regex_not_found_exception_text">
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>abstracto-modules</artifactId>
|
<artifactId>abstracto-modules</artifactId>
|
||||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
<#include "abstracto_color">,
|
||||||
|
<#assign mockingText=mockingText>
|
||||||
|
<#assign originalText=originalText>
|
||||||
|
"description": "<@safe_include "mock_response_text"/>",
|
||||||
|
"thumbnail": "https://i.imgur.com/upItEiG.jpg"
|
||||||
|
}
|
||||||
@@ -4,13 +4,13 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||||
<artifactId>abstracto-modules</artifactId>
|
<artifactId>abstracto-modules</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<artifactId>experience-tracking</artifactId>
|
<artifactId>experience-tracking</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>abstracto-modules</artifactId>
|
<artifactId>abstracto-modules</artifactId>
|
||||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
{
|
{
|
||||||
<#include "user_author">
|
<#if author??>
|
||||||
<@user_author user=author/>,
|
<#include "user_author">
|
||||||
|
<@user_author user=author/>
|
||||||
|
<#else>
|
||||||
|
<@safe_include "deleted_user_author"/>
|
||||||
|
</#if>,
|
||||||
<#include "abstracto_color">,
|
<#include "abstracto_color">,
|
||||||
<#if embeddedMessage.content?has_content || embeddedMessage.embeds?size gt 0>
|
<#if embeddedMessage.content?has_content || embeddedMessage.embeds?size gt 0>
|
||||||
"description": "${embeddedMessage.content?json_string}
|
"description": "${embeddedMessage.content?json_string}
|
||||||
@@ -14,6 +18,10 @@
|
|||||||
</#if>
|
</#if>
|
||||||
<#if embeddedMessage.attachments?size gt 0>
|
<#if embeddedMessage.attachments?size gt 0>
|
||||||
"imageUrl": "${embeddedMessage.attachments[0].proxyUrl}",
|
"imageUrl": "${embeddedMessage.attachments[0].proxyUrl}",
|
||||||
|
<#elseif embeddedMessage.attachments?size = 0 && embeddedMessage.embeds?size gt 0 && embeddedMessage.embeds[0].cachedThumbnail??>
|
||||||
|
"imageUrl": "${embeddedMessage.embeds[0].cachedThumbnail.proxyUrl}",
|
||||||
|
<#elseif embeddedMessage.attachments?size = 0 && embeddedMessage.embeds?size gt 0 && embeddedMessage.embeds[0].cachedImageInfo??>
|
||||||
|
"imageUrl": "${embeddedMessage.embeds[0].cachedImageInfo.proxyUrl}",
|
||||||
</#if>
|
</#if>
|
||||||
"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
@@ -23,6 +31,15 @@
|
|||||||
<#assign messageLink>${embeddedMessage.messageUrl}</#assign>
|
<#assign messageLink>${embeddedMessage.messageUrl}</#assign>
|
||||||
"value": "<@safe_include "message_embed_embed_quoted_by_field_value"/>"
|
"value": "<@safe_include "message_embed_embed_quoted_by_field_value"/>"
|
||||||
}
|
}
|
||||||
|
<#if embeddedMessage.referencedMessage??>
|
||||||
|
,
|
||||||
|
{
|
||||||
|
<#assign referencedMessageLink=embeddedMessage.referencedMessage.messageUrl/>
|
||||||
|
<#assign repliedToAuthorMention>${r"<@"}${embeddedMessage.referencedMessage.author.authorId?c}${r">"}</#assign>
|
||||||
|
"name": "<@safe_include "message_embed_embed_referenced_message_field_title"/>",
|
||||||
|
"value": "<@safe_include "message_embed_embed_referenced_message_field_value"/>"
|
||||||
|
}
|
||||||
|
</#if>
|
||||||
],
|
],
|
||||||
"timeStamp": "${embeddedMessage.timeCreated}"
|
"timeStamp": "${embeddedMessage.timeCreated}"
|
||||||
}
|
}
|
||||||
@@ -4,13 +4,13 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||||
<artifactId>abstracto-modules</artifactId>
|
<artifactId>abstracto-modules</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<artifactId>moderation</artifactId>
|
<artifactId>moderation</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||||
<artifactId>abstracto-modules</artifactId>
|
<artifactId>abstracto-modules</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<artifactId>modmail</artifactId>
|
<artifactId>modmail</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|||||||
@@ -4,14 +4,14 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.sheldan.abstracto-templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates</groupId>
|
||||||
<artifactId>templates</artifactId>
|
<artifactId>templates</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||||
<artifactId>abstracto-modules</artifactId>
|
<artifactId>abstracto-modules</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>core</module>
|
<module>core</module>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>abstracto-modules</artifactId>
|
<artifactId>abstracto-modules</artifactId>
|
||||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|||||||
@@ -5,16 +5,21 @@
|
|||||||
"title": {
|
"title": {
|
||||||
"title": "<@safe_include "reminders_reminders_embed_title"/>"
|
"title": "<@safe_include "reminders_reminders_embed_title"/>"
|
||||||
},
|
},
|
||||||
"fields": [
|
<#if reminders?size = 0>
|
||||||
<#list reminders as reminder><#assign reminder=reminder/>
|
"description": "<@safe_include "reminders_no_reminders"/>"
|
||||||
{
|
<#else>
|
||||||
<#assign id>${reminder.id}</#assign>
|
"fields": [
|
||||||
<#assign reminderTargetDate>${formatDate(reminder.targetDate,"yyyy-MM-dd HH:mm:ss")}</#assign>
|
<#list reminders as reminderDisplay><#assign reminderDisplay=reminderDisplay/>
|
||||||
<#assign reminderText=reminder.text/>
|
{
|
||||||
"name": "<@safe_include "reminders_reminder_field_title"/>",
|
<#assign id>${reminderDisplay.reminder.id}</#assign>
|
||||||
"value": "<@safe_include "reminders_due_on"/>"
|
<#assign reminderTargetDate>${formatDate(reminderDisplay.reminder.targetDate,"yyyy-MM-dd HH:mm:ss")}</#assign>
|
||||||
}
|
<#assign reminderText=reminderDisplay.reminder.text/>
|
||||||
<#sep>,
|
<#assign messageLink=reminderDisplay.message.jumpUrl/>
|
||||||
</#list>
|
"name": "<@safe_include "reminders_reminder_field_title"/>",
|
||||||
]
|
"value": "<@safe_include "reminders_due_on"/>"
|
||||||
|
}
|
||||||
|
<#sep>,
|
||||||
|
</#list>
|
||||||
|
]
|
||||||
|
</#if>
|
||||||
}
|
}
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>abstracto-modules</artifactId>
|
<artifactId>abstracto-modules</artifactId>
|
||||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>abstracto-modules</artifactId>
|
<artifactId>abstracto-modules</artifactId>
|
||||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|||||||
@@ -1,13 +1,17 @@
|
|||||||
{
|
{
|
||||||
<#include "user_author">
|
<#if author??>
|
||||||
<@user_author user=author/>,
|
<#include "user_author">
|
||||||
|
<@user_author user=author/>
|
||||||
|
<#else>
|
||||||
|
<@safe_include "deleted_user_author"/>
|
||||||
|
</#if>,
|
||||||
<#include "abstracto_color">,
|
<#include "abstracto_color">,
|
||||||
<#if message.content?has_content || message.embeds?size gt 0>
|
<#if message.content?has_content || message.embeds?size gt 0>
|
||||||
"description": "${message.content?json_string}
|
"description": "${message.content?json_string}
|
||||||
<#list message.embeds>
|
<#list message.embeds>
|
||||||
<@safe_include "starboard_post_embed_embeds_name"/>:
|
<@safe_include "starboard_post_embed_embeds_name"/>:
|
||||||
<#items as embed>
|
<#items as embed>
|
||||||
<@safe_include "starboard_post_embed_description"/>: ${embed.description?json_string} <#if embed.imageUrl?has_content> <@safe_include "starboard_post_embed_image_url"/>: ${embed.imageUrl} </#if>
|
<#if embed.description??> <@safe_include "starboard_post_embed_description"/>: ${embed.description?json_string} </#if> <#if embed.imageUrl?has_content> <@safe_include "starboard_post_embed_image_url"/>: ${embed.imageUrl} </#if>
|
||||||
</#items>
|
</#items>
|
||||||
</#list>
|
</#list>
|
||||||
",
|
",
|
||||||
@@ -20,12 +24,16 @@
|
|||||||
"additionalMessage": "<@safe_include "starboard_post_embed_additional_message"/>"
|
"additionalMessage": "<@safe_include "starboard_post_embed_additional_message"/>"
|
||||||
<#else>
|
<#else>
|
||||||
<#assign channelMention>${sourceChannelId?c}</#assign>
|
<#assign channelMention>${sourceChannelId?c}</#assign>
|
||||||
,"additionalMessage": "<@safe_include "starboard_post_embed_additional_message"/>"
|
"additionalMessage": "<@safe_include "starboard_post_embed_additional_message"/>"
|
||||||
</#if>
|
</#if>,
|
||||||
<#if message.attachments?size gt 0>
|
<#if message.attachments?size gt 0>
|
||||||
,"imageUrl": "${message.attachments[0].proxyUrl}"
|
"imageUrl": "${message.attachments[0].proxyUrl}",
|
||||||
|
<#elseif message.attachments?size = 0 && message.embeds?size gt 0 && message.embeds[0].cachedThumbnail??>
|
||||||
|
"imageUrl": "${message.embeds[0].cachedThumbnail.proxyUrl}",
|
||||||
|
<#elseif message.attachments?size = 0 && message.embeds?size gt 0 && message.embeds[0].cachedImageInfo??>
|
||||||
|
"imageUrl": "${message.embeds[0].cachedImageInfo.proxyUrl}",
|
||||||
</#if>
|
</#if>
|
||||||
,"fields": [
|
"fields": [
|
||||||
{
|
{
|
||||||
"name": "<@safe_include "starboard_post_embed_original_field_title"/>"
|
"name": "<@safe_include "starboard_post_embed_original_field_title"/>"
|
||||||
<#if channel?has_content>
|
<#if channel?has_content>
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||||
<artifactId>abstracto-modules</artifactId>
|
<artifactId>abstracto-modules</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<artifactId>statistic</artifactId>
|
<artifactId>statistic</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>abstracto-modules</artifactId>
|
<artifactId>abstracto-modules</artifactId>
|
||||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||||
<artifactId>abstracto-modules</artifactId>
|
<artifactId>abstracto-modules</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<artifactId>utility</artifactId>
|
<artifactId>utility</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>abstracto-modules</artifactId>
|
<artifactId>abstracto-modules</artifactId>
|
||||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|||||||
4
pom.xml
4
pom.xml
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
<groupId>dev.sheldan.abstracto-templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates</groupId>
|
||||||
<artifactId>templates</artifactId>
|
<artifactId>templates</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>abstracto-modules</module>
|
<module>abstracto-modules</module>
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
<scm>
|
<scm>
|
||||||
<url>https://maven.pkg.github.com/Sheldan/abstracto-templates</url>
|
<url>https://maven.pkg.github.com/Sheldan/abstracto-templates</url>
|
||||||
<developerConnection>scm:git:git@github.com:Sheldan/abstracto-templates.git</developerConnection>
|
<developerConnection>scm:git:git@github.com:Sheldan/abstracto-templates.git</developerConnection>
|
||||||
<tag>templates-1.2.2</tag>
|
<tag>templates-1.2.4</tag>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>translations</artifactId>
|
<artifactId>translations</artifactId>
|
||||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
<artifactId>translations</artifactId>
|
<artifactId>translations</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<artifactId>core</artifactId>
|
<artifactId>core</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
Creates a profanity regex with optional replacement in a profanity group
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
This command can be used to create a profanity regex which can be used to detect and replace profanities (or any text).
|
||||||
|
A profanity regex consists of a profanity name (to identify it), a [regex](https://docs.oracle.com/javase/tutorial/essential/regex/) and an optional replacement.
|
||||||
|
The name of a regex is unique within its profanity group.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
The name of the profanity group this profanity regex should be added to
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
The name which should identify this regex
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
The regex which should find the words to replace
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
The optional replacement string, if not provided, found text will be replaced with ""
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Creates a profanity group
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
This command can be used to create a profanity group. This profanity group can then be used to group profanity regexes together.
|
||||||
|
The name needs to be unique per server and deleting the group deletes all of the profanities in this group.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
The name which should identify this profanity group on this server
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Deletes a profanity group
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Deletes the profanity group and all the profanity regexes which are associated with it.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
The name of the profanity group to delete
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Deletes a profanity regex
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Deletes a profanity regex in a specified profanity group identified by its name.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
The name of the profanity group in which the profanity regex to delete is in
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
The name of the profanity regex to delete
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Shows an overview about the current profanity check configuration
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
This command is used to show the profanity groups and the profanity regexes in this server.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Profanity group: ${profanityGroupName}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
No configuration
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
No profanity regexes
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
${profanityRegexName}: `${profanityRegex}` <#if profanityReplacement?has_content>replaced with ${profanityReplacement}</#if>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Shows the uptime of the bot
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
This command is used to show the uptime and the start date of the bot
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Start date
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Uptime
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Profanity group exists already.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Profanity group not found
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Profanity regex already exists
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Profanity regex not found
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Deleted user
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>translations</artifactId>
|
<artifactId>translations</artifactId>
|
||||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
Mocks a given text or message
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
This command can be used to mock a text or a message. In order to mock a text, you need to provide the text as a parameter to the command.
|
||||||
|
If you want to mock a specific message, you need to reply to that message when executing this command. In case both are present, the message reply has precedence.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
The text to mock or a message which has been replied to
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
${mockingText}
|
||||||
@@ -4,13 +4,13 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
<artifactId>translations</artifactId>
|
<artifactId>translations</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<artifactId>experience-tracking</artifactId>
|
<artifactId>experience-tracking</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>translations</artifactId>
|
<artifactId>translations</artifactId>
|
||||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
Replied to
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
[message](${referencedMessageLink}) by ${repliedToAuthorMention}
|
||||||
@@ -4,13 +4,13 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
<artifactId>translations</artifactId>
|
<artifactId>translations</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<artifactId>moderation</artifactId>
|
<artifactId>moderation</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
<artifactId>translations</artifactId>
|
<artifactId>translations</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<artifactId>modmail</artifactId>
|
<artifactId>modmail</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|||||||
@@ -4,14 +4,14 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.sheldan.abstracto-templates</groupId>
|
<groupId>dev.sheldan.abstracto-templates</groupId>
|
||||||
<artifactId>templates</artifactId>
|
<artifactId>templates</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
<artifactId>translations</artifactId>
|
<artifactId>translations</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>core</module>
|
<module>core</module>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>translations</artifactId>
|
<artifactId>translations</artifactId>
|
||||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
Due on ${reminderTargetDate} with text ${reminderText}
|
Due on ${reminderTargetDate} with text `${reminderText}` started [here](${messageLink})
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
No reminders.
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>translations</artifactId>
|
<artifactId>translations</artifactId>
|
||||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>translations</artifactId>
|
<artifactId>translations</artifactId>
|
||||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
<artifactId>translations</artifactId>
|
<artifactId>translations</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<artifactId>statistic</artifactId>
|
<artifactId>statistic</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>translations</artifactId>
|
<artifactId>translations</artifactId>
|
||||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
<artifactId>translations</artifactId>
|
<artifactId>translations</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<artifactId>utility</artifactId>
|
<artifactId>utility</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
<artifactId>translations</artifactId>
|
<artifactId>translations</artifactId>
|
||||||
<version>1.2.2</version>
|
<version>1.2.4</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|||||||
Reference in New Issue
Block a user