Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,11 @@
"wiki": "Installation",
"support": "If all else fails, get in touch with us on {discord} and we'll be happy to help."
},
"notListed": {
"title": "Looking for a version not listed?",
"grab": "The version you're looking for can likely be found at {modrinth} or on our {jenkins}.",
"missing": "Is there still a missing version? build it from our source on {github}."
},
"extensions": {
"title": "Extensions",
"description": "Extensions can modify the behaviour of LuckPerms, you can read more about them on {wiki}.",
Expand Down
16 changes: 16 additions & 0 deletions src/views/Download.vue
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,22 @@
</template>
</i18n>
</ul>
<h2>{{ $t('download.notListed.title') }}</h2>
<ul>
<i18n path="download.notListed.grab" tag="li">
<template #modrinth>
<a href="https://modrinth.com/plugin/luckperms/versions" target="_blank">modrinth</a>
</template>
<template #jenkins>
<a href="https://ci.lucko.me/job/LuckPerms/" target="_blank">Jenkins</a>
</template>
</i18n>
<i18n path="download.notListed.missing" tag="li">
<template #github>
<a href="https://github.com/LuckPerms/LuckPerms" target="_blank">GitHub</a>
</template>
</i18n>
</ul>
</div>
</section>
</div>
Expand Down