Compare commits

...

18 Commits

Author SHA1 Message Date
Sheldan
afb1ec3368 [AB-xxx] updating remind templates for user installable support 2024-07-08 19:20:20 +02:00
Sheldan
8af4609d82 [AB-xxx] removing member author from exceptions 2024-07-08 19:20:20 +02:00
Sheldan
c291ceeb7b [AB-xxx] refactoring avatar template
adding more info and reducing some information from userInfo command
2024-07-08 19:20:20 +02:00
Sheldan
4b68d082a2 [AB-xxx] making user info template able to handle partial members 2024-07-08 19:20:20 +02:00
Sheldan
dd83009259 [AB-xxx] fixing modmail thread created message 2024-07-08 19:20:08 +02:00
release-bot
a8d7d4e1aa [maven-release-plugin] prepare for next development iteration 2024-05-30 23:18:07 +00:00
release-bot
22dc9367f4 [maven-release-plugin] prepare release templates-1.4.38 2024-05-30 23:18:05 +00:00
Sheldan
88ed051af4 [AB-xxx] refactoring the modmail to use users instead of members
adding modmailAppeal templates
2024-05-31 01:16:17 +02:00
release-bot
4a341ed479 [maven-release-plugin] prepare for next development iteration 2024-05-05 22:10:54 +00:00
release-bot
77207028a9 [maven-release-plugin] prepare release templates-1.4.37 2024-05-05 22:10:52 +00:00
Sheldan
ff0319b468 [AB-xxx] adding member details template for member displays
making reason optional for kick log
2024-05-06 00:08:49 +02:00
Sheldan
193bfe3f75 [AB-xxx] updating user banned/unbanned notification log messages to include a potential reason for unbanning
updated user_detail template to handle userDetail
removing active logging of unban/ban commands
2024-05-05 01:59:38 +02:00
Sheldan
7333ddc03c [AB-xxx] showing muting user embed title when mute duration changed 2024-05-04 20:36:21 +02:00
Sheldan
3cec9096b1 [AB-xxx] adding templates for new level action exception 2024-04-18 23:10:37 +02:00
release-bot
e1835f03f6 [maven-release-plugin] prepare for next development iteration 2024-04-05 12:27:55 +00:00
release-bot
9b34efeba4 [maven-release-plugin] prepare release templates-1.4.36 2024-04-05 12:27:53 +00:00
Sheldan
b5376688d8 [AB-xxx] adding leaderboard button to leaderboard response 2024-04-05 01:40:37 +02:00
release-bot
77baf59f80 [maven-release-plugin] prepare for next development iteration 2024-03-17 12:12:50 +00:00
98 changed files with 176 additions and 183 deletions

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</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.4.35</version> <version>1.4.39-SNAPSHOT</version>
<build> <build>
<plugins> <plugins>

View File

@@ -0,0 +1 @@
<#macro member_detail member><#if member.name?has_content>${member.name?json_string}<#if member.discriminator?has_content && member.discriminator != '0000'>#${member.discriminator}</#if><#else>${member.memberMention}</#if> (${member.userId?c})</#macro>

View File

@@ -1 +1,2 @@
<#macro user_author user> "author": { "name": <#include "user_user_name"> "<@user_user_name user=user/>", "avatar": "${user.effectiveAvatarUrl}" }</#macro> <#macro user_author user> "author": { "name": <#include "user_user_name"> "<@user_user_name user=user/>", "avatar": "${user.effectiveAvatarUrl}" }</#macro>
<#macro user_detail_author user> "author": { "name": <#include "user_user_name"> "<@user_user_name user=userDisplay/>"<#if user.avatarUrl?has_content>, "avatar": "${user.avatarUrl}"</#if>}</#macro>

View File

@@ -1 +1 @@
<#macro user_detail user>${user.name?json_string}<#if user.discriminator?number gt 0>#${user.discriminator}</#if> (${user.idLong?c})</#macro> <#macro user_detail user><#if user.name?has_content>${user.name?json_string}<#if user.discriminator?has_content && user.discriminator != '0000'>#${user.discriminator}</#if><#else>${user.userMention}</#if> (${user.id?c})</#macro>

View File

