-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
baf055c
commit 7c628b2
Showing
4 changed files
with
61 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,9 +39,6 @@ jobs: | |
|
||
- name: Generate Discord Embed | ||
run: ./gradlew injectEmbed | ||
env: | ||
FORGE_RELEASE_URL: ${{ steps.neoforge_release.outputs.modrinth-version }} | ||
FABRIC_RELEASE_URL: ${{ steps.fabric_release.outputs.modrinth-version }} | ||
|
||
- name: Upload Discord Embed | ||
uses: tsickert/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# 1.0.1 | ||
# 1.0.7 | ||
|
||
Change internals of widgets to be more flexible for changes when extended | ||
Add layout widget | ||
Make list widget more flexible | ||
Add keyboard navigation to layout and list widget | ||
Add more utility functions | ||
Trash can icon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{ | ||
"components": [ | ||
{ | ||
"type": 1, | ||
"components": [ | ||
{ | ||
"type": 2, | ||
"label": "Fabric", | ||
"style": 5, | ||
"url": "https://beehive.sh/mod/olympus/versions?l=fabric&g=1.21" | ||
}, | ||
{ | ||
"type": 2, | ||
"label": "NeoForge", | ||
"style": 5, | ||
"url": "https://beehive.sh/mod/olympus/versions?l=neoforge&g=1.21" | ||
}, | ||
{ | ||
"type": 2, | ||
"label": "Common", | ||
"style": 5, | ||
"url": "https://beehive.sh/mod/olympus/versions?l=common&g=1.21" | ||
} | ||
] | ||
} | ||
], | ||
"embeds": [ | ||
{ | ||
"title": "Olympus", | ||
"description": "**Changelog:**\\n${changelog}", | ||
"color": 3935276, | ||
"fields": [ | ||
{ | ||
"name": "Minecraft Version", | ||
"value": "${minecraft}", | ||
"inline": true | ||
}, | ||
{ | ||
"name": "Mod Version", | ||
"value": "${version}", | ||
"inline": true | ||
} | ||
], | ||
"footer": { | ||
"text": "Follow the project on Beehive at beehive.sh/mod/olympus", | ||
"icon_url": "https://images.teamresourceful.com/u/IDWLGs.png" | ||
}, | ||
"thumbnail": { | ||
"url": "http://images.teamresourceful.com/u/3CF1JE.png" | ||
} | ||
} | ||
], | ||
"username": "Terrarium Releases", | ||
"avatar_url": "https://cdn.modrinth.com/user/6ZoP9xY8/845ab3625ed09a90b58b4ec6089c92d8e459ca09.png" | ||
} |