Skip to content

Commit 3a10e63

Browse files
triphoraProspector
andauthored
Add blog post: Pride Month 2025 campaign (#3879)
* Add blog post: Pride Month 2025 campaign * fix lint maybe * Revert changes to other stuff * run fix * use local links * re-run fix --------- Co-authored-by: Prospector <prospectordev@gmail.com>
1 parent 238138d commit 3a10e63

9 files changed

Lines changed: 54 additions & 2 deletions

File tree

18.8 KB
Loading

apps/frontend/src/public/news/feed/articles.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
{
22
"articles": [
3+
{
4+
"title": "A Pride Month Success: Over $8,400 Raised for The Trevor Project!",
5+
"summary": "A reflection on our Pride Month fundraiser campaign, which raised thousands for LGBTQ+ youth.",
6+
"thumbnail": "https://modrinth.com/news/article/pride-campaign-2025/thumbnail.webp",
7+
"date": "2025-07-01T18:00:00.000Z",
8+
"link": "https://modrinth.com/news/article/pride-campaign-2025"
9+
},
310
{
411
"title": "A New Chapter for Modrinth Servers",
512
"summary": "Modrinth Servers is now fully operated in-house by the Modrinth Team.",

apps/frontend/src/public/news/feed/rss.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,17 @@
44
<description><![CDATA[Keep up-to-date on the latest news from Modrinth.]]></description>
55
<link>https://modrinth.com/news/</link>
66
<generator>@modrinth/blog</generator>
7-
<lastBuildDate>Tue, 01 Jul 2025 01:57:44 GMT</lastBuildDate>
7+
<lastBuildDate>Wed, 02 Jul 2025 01:20:10 GMT</lastBuildDate>
88
<atom:link href="https://modrinth.com/news/feed/rss.xml" rel="self" type="application/rss+xml"/>
99
<language><![CDATA[en]]></language>
10+
<item>
11+
<title><![CDATA[A Pride Month Success: Over $8,400 Raised for The Trevor Project!]]></title>
12+
<description><![CDATA[A reflection on our Pride Month fundraiser campaign, which raised thousands for LGBTQ+ youth.]]></description>
13+
<link>https://modrinth.com/news/article/pride-campaign-2025/</link>
14+
<guid isPermaLink="false">https://modrinth.com/news/article/pride-campaign-2025/</guid>
15+
<pubDate>Tue, 01 Jul 2025 18:00:00 GMT</pubDate>
16+
<content:encoded>&lt;![CDATA[&lt;p&gt;What an incredible Pride Month! This June, we came together to support &lt;a href=&quot;https://www.thetrevorproject.org/&quot; rel=&quot;noopener nofollow ugc&quot;&gt;The Trevor Project&lt;/a&gt;, an essential organization providing crisis support and life-saving resources for LGBTQ+ young people. We are absolutely thrilled to announce that our community raised a stellar &lt;strong&gt;$2,395&lt;/strong&gt;. That&apos;s not all, though — during the campaign, some donations were matched by H&amp;amp;M and the Trevor Project&apos;s Board of Directors up to &lt;strong&gt;six times&lt;/strong&gt;, meaning the final impact of Modrinth&apos;s donations is a whopping &lt;strong&gt;$8,464&lt;/strong&gt;. Our team was also in the top ten for most funds raised this year!&lt;/p&gt;&lt;p&gt;To put your generosity into perspective, a donation this size can fund hundreds of hours on The Trevor Project&apos;s 24/7 crisis hotline. It gives young people a lifeline in their hardest moments and supports important educational services for many others.&lt;/p&gt;&lt;p&gt;We couldn&apos;t have done it without you. To every person who donated, shared the post, or simply cheered us on from the sidelines — thank you. We are incredibly proud of what we&apos;ve achieved together as a community.&lt;/p&gt;&lt;p&gt;While Pride Month provides a special opportunity to focus our efforts, the need for these critical resources continues all year long. The challenges faced by LGBTQ+ young people do not end on July 1st, and organizations like The Trevor Project require ongoing support to continue their life-saving work. If you are able, we encourage you to consider making a contribution at any time.&lt;/p&gt;&lt;p&gt;As part of this campaign, we also added the option to donate part of a Modrinth rewards balance to a variety of charities. This means Modrinth creators can directly use the revenue they earned from ads and &lt;a href=&quot;/plus&quot; rel=&quot;noopener nofollow ugc&quot;&gt;Modrinth+&lt;/a&gt; to donate to dozens of causes close to their heart. The Trevor Project is one option, alongside other prominent non-profits such as the American Cancer Society, St. Jude&apos;s Children&apos;s Research Hospital, Doctors Without Borders, and the Southern Poverty Law Center. You can donate your Modrinth balance to these groups and many more by clicking the &amp;quot;Withdraw&amp;quot; button on &lt;a href=&quot;/dashboard/revenue&quot; rel=&quot;noopener nofollow ugc&quot;&gt;your revenue dashboard&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Modrinth&apos;s June 2025 campaign will be kept for posterity at &lt;a href=&quot;https://modrinth.com/pride&quot;&gt;this link&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://www.thetrevorproject.org/&quot; rel=&quot;noopener nofollow ugc&quot;&gt;You can donate to The Trevor Project at any time at this link.&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;]]&gt;</content:encoded>
17+
</item>
1018
<item>
1119
<title><![CDATA[A New Chapter for Modrinth Servers]]></title>
1220
<description><![CDATA[Modrinth Servers is now fully operated in-house by the Modrinth Team.]]></description>

packages/app-lib/src/api/jre.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ pub async fn auto_install_java(java_version: u32) -> crate::Result<PathBuf> {
135135
#[cfg(target_os = "macos")]
136136
{
137137
base_path = base_path
138-
.join(format!("zulu-{}.jre", java_version))
138+
.join(format!("zulu-{java_version}.jre"))
139139
.join("Contents")
140140
.join("Home")
141141
.join("bin")
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: 'A Pride Month Success: Over $8,400 Raised for The Trevor Project!'
3+
short_title: Pride Month Fundraiser 2025
4+
summary: A reflection on our Pride Month fundraiser campaign, which raised thousands for LGBTQ+ youth.
5+
short_summary: A reflection on our Pride Month fundraiser campaign.
6+
date: 2025-07-01T14:00:00-04:00
7+
---
8+
9+
What an incredible Pride Month! This June, we came together to support [The Trevor Project](https://www.thetrevorproject.org/), an essential organization providing crisis support and life-saving resources for LGBTQ+ young people. We are absolutely thrilled to announce that our community raised a stellar **$2,395**. That's not all, though — during the campaign, some donations were matched by H&M and the Trevor Project's Board of Directors up to **six times**, meaning the final impact of Modrinth's donations is a whopping **$8,464**. Our team was also in the top ten for most funds raised this year!
10+
11+
To put your generosity into perspective, a donation this size can fund hundreds of hours on The Trevor Project's 24/7 crisis hotline. It gives young people a lifeline in their hardest moments and supports important educational services for many others.
12+
13+
We couldn't have done it without you. To every person who donated, shared the post, or simply cheered us on from the sidelines — thank you. We are incredibly proud of what we've achieved together as a community.
14+
15+
While Pride Month provides a special opportunity to focus our efforts, the need for these critical resources continues all year long. The challenges faced by LGBTQ+ young people do not end on July 1st, and organizations like The Trevor Project require ongoing support to continue their life-saving work. If you are able, we encourage you to consider making a contribution at any time.
16+
17+
As part of this campaign, we also added the option to donate part of a Modrinth rewards balance to a variety of charities. This means Modrinth creators can directly use the revenue they earned from ads and [Modrinth+](/plus) to donate to dozens of causes close to their heart. The Trevor Project is one option, alongside other prominent non-profits such as the American Cancer Society, St. Jude's Children's Research Hospital, Doctors Without Borders, and the Southern Poverty Law Center. You can donate your Modrinth balance to these groups and many more by clicking the "Withdraw" button on [your revenue dashboard](/dashboard/revenue).
18+
19+
Modrinth's June 2025 campaign will be kept for posterity at [this link](https://modrinth.com/pride).
20+
21+
**[You can donate to The Trevor Project at any time at this link.](https://www.thetrevorproject.org/)**

packages/blog/compiled/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import { article as modrinth_beta } from './modrinth_beta'
1717
import { article as modrinth_servers_beta } from './modrinth_servers_beta'
1818
import { article as new_site_beta } from './new_site_beta'
1919
import { article as plugins_resource_packs } from './plugins_resource_packs'
20+
import { article as pride_campaign_2025 } from './pride_campaign_2025'
2021
import { article as redesign } from './redesign'
2122
import { article as two_years_of_modrinth_history } from './two_years_of_modrinth_history'
2223
import { article as two_years_of_modrinth } from './two_years_of_modrinth'
@@ -42,6 +43,7 @@ export const articles = [
4243
modrinth_servers_beta,
4344
new_site_beta,
4445
plugins_resource_packs,
46+
pride_campaign_2025,
4547
redesign,
4648
two_years_of_modrinth_history,
4749
two_years_of_modrinth,
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// AUTO-GENERATED FILE - DO NOT EDIT
2+
export const html = `<p>What an incredible Pride Month! This June, we came together to support <a href="https://www.thetrevorproject.org/" rel="noopener nofollow ugc">The Trevor Project</a>, an essential organization providing crisis support and life-saving resources for LGBTQ+ young people. We are absolutely thrilled to announce that our community raised a stellar <strong>$2,395</strong>. That's not all, though — during the campaign, some donations were matched by H&amp;M and the Trevor Project's Board of Directors up to <strong>six times</strong>, meaning the final impact of Modrinth's donations is a whopping <strong>$8,464</strong>. Our team was also in the top ten for most funds raised this year!</p><p>To put your generosity into perspective, a donation this size can fund hundreds of hours on The Trevor Project's 24/7 crisis hotline. It gives young people a lifeline in their hardest moments and supports important educational services for many others.</p><p>We couldn't have done it without you. To every person who donated, shared the post, or simply cheered us on from the sidelines — thank you. We are incredibly proud of what we've achieved together as a community.</p><p>While Pride Month provides a special opportunity to focus our efforts, the need for these critical resources continues all year long. The challenges faced by LGBTQ+ young people do not end on July 1st, and organizations like The Trevor Project require ongoing support to continue their life-saving work. If you are able, we encourage you to consider making a contribution at any time.</p><p>As part of this campaign, we also added the option to donate part of a Modrinth rewards balance to a variety of charities. This means Modrinth creators can directly use the revenue they earned from ads and <a href="/plus" rel="noopener nofollow ugc">Modrinth+</a> to donate to dozens of causes close to their heart. The Trevor Project is one option, alongside other prominent non-profits such as the American Cancer Society, St. Jude's Children's Research Hospital, Doctors Without Borders, and the Southern Poverty Law Center. You can donate your Modrinth balance to these groups and many more by clicking the &quot;Withdraw&quot; button on <a href="/dashboard/revenue" rel="noopener nofollow ugc">your revenue dashboard</a>.</p><p>Modrinth's June 2025 campaign will be kept for posterity at <a href="https://modrinth.com/pride">this link</a>.</p><p><strong><a href="https://www.thetrevorproject.org/" rel="noopener nofollow ugc">You can donate to The Trevor Project at any time at this link.</a></strong></p>`
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// AUTO-GENERATED FILE - DO NOT EDIT
2+
export const article = {
3+
html: () => import(`./pride_campaign_2025.content`).then((m) => m.html),
4+
title: 'A Pride Month Success: Over $8,400 Raised for The Trevor Project!',
5+
summary:
6+
'A reflection on our Pride Month fundraiser campaign, which raised thousands for LGBTQ+ youth.',
7+
date: '2025-07-01T18:00:00.000Z',
8+
slug: 'pride-campaign-2025',
9+
thumbnail: true,
10+
short_title: 'Pride Month Fundraiser 2025',
11+
short_summary: 'A reflection on our Pride Month fundraiser campaign.',
12+
}
18.8 KB
Loading

0 commit comments

Comments
 (0)