Skip to content

Update patreons.json #163

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 20, 2024
Merged
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
20 changes: 15 additions & 5 deletions website/_data/patreons.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[
{
"name": "James Silva",
"tier": "Graphics.EnvironmentMapEffect"
"tier": "EnvironmentMapEffect"
},
{
"name": "D. Ezra Sidran, PhD",
"tier": "GraphicsDevice.DrawUserPrimitives"
"tier": "DrawUserPrimitives"
},
{
"name": "Pirota Pirozou",
Expand Down Expand Up @@ -55,19 +55,20 @@
},
{
"name": "Jake Kirkbride",
"tier": "GraphicsDevice.DrawUserPrimitives"
"tier": "DrawUserPrimitives"
},
{
"name": "Oblotzky",
"tier": "GraphicsDevice.DrawUserPrimitives"
"tier": "DrawUserPrimitives"
},
{
"name": "Gerald Unterrainer",
"tier": "SpriteBatch"
},
{
"name":"Aaron Langille",
"tier": "SpriteBatch"
"tier": "SpriteBatch",
"url": "https://welcomebraveadventurer.ca"
},
{
"name": "MoonFarmGame",
Expand All @@ -77,5 +78,14 @@
{
"name": "MrValentine",
"tier": "SpriteBatch"
},
{
"name": "aristurtledev",
"tier": "EnvironmentMapEffect",
"url": "https://aristurtledev.github.io/"
},
{
"name": "Christopher Hanna",
"tier": "SpriteBatch"
}
]
8 changes: 4 additions & 4 deletions website/content/donate.njk
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ title: Donate
The following is a partial list of individuals and studios that support us through <a href="https://www.patreon.com/bePatron?u=3142012">Patreon</a>.
</p>
<br/>
<h4 class="text-center" id="Graphics.EnvironmentMapEffect">Graphics.EnvironmentMapEffect</h4>
<h4 class="text-center" id="EnvironmentMapEffect">EnvironmentMapEffect</h4>
<div class="row justify-content-center mb-3">
{% for patreon in patreons | sort() %}
{% if patreon.tier == "Graphics.EnvironmentMapEffect" %}
{% if patreon.tier == "EnvironmentMapEffect" %}
<div class="col-sm-4 mb-1 text-center">
{% if patreon.url %}<a href="{{patreon.url}}">{% endif %}
{{patreon.name}}
Expand All @@ -89,10 +89,10 @@ title: Donate
{% endfor %}
</div>
<br />
<h4 class="text-center" id="GraphicsDevice.DrawUserPrimitives">GraphicsDevice.DrawUserPrimitives</h4>
<h4 class="text-center" id="DrawUserPrimitives">DrawUserPrimitives</h4>
<div class="row justify-content-center mb-3">
{% for patreon in patreons | sort() %}
{% if patreon.tier == "GraphicsDevice.DrawUserPrimitives" %}
{% if patreon.tier == "DrawUserPrimitives" %}
<div class="col-sm-4 mb-1 text-center">
{% if patreon.url %}<a href="{{patreon.url}}">{% endif %}
{{patreon.name}}
Expand Down