@@ -1,8 +1,6 @@
{ {
"embeds": [ "embeds": [
{ {
<#include "member_author">
<@member_author member=member/>,
<#include "exception_color">, <#include "exception_color">,
"metaConfig" : { "metaConfig" : {
"preventEmptyEmbed": "true" "preventEmptyEmbed": "true"

View File

@@ -3,7 +3,7 @@
<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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</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.4.35</version> <version>1.4.39-SNAPSHOT</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@@ -21,4 +21,14 @@
} }
} }
] ]
<#if leaderboardUrl?has_content>
,"buttons": [
{
"label": "<@safe_include "leaderboard_leaderboard_button_label"/>",
<#assign leaderboardUrl=leaderboardUrl>
"url": "${leaderboardUrl}",
"buttonStyle": "link"
}
]
</#if>
} }

View File

@@ -0,0 +1 @@
<#include "level_action_already_exists_exception_text">

View File

@@ -4,7 +4,7 @@
<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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<artifactId>giveaway</artifactId> <artifactId>giveaway</artifactId>

View File

@@ -4,7 +4,7 @@
<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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<artifactId>image-generation</artifactId> <artifactId>image-generation</artifactId>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@@ -3,7 +3,7 @@
<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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</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.4.35</version> <version>1.4.39-SNAPSHOT</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@@ -1,31 +0,0 @@
{
"embeds": [
{
"title": {
"title": "<@safe_include "ban_log_title"/>"
},
<#include "moderation_action_color">,
"fields": [
{
"name": "<@safe_include "ban_log_banned_user_field_title"/>",
"value": "${bannedUser.userMention}"
},
{
"name": "<@safe_include "ban_log_banning_user_field_title"/>",
"value": "${banningMember.memberMention}"
},
{
"name": "<@safe_include "ban_log_reason_field_title"/>",
"value": "${reason?json_string}"
}
<#if deletionDuration?has_content>
,
{
"name": "<@safe_include "ban_log_deletion_duration_field_title"/>",
"value": "${fmtDuration(deletionDuration)}"
}
</#if>
]
}
]
}

View File

