mirror of
https://github.com/Sheldan/abstracto-templates.git
synced 2026-01-04 00:37:19 +00:00
Compare commits
17 Commits
templates-
...
templates-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a6cc2931d0 | ||
|
|
c03514873e | ||
|
|
471d171da6 | ||
|
|
67d64af318 | ||
|
|
3e76d39f58 | ||
|
|
88ea5c8e17 | ||
|
|
f273bd0872 | ||
|
|
3b471e2daf | ||
|
|
6a187c9016 | ||
|
|
95cba127b8 | ||
|
|
1dfb6e2517 | ||
|
|
1f5336728a | ||
|
|
5ec86f0647 | ||
|
|
c020e9353f | ||
|
|
319850ff39 | ||
|
|
34e255b87a | ||
|
|
71870a4a98 |
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -4,13 +4,13 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<artifactId>core</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
<#assign totalMines=mineCount>
|
||||
<#assign userLost=state.name() == "LOST">
|
||||
<#assign userWon=state.name() == "WON">
|
||||
<#assign ended=userLost || userWon>
|
||||
<#if creditsEnabled>
|
||||
<#assign changedCreditAmount=creditChange/>
|
||||
<#assign creditAmount=credits/>
|
||||
<#assign stateText><#if state.name() == "WON"><#include "mines_state_won_credits"><#elseif state.name() == "LOST"><#include "mines_state_lost_credits"><#else><#include "mines_state_continue_credits"></#if></#assign>
|
||||
<#else>
|
||||
<#assign stateText><#if state.name() == "WON"><#include "mines_state_won"><#elseif state.name() == "LOST"><#include "mines_state_lost"><#else><#include "mines_state_continue"></#if></#assign>
|
||||
</#if>
|
||||
"additionalMessage": "<@safe_include "mines_additional_message"/>",
|
||||
"buttons": [
|
||||
<#list rows as row>
|
||||
<#list row.fields as field>
|
||||
{
|
||||
<#if ended>
|
||||
<#assign label><#if field.counterValue != 0>${field.counterValue}<#elseif field.type.name() == "EXPLODED">💀<#elseif field.type.name() == "MINE">💣<#elseif field.type.name() == "UNCOVERED">o</#if></#assign>
|
||||
<#else>
|
||||
<#assign label><#if field.type.name() == "COVERED" || field.type.name() == "MINE">x<#elseif field.counterValue != 0>${field.counterValue}<#else>o</#if></#assign>
|
||||
</#if>
|
||||
"label": "${label}",
|
||||
"id": "${boardId}_${field.x}_${field.y}",
|
||||
"buttonStyle": "secondary",
|
||||
<#if ended>"disabled": true,</#if>
|
||||
"metaConfig": {
|
||||
"persistCallback": false
|
||||
<#if field?is_first>
|
||||
,"forceNewRow": true
|
||||
</#if>
|
||||
}
|
||||
}
|
||||
<#sep>,
|
||||
</#list>
|
||||
<#sep>,
|
||||
</#list>
|
||||
]
|
||||
}
|
||||
@@ -1,4 +1,7 @@
|
||||
{
|
||||
<#assign sourceUser=sourceMember.memberMention/>
|
||||
<#assign targetUser=targetMember.memberMention/>
|
||||
<#assign creditsCount=credits/>
|
||||
"additionalMessage": "<@safe_include "transferCredits_response_text"/>",
|
||||
"messageConfig": {
|
||||
"ephemeral": false
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
<#include "invalid_mine_board_config_exception_text">
|
||||
@@ -4,13 +4,13 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<artifactId>experience-tracking</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
<#assign userMention=memberDisplay.memberMention>
|
||||
<#assign pastLevel=oldLevel>
|
||||
<#assign currentLevel=newLevel>
|
||||
"additionalMessage": "<@safe_include "experience_level_up_notification_text"/>"
|
||||
}
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
</#list>
|
||||
",
|
||||
</#if>
|
||||
<#if embeddedMessage.attachments?size gt 0>
|
||||
<#if embeddedMessage.attachments?size gt 0 && !embeddedMessage.attachments[0].spoiler>
|
||||
"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}",
|
||||
@@ -58,6 +58,9 @@
|
||||
}
|
||||
]
|
||||
</#if>
|
||||
<#if embeddedMessage.attachments?size gt 0 && embeddedMessage.attachments[0].spoiler>
|
||||
,"additionalMessage": "||${embeddedMessage.attachments[0].proxyUrl?json_string}||"
|
||||
</#if>
|
||||
<#if referencedMessageId?has_content && mentionsReferencedMessage?has_content>
|
||||
,"referencedMessageId": "${referencedMessageId?c}",
|
||||
"messageConfig": {
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -4,13 +4,13 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<artifactId>moderation</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
||||
@@ -4,13 +4,13 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<artifactId>modmail</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
||||
@@ -4,14 +4,14 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates</groupId>
|
||||
<artifactId>templates</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
|
||||
<modules>
|
||||
<module>core</module>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
<#include "format_instant">
|
||||
{
|
||||
"embeds": [
|
||||
{
|
||||
@@ -6,6 +7,7 @@
|
||||
<#include "member_avatar">
|
||||
<@member_display_author member=memberDisplay/>,
|
||||
<#include "abstracto_color">,
|
||||
<#assign reminderTargetDate><@format_instant_date_time instant=reminder.targetDate/></#assign>
|
||||
<#if message?has_content>
|
||||
<#assign messageUrl>${message.jumpUrl}</#assign>
|
||||
"description": "<@safe_include "remind_reminding_description_text"/>"
|
||||
|
||||
@@ -14,10 +14,12 @@
|
||||
"fields": [
|
||||
<#list reminders as reminderDisplay><#assign reminderDisplay=reminderDisplay/>
|
||||
{
|
||||
<#assign id>${reminderDisplay.reminder.id}</#assign>
|
||||
<#assign reminderTargetDate><@format_instant_date_time instant=reminderDisplay.reminder.targetDate/></#assign>
|
||||
<#assign reminderText=reminderDisplay.reminder.text/>
|
||||
<#assign id>${reminderDisplay.id}</#assign>
|
||||
<#assign reminderTargetDate><@format_instant_date_time instant=reminderDisplay.targetDate/></#assign>
|
||||
<#assign reminderText=reminderDisplay.text/>
|
||||
<#assign messageLink=reminderDisplay.message.jumpUrl/>
|
||||
<#assign joined=reminderDisplay.joined/>
|
||||
<#assign joinedText><#if joined><@safe_include "reminder_joined_text"/></#if></#assign>
|
||||
"name": "<@safe_include "reminders_reminder_field_title"/>",
|
||||
"value": "<@safe_include "reminders_due_on"/>"
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -4,13 +4,13 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<artifactId>statistic</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
<#include "format_instant">
|
||||
{
|
||||
"embeds": [
|
||||
{
|
||||
@@ -7,7 +8,10 @@
|
||||
<#assign user><@user_user_name user=suggester/></#assign>
|
||||
<#include "abstracto_color">,
|
||||
<#assign id>${suggestionId}</#assign>
|
||||
"description": "${text?json_string}",
|
||||
<#if autoEvaluationEnabled>
|
||||
<#assign suggestionAutoEvaluateDate><@format_instant_date_time instant=autoEvaluationTargetDate/></#assign>
|
||||
</#if>
|
||||
"description": "${text?json_string}<#if autoEvaluationEnabled><@safe_include "suggest_auto_evaluation_hint"/></#if>",
|
||||
<#if attachmentURL?has_content>
|
||||
"imageUrl": "${attachmentURL}",
|
||||
</#if>
|
||||
|
||||
@@ -4,13 +4,13 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<artifactId>utility</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>abstracto-modules</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.templates</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"additionalMessage": "https://threadreaderapp.com/thread/${tweetId?c}.html"
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<#include "no_twitter_link_found_exception_text">
|
||||
4
pom.xml
4
pom.xml
@@ -5,7 +5,7 @@
|
||||
|
||||
<groupId>dev.sheldan.abstracto-templates</groupId>
|
||||
<artifactId>templates</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
|
||||
<modules>
|
||||
<module>abstracto-modules</module>
|
||||
@@ -23,7 +23,7 @@
|
||||
<scm>
|
||||
<url>https://maven.pkg.github.com/Sheldan/abstracto-templates</url>
|
||||
<developerConnection>scm:git:git@github.com:Sheldan/abstracto-templates.git</developerConnection>
|
||||
<tag>templates-1.4.3</tag>
|
||||
<tag>templates-1.4.7</tag>
|
||||
</scm>
|
||||
|
||||
<repositories>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>translations</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>translations</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -4,13 +4,13 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<artifactId>translations</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<artifactId>core</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<artifactId>translations</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>translations</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
Play a game of to find mines in a field
|
||||
@@ -0,0 +1,5 @@
|
||||
You can create a minefield with at most 5x5 dimensions and a custom amount of mines.
|
||||
If you reveal a field which is not a mine, you will either uncover all adjacent free fields or show a number how many files are adjacent.
|
||||
If you reveal all fields (by clicking) which are no mines, you win!
|
||||
If economy is enabled, you have the ability to put some credits on the line, and potentially win a multiple of it.
|
||||
The result of the winnings depend on how many fields you managed to uncover, how many fields and mines there were in total (the more of both, the more credits) and if you completely uncovered the field.
|
||||
@@ -0,0 +1 @@
|
||||
How many credits you want to put on the line
|
||||
@@ -0,0 +1 @@
|
||||
Amount of rows of the field
|
||||
@@ -0,0 +1 @@
|
||||
Amount of mines which will be put in the field
|
||||
@@ -0,0 +1 @@
|
||||
Amount of columns of the field
|
||||
@@ -0,0 +1 @@
|
||||
${totalMines} Mines. ${stateText}
|
||||
@@ -0,0 +1 @@
|
||||
Continue... Playing for ${creditAmount} credits.
|
||||
@@ -0,0 +1 @@
|
||||
Continue...
|
||||
@@ -0,0 +1 @@
|
||||
You lost! You put ${creditAmount} credits on the line and got back ${changedCreditAmount}!
|
||||
@@ -0,0 +1 @@
|
||||
You lost!
|
||||
@@ -0,0 +1 @@
|
||||
You put ${creditAmount} credits on the line and won ${changedCreditAmount}!
|
||||
@@ -0,0 +1 @@
|
||||
You won!
|
||||
@@ -1 +1 @@
|
||||
Credits have been transfered.
|
||||
${creditsCount} credits from ${sourceUser} have been transferred to ${targetUser}.
|
||||
@@ -0,0 +1 @@
|
||||
Games
|
||||
@@ -0,0 +1 @@
|
||||
Invalid mines configuration: Width and height at least 1 and at most 5 each. There must at least one mine and at least one field without a mine!
|
||||
@@ -4,13 +4,13 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<artifactId>translations</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<artifactId>experience-tracking</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
The time in seconds between counting the experience. This prevents people from spamming message in a short period of time and leveling up. Default: ${defaultValue}
|
||||
@@ -0,0 +1 @@
|
||||
${userMention}: You reached level ${currentLevel}!
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>translations</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>translations</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>translations</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -4,13 +4,13 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<artifactId>translations</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<artifactId>moderation</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
||||
@@ -4,13 +4,13 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<artifactId>translations</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<artifactId>modmail</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
||||
@@ -4,14 +4,14 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates</groupId>
|
||||
<artifactId>templates</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<artifactId>translations</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
|
||||
<modules>
|
||||
<module>core</module>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<artifactId>translations</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>translations</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -1 +1 @@
|
||||
Scheduled reminder with ID ${id} to remind you of `${reminderText}`.
|
||||
Scheduled reminder with ID ${id} to remind you of `${reminderText}` at ${reminderTargetDate}.
|
||||
@@ -1 +1 @@
|
||||
Scheduled reminder with ID ${id} to remind you of [this](${messageUrl})
|
||||
Scheduled reminder with ID ${id} to remind you of [this](${messageUrl}) at ${reminderTargetDate}.
|
||||
@@ -0,0 +1 @@
|
||||
(joined)
|
||||
@@ -1 +1 @@
|
||||
Due on ${reminderTargetDate} with text `${reminderText}` started [here](${messageLink})
|
||||
Due on ${reminderTargetDate} with text `${reminderText}` started [here](${messageLink}) ${joinedText}
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>translations</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>translations</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -4,13 +4,13 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<artifactId>translations</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<artifactId>statistic</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>translations</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
|
||||
Auto evaluated at: ${suggestionAutoEvaluateDate}
|
||||
@@ -0,0 +1 @@
|
||||
Amount of days until suggestions are evaluated automatically. Default: ${defaultValue}
|
||||
@@ -4,13 +4,13 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<artifactId>translations</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<artifactId>utility</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<artifactId>translations</artifactId>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<parent>
|
||||
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||
<artifactId>translations</artifactId>
|
||||
<version>1.4.3</version>
|
||||
<version>1.4.7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
Creates a thread reader link for easier reading
|
||||
@@ -0,0 +1,3 @@
|
||||
This command can be used to take an existing message and creates a message containing a link to [Threadreader](https://threadreaderapp.com/).
|
||||
This is done by executing the command and replying to the message containing the twitter link. It does not need to be the only text in the message.
|
||||
Only the first link will be considered.
|
||||
@@ -0,0 +1 @@
|
||||
The message containing the Twitter link. Reply to the message while executing the command.
|
||||
@@ -0,0 +1 @@
|
||||
Thread reader
|
||||
@@ -0,0 +1 @@
|
||||
No Twitter link was found.
|
||||
Reference in New Issue
Block a user