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
4 changes: 4 additions & 0 deletions content/donate/options/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ Please only use names, logos, and links that you have the right and permission t

Please wait a little. It might take up to eight hours for the automatic update to add you to the credits.

## Where in the Project's Readme will my name / logo / link be added?
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this needs some clarity on what tiers will receive this benefit. Something like "I backed at a tier that adds my logo / link to the project's README: where will it be added?".


They will be in the [Thanks section](https://github.com/bevyengine/bevy#thanks). The readme is also replicated on [crates.io Bevy page](https://crates.io/crates/bevy#thanks).

## How are the metrics on the donation page calculated?

The monthly dollar amount is the "raw pledged amount for active monthly donations". This means two things:
Expand Down
3 changes: 3 additions & 0 deletions content/donate/tiers.toml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ every_org_link = "https://www.every.org/bevy-foundation?amount=8000&theme_color=
reward_logo = true
reward_link = true
logo_height = 120
reward_readme_link = true

[[tier]]
name = "Patron"
Expand All @@ -131,3 +132,5 @@ stripe_missing = "Not supported right now"
reward_logo = true
reward_link = true
logo_height = 190
reward_readme_link = true
reward_readme_logo = true
14 changes: 14 additions & 0 deletions templates/donate-options.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
<th>Name in Credits</th>
<th>Link in Credits</th>
<th>Logo in Credits</th>
<th>Name and Link in Project's Readme</th>
<th>Logo in Project's Readme</th>
</tr>
</thead>
<tbody>
Expand Down Expand Up @@ -50,6 +52,16 @@
Yes
{% endif %}
</td>
<td>
{% if tier.reward_readme_link %}
Yes
{% endif %}
</td>
<td>
{% if tier.reward_readme_logo %}
Yes
{% endif %}
</td>
</tr>
{% endfor %}
<tr>
Expand All @@ -59,6 +71,8 @@
<td>See tiers</td>
<td>See tiers</td>
<td>See tiers</td>
<td>See tiers</td>
<td>See tiers</td>
</tr>
</tbody>
</table>
Expand Down