@@ -1,6 +1,7 @@
{ {
"embeds": [ "embeds": [
{ {
<#include "user_detail">
"title": { "title": {
"title": "<@safe_include "kick_log_title"/>" "title": "<@safe_include "kick_log_title"/>"
}, },
@@ -8,16 +9,19 @@
"fields": [ "fields": [
{ {
"name": "<@safe_include "kick_log_kicked_user_field_title"/>", "name": "<@safe_include "kick_log_kicked_user_field_title"/>",
"value": "${kickedMember.memberMention}" "value": "<@user_detail user=kickedUser/>"
}, },
{ {
"name": "<@safe_include "kick_log_kicking_user_field_title"/>", "name": "<@safe_include "kick_log_kicking_user_field_title"/>",
"value": "${kickingMember.memberMention}" "value": "<@user_detail user=kickingUser/>"
}, }
<#if reason?has_content>
,
{ {
"name": "<@safe_include "kick_log_reason_field_title"/>", "name": "<@safe_include "kick_log_reason_field_title"/>",
"value": "${reason?json_string}" "value": "${reason?json_string}"
} }
</#if>
] ]
} }
] ]

View File

@@ -1,4 +1,5 @@
<#include "format_instant"> <#include "format_instant">
<#include "member_detail">
{ {
"embeds": [ "embeds": [
{ {
@@ -15,16 +16,16 @@
"fields": [ "fields": [
{ {
"name": "<@safe_include "mute_log_muted_user_field_title"/>", "name": "<@safe_include "mute_log_muted_user_field_title"/>",
"value": "${mutedUser.memberMention}" "value": "<@member_detail member=mutedMember/>"
}, },
<#if mutingUser?has_content> <#if mutingMember?has_content>
{ {
<#if muted> <#if muted || durationChanged>
"name": "<@safe_include "mute_log_muting_user_field_title"/>", "name": "<@safe_include "mute_log_muting_user_field_title"/>",
<#elseif muteEnded> <#elseif muteEnded>
"name": "<@safe_include "mute_log_unmuting_user_field_title"/>", "name": "<@safe_include "mute_log_unmuting_user_field_title"/>",
</#if> </#if>
"value": "${mutingUser.memberMention}" "value": "<@member_detail member=mutingMember/>"
} }
</#if> </#if>
<#if reason?has_content>, <#if reason?has_content>,

View File

@@ -1,20 +0,0 @@
{
"embeds": [
{
"title": {
"title": "<@safe_include "unBan_log_title"/>"
},
<#include "moderation_action_color">,
"fields": [
{
"name": "<@safe_include "unBan_log_un_banned_user_field_title"/>",
"value": "${bannedUser.userMention}"
},
{
"name": "<@safe_include "unBan_log_un_banning_user_field_title"/>",
"value": "${unBanningMember.memberMention}"
}
]
}
]
}

View File

@@ -1,7 +1,6 @@
{ {
"embeds": [ "embeds": [
{ {
<#include "user_detail">
<#include "full_member_info"> <#include "full_member_info">
<#include "moderation_action_color">, <#include "moderation_action_color">,
<#assign newLevel=newLevel> <#assign newLevel=newLevel>

View File

@@ -3,8 +3,12 @@
{ {
<#include "user_detail"> <#include "user_detail">
<#include "abstracto_color">, <#include "abstracto_color">,
<#assign bannedUserName=bannedUser.name> <#if bannedUser.name?has_content>
"description" : "<@safe_include "userBanned_description"/>", <#assign bannedUserName=bannedUser.name>
"description" : "<@safe_include "userBanned_description_with_name"/>",
<#else>
"description" : "<@safe_include "userBanned_description"/>",
</#if>
"fields": [ "fields": [
{ {
"name": "<@safe_include "userBanned_field_title_banned_user"/>", "name": "<@safe_include "userBanned_field_title_banned_user"/>",

View File

@@ -16,6 +16,13 @@
"value": "<@user_detail user=unBanningUser/>" "value": "<@user_detail user=unBanningUser/>"
} }
</#if> </#if>
<#if reason??>
,
{
"name": "<@safe_include "userUnBanned_field_title_reason"/>",
"value": "${reason}"
}
</#if>
] ]
} }
] ]

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</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.4.35</version> <version>1.4.39-SNAPSHOT</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@@ -1,8 +1,8 @@
{ {
"embeds": [ "embeds": [
{ {
<#include "member_author"> <#include "user_author">
<@member_author member=targetMember/>, <@user_detail_author user=userDisplay/>,
"description": "<@safe_include "modmail_thread_created_description"/>", "description": "<@safe_include "modmail_thread_created_description"/>",
<#include "modmail_color">, <#include "modmail_color">,
"fields": [ "fields": [

View File

@@ -0,0 +1,6 @@
{
"additionalMessage": "<@safe_include "denyModmailAppeal_response_text"/>",
"messageConfig": {
"ephemeral": true
}
}

View File

@@ -1,13 +1,12 @@
<#include "user_detail">
{ {
"embeds": [ "embeds": [
{ {
<#include "member_author">
<@member_author member=member/>,
"title": { "title": {
"title": "<@safe_include "modmail_notification_message_title"/>" "title": "<@safe_include "modmail_notification_message_title"/>"
}, },
<#include "modmail_color">, <#include "modmail_color">,
<#assign user><@member_user_name member=member/>(${member.user.id})</#assign> <#assign user><@user_detail user=userDisplay/></#assign>
"description": "<@safe_include "modmail_notification_message_description"/>" "description": "<@safe_include "modmail_notification_message_description"/>"
<#if channel?has_content>, <#if channel?has_content>,
"fields": [ "fields": [

View File

@@ -1,8 +1,8 @@
{ {
"embeds": [ "embeds": [
{ {
<#include "member_author"> <#include "user_author">
<@member_author member=member/>, <@user_detail_author user=userDisplay/>,
"title": { "title": {
"title": "<@safe_include "modmail_thread_user_message_title"/>" "title": "<@safe_include "modmail_thread_user_message_title"/>"
}, },

View File

@@ -1,13 +1,10 @@
<#include "format_instant"> <#include "format_instant">
<#include "user_detail">
{ {
"embeds": [ "embeds": [
{ {
<#include "member_author">
<@member_author member=member/>,
<#include "modmail_color">, <#include "modmail_color">,
<#assign user><@member_user_name member=member/> (${member.user.id})</#assign> <#assign user><@user_detail user=userDisplay/> (${userDisplay.id?c})</#assign>
<#assign joinDate><@format_instant_date_time instant=memberJoinDate/></#assign>
<#assign roles><#list member.roles as role>${role.asMention?json_string}<#sep>,<#else><@safe_include "modmail_thread_header_no_roles"/></#list></#assign>
"description": "<@safe_include "modmail_thread_header_embed_description"/>" "description": "<@safe_include "modmail_thread_header_embed_description"/>"
} }
] ]

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</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.4.35</version> <version>1.4.39-SNAPSHOT</version>
<modules> <modules>
<module>core</module> <module>core</module>

View File

@@ -3,7 +3,7 @@
<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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@@ -1,10 +1,10 @@
{ {
"embeds": [ "embeds": [
{ {
<#include "member_author"> <#include "user_author">
<#include "member_avatar"> <@user_detail_author user=userDisplay/>,
<@member_display_author member=memberNameDisplay/>,
<#include "abstracto_color">, <#include "abstracto_color">,
<#assign reminderId=reminderDisplay.id>
"description": "<@safe_include "remind_reminder_description"/>", "description": "<@safe_include "remind_reminder_description"/>",
"fields": [ "fields": [
{ {
@@ -13,18 +13,22 @@
}, },
{ {
"name": "<@safe_include "remind_reminder_note_field_title"/>", "name": "<@safe_include "remind_reminder_note_field_title"/>",
"value": "${reminder.text?json_string}" "value": "${reminderDisplay.text?json_string}"
}, }
<#if messageUrl?has_content>,
{ {
"name": "<@safe_include "remind_reminder_link_field_title"/>", "name": "<@safe_include "remind_reminder_link_field_title"/>",
"value": "[<@safe_include "remind_reminder_link_content_display_text"/>](${messageUrl})" "value": "[<@safe_include "remind_reminder_link_content_display_text"/>](${messageUrl})"
} }
</#if>
] ]
} }
], ]
<#assign participantsMentions><#list reminderParticipants as participant>${participant.memberMention}<#sep>, </#list></#assign> <#if !reminderDisplay.userCommand>,
"additionalMessage": "${memberNameDisplay.memberMention?json_string} 🔔 <#assign participantsMentions><#if reminderParticipants?has_content><#list reminderParticipants as participant>${participant.memberMention}<#sep>, </#list></#if></#assign>
"additionalMessage": "${userDisplay.userMention?json_string} 🔔
${participantsMentions} ${participantsMentions}
" "
</#if>
} }

View File

@@ -3,9 +3,8 @@
"embeds": [ "embeds": [
{ {
<#assign id>${reminder.id}</#assign> <#assign id>${reminder.id}</#assign>
<#include "member_author"> <#include "user_author">
<#include "member_avatar"> <@user_detail_author user=userDisplay/>,
<@member_display_author member=memberDisplay/>,
<#include "abstracto_color">, <#include "abstracto_color">,
<#assign reminderTargetDate><@format_instant_date_time instant=reminder.targetDate/></#assign> <#assign reminderTargetDate><@format_instant_date_time instant=reminder.targetDate/></#assign>
<#if message?has_content> <#if message?has_content>
@@ -17,8 +16,11 @@
</#if> </#if>
} }
], ]
"additionalMessage": "${memberDisplay.memberMention?json_string}", <#if !reminder.userCommand>,
"additionalMessage": "${userDisplay.userMention?json_string}"
</#if>
<#if joinButtonId?has_content>,
"buttons": [ "buttons": [
{ {
"label": "<@safe_include "remind_reminder_join_button_label"/>", "label": "<@safe_include "remind_reminder_join_button_label"/>",
@@ -29,4 +31,5 @@
} }
} }
] ]
</#if>
} }

View File

@@ -2,8 +2,8 @@
{ {
"embeds": [ "embeds": [
{ {
<#include "member_author"> <#include "user_author">
<@member_author member=member/>, <@user_detail_author user=userDisplay/>,
<#include "abstracto_color">, <#include "abstracto_color">,
"title": { "title": {
"title": "<@safe_include "reminders_reminders_embed_title"/>" "title": "<@safe_include "reminders_reminders_embed_title"/>"
@@ -17,7 +17,7 @@
<#assign id>${reminderDisplay.id}</#assign> <#assign id>${reminderDisplay.id}</#assign>
<#assign reminderTargetDate><@format_instant_date_time instant=reminderDisplay.targetDate/></#assign> <#assign reminderTargetDate><@format_instant_date_time instant=reminderDisplay.targetDate/></#assign>
<#assign reminderText=reminderDisplay.text/> <#assign reminderText=reminderDisplay.text/>
<#assign messageLink=reminderDisplay.message.jumpUrl/> <#if !reminderDisplay.userCommand><#assign messageLink=reminderDisplay.message.jumpUrl/></#if>
<#assign joined=reminderDisplay.joined/> <#assign joined=reminderDisplay.joined/>
<#assign joinedText><#if joined><@safe_include "reminder_joined_text"/></#if></#assign> <#assign joinedText><#if joined><@safe_include "reminder_joined_text"/></#if></#assign>
"name": "<@safe_include "reminders_reminder_field_title"/>", "name": "<@safe_include "reminders_reminder_field_title"/>",

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</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.4.35</version> <version>1.4.39-SNAPSHOT</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@@ -4,7 +4,7 @@
<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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<artifactId>sticky-roles</artifactId> <artifactId>sticky-roles</artifactId>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@@ -3,7 +3,7 @@
<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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</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.4.35</version> <version>1.4.39-SNAPSHOT</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@@ -1,20 +1,12 @@
{ {
"embeds": [ "embeds": [
{ {
<#include "member_author">
<@member_author member=memberInfo/>,
<#include "abstracto_color">, <#include "abstracto_color">,
"imageUrl": "${memberInfo.user.effectiveAvatarUrl}", "imageUrl": "${avatarUrl}",
"fields": [ "fields": [
{
<#include "member_user_name">
"name": "<@safe_include "showAvatar_response_embed_user_field_title"/>",
"value": "<@member_member_name member=memberInfo/>",
"inline": "true"
},
{ {
"name": "<@safe_include "showAvatar_response_embed_image_field_title"/>", "name": "<@safe_include "showAvatar_response_embed_image_field_title"/>",
"value": "[<@safe_include "showAvatar_response_embed_image_field_value_display"/>](${memberInfo.user.effectiveAvatarUrl})", "value": "[<@safe_include "showAvatar_response_embed_image_field_value_display"/>](${avatarUrl})",
"inline": "true" "inline": "true"
} }
] ]

View File

@@ -8,6 +8,18 @@
<#include "member_avatar"> <#include "member_avatar">
"thumbnail": "<@member_display_avatar member=memberDisplay/>", "thumbnail": "<@member_display_avatar member=memberDisplay/>",
"fields": [ "fields": [
{
"name": "<@safe_include "userInfo_response_embed_user_name_field_title"/>",
"value": "${memberDisplay.userName}",
"inline": "true"
},
<#if memberDisplay.displayName?has_content>
{
"name": "<@safe_include "userInfo_response_embed_global_name_field_title"/>",
"value": "${memberDisplay.displayName}",
"inline": "true"
},
</#if>
{ {
"name": "<@safe_include "userInfo_response_embed_id_field_title"/>", "name": "<@safe_include "userInfo_response_embed_id_field_title"/>",
"value": "${id?c}", "value": "${id?c}",
@@ -20,22 +32,26 @@
"inline": "true" "inline": "true"
}, },
</#if> </#if>
<#if onlineStatus?has_content>
{ {
"name": "<@safe_include "userInfo_response_embed_status_field_title"/>", "name": "<@safe_include "userInfo_response_embed_status_field_title"/>",
"value": "${onlineStatus?json_string}", "value": "${onlineStatus?json_string}",
"inline": "true" "inline": "true"
}, },
</#if>
<#if joinDate?has_content>
{ {
"name": "<@safe_include "userInfo_response_embed_joined_field_title"/>", "name": "<@safe_include "userInfo_response_embed_joined_field_title"/>",
"value": "<@format_instant_date_time instant=joinDate/>", "value": "<@format_instant_date_time instant=joinDate/>",
"inline": "true" "inline": "true"
}, },
</#if>
{ {
"name": "<@safe_include "userInfo_response_embed_registered_field_title"/>", "name": "<@safe_include "userInfo_response_embed_registered_field_title"/>",
"value": "<@format_instant_date_time instant=creationDate/>", "value": "<@format_instant_date_time instant=creationDate/>",
"inline": "true" "inline": "true"
} }
<#if roles?size gt 0> <#if roles?has_content && roles?size gt 0>
, ,
{ {
"name": "<@safe_include "userInfo_response_embed_roles_field_title"/>", "name": "<@safe_include "userInfo_response_embed_roles_field_title"/>",
@@ -44,7 +60,7 @@
"valueSplitLength": 250 "valueSplitLength": 250
} }
</#if> </#if>
<#if activities?size gt 0> <#if activities?has_content && activities?size gt 0>
, ,
{ {
"name": "<@safe_include "userInfo_response_embed_activity_field_title"/>", "name": "<@safe_include "userInfo_response_embed_activity_field_title"/>",

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -5,7 +5,7 @@
<groupId>dev.sheldan.abstracto-templates</groupId> <groupId>dev.sheldan.abstracto-templates</groupId>
<artifactId>templates</artifactId> <artifactId>templates</artifactId>
<version>1.4.35</version> <version>1.4.39-SNAPSHOT</version>
<modules> <modules>
<module>abstracto-modules</module> <module>abstracto-modules</module>
@@ -24,7 +24,7 @@
<connection>scm:git:${project.scm.url}</connection> <connection>scm:git:${project.scm.url}</connection>
<developerConnection>scm:git:${project.scm.url}</developerConnection> <developerConnection>scm:git:${project.scm.url}</developerConnection>
<url>https://github.com/Sheldan/abstracto-templates.git</url> <url>https://github.com/Sheldan/abstracto-templates.git</url>
<tag>templates-1.4.35</tag> <tag>HEAD</tag>
</scm> </scm>
<repositories> <repositories>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</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.4.35</version> <version>1.4.39-SNAPSHOT</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</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.4.35</version> <version>1.4.39-SNAPSHOT</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@@ -4,7 +4,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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<artifactId>giveaway</artifactId> <artifactId>giveaway</artifactId>

View File

@@ -4,7 +4,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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<artifactId>image-generation</artifactId> <artifactId>image-generation</artifactId>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</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.4.35</version> <version>1.4.39-SNAPSHOT</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@@ -1 +1 @@
User ${bannedUserName} was banned. User was banned.

View File

@@ -0,0 +1 @@
User ${bannedUserName} was banned.

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</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.4.35</version> <version>1.4.39-SNAPSHOT</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@@ -0,0 +1 @@
User has been banned from the appeal server.

View File

@@ -0,0 +1 @@
Rejects the appeal, closes the modmail thread and bans the user from the appeal server.

View File

@@ -0,0 +1 @@
The reason to reject this appeal. Will not be forwarded to the user.

View File

@@ -0,0 +1 @@
The server to use as an appeal server. Default: ${defaultValue}

View File

@@ -1,3 +1,2 @@
This is a modmail thread concerning ${user}. This is a modmail thread concerning ${user}.
The user has the roles ${roles} and joined on ${joinDate}
There were ${pastModMailThreadCount} threads in the past. There were ${pastModMailThreadCount} threads in the past.

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</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.4.35</version> <version>1.4.39-SNAPSHOT</version>
<modules> <modules>
<module>core</module> <module>core</module>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@@ -1 +1 @@
Reminder ID ${reminder.id?c} Reminder ID ${reminderId?c}

View File

@@ -1 +1 @@
Due on ${reminderTargetDate} with text `${reminderText}` started [here](${messageLink}) ${joinedText} Due on ${reminderTargetDate} with text `${reminderText}`<#if messageLink?has_content> started [here](${messageLink})</#if> ${joinedText}

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</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.4.35</version> <version>1.4.39-SNAPSHOT</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@@ -4,7 +4,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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<artifactId>sticky-roles</artifactId> <artifactId>sticky-roles</artifactId>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</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.4.35</version> <version>1.4.39-SNAPSHOT</version>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>

View File

@@ -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.4.35</version> <version>1.4.39-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging> <packaging>pom</packaging>