Skip to content

Commit

Permalink
DDEV v1.24.0 release announcement, remove twitter, replace with blues…
Browse files Browse the repository at this point in the history
…ky (#279)
  • Loading branch information
rfay authored Dec 3, 2024
1 parent aae7c57 commit 2a44a3f
Show file tree
Hide file tree
Showing 14 changed files with 176 additions and 54 deletions.
96 changes: 96 additions & 0 deletions public/img/blog/2024/12/php-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 8 additions & 7 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import {
EMAIL_URL,
COPYRIGHT_HOLDER,
MASTODON_URL,
X_URL,
GITHUB_URL,
STORE_URL,
STORE_URL,
BLUESKY_URL,
} from "../const"
import Icon from "./Icon.astro"
Expand All @@ -37,15 +37,16 @@ const navigation = {
name: "Discord",
href: DISCORD_URL,
},
{
name: "Bluesky",
href: BLUESKY_URL,
me:true
},
{
name: "Mastodon",
href: MASTODON_URL,
me: true
},
{
name: "X",
href: X_URL,
},
{
name: "GitHub",
href: GITHUB_URL,
Expand Down Expand Up @@ -135,7 +136,7 @@ const navigation = {
href={item.href}
target="_blank"
class={`text-gray-500 hover:text-black ${
["Discord", "X"].includes(item.name) ? `w-5` : `w-6`
["Discord", "Bluesky"].includes(item.name) ? `w-5` : `w-6`
}`}
rel={item.hasOwnProperty('me') && item.me ? 'me' : null}
>
Expand Down
6 changes: 3 additions & 3 deletions src/components/Icon.astro
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ const { name } = Astro.props
}

{
name === "X" && (
name === "Bluesky" && (
<svg
fill="currentColor"
viewBox="0 0 24 24"
viewBox="0 0 24 21"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z" />
<path xmlns="http://www.w3.org/2000/svg" d="M 5.2023171,1.4135582 C 7.9538596,3.4663892 10.913456,7.6286755 12.00007,9.8624003 13.086767,7.62884 16.046198,3.4663481 18.797824,1.4135582 20.783191,-0.06768254 24,-1.2137824 24,2.4331681 c 0,0.7283456 -0.420204,6.1184815 -0.666658,6.993549 -0.856671,3.0423399 -3.978349,3.8183039 -6.755133,3.3486549 4.853765,0.820951 6.088516,3.54024 3.421925,6.259528 C 14.93575,24.199361 12.721142,17.739118 12.153421,16.083768 12.049394,15.780303 12.000716,15.638339 12,15.759056 11.99928,15.638335 11.95061,15.780303 11.846579,16.083768 11.279106,17.739118 9.06454,24.199525 3.9998662,19.0349 1.3332336,16.315612 2.5679436,13.596159 7.421791,12.775372 4.6449245,13.245021 1.5232049,12.469053 0.66665816,9.4267171 0.42019616,8.5515674 0,3.1614315 0,2.4331681 0,-1.2137824 3.2168915,-0.06768254 5.2021764,1.4135582 Z"/>
</svg>
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/const.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export const SITE_TITLE = 'DDEV';
export const SITE_DESCRIPTION = 'Docker-based local PHP+Node.js web development environments.';
export const STORE_URL = 'https://ddev.threadless.com';
export const BLUESKY_URL = 'https://bsky.app/profile/ddev.bsky.social';
export const GITHUB_REPO = 'ddev/ddev';
export const GITHUB_URL = 'https://github.com/ddev/ddev';
export const GITHUB_URL_WEBSITE = 'https://github.com/ddev/ddev.com/tree/main/src/content/blog';
Expand All @@ -10,7 +11,6 @@ export const DISCORD_URL = 'https://discord.gg/5wjP76mBJD';
export const EMAIL_URL = "mailto:support%40ddev.com"
export const COPYRIGHT_HOLDER = 'DDEV Foundation'
export const MASTODON_URL = 'https://fosstodon.org/@ddev'
export const X_URL = 'https://twitter.com/search?q=%23ddev&src=typd&f=live'
export const ORG_STREET = '848 Montclair Dr'
export const ORG_CITY = 'Palisade'
export const ORG_STATE = 'Colorado'
Expand Down
2 changes: 1 addition & 1 deletion src/content/blog/ddev-local-database-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ I like to name my snapshots so I can find them later, so `ddev snapshot --name=t
- `cp .ddev/commands/host/mysqlworkbench.example .ddev/commands/host/mysqlworkbench && chmod +x .ddev/commands/host/mysqlworkbench`
- and then `ddev mysqlworkbench`

What are your favorite DDEV database tweaks, hacks, approaches, strategies? We’d love to hear about them [on Twitter](https://twitter.com/ddev) ([tag #ddev](https://twitter.com/hashtag/ddev?src=hashtag%5Fclick)) or any of our [support channels](https://ddev.readthedocs.io/en/stable/users/support/). Join the conversation!
What are your favorite DDEV database tweaks, hacks, approaches, strategies? We’d love to hear about them on any of our [support channels](https://ddev.readthedocs.io/en/stable/users/support/). Join the conversation!
4 changes: 2 additions & 2 deletions src/content/blog/ddev-nov-2024-newsletter.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ categories:

**THANKS to all of you who are supporting DDEV’s path to sustainability** and who have gotten your organizations to do so.

Want to keep up as the month goes along? Follow our [blog](https://ddev.com/blog/), [LinkedIn](https://www.linkedin.com/company/ddev-foundation), [Mastodon](https://fosstodon.org/@ddev), [X,](https://x.com/randyfay) and join us on [Discord](https://discord.gg/5wjP76mBJD).
Want to keep up as the month goes along? Follow our [blog](https://ddev.com/blog/), [LinkedIn](https://www.linkedin.com/company/ddev-foundation), [Mastodon](https://fosstodon.org/@ddev), and join us on [Discord](https://discord.gg/5wjP76mBJD).

Happy November from Randy Fay, DDEV Project Lead.
Happy November from Randy Fay, DDEV Project Lead.
4 changes: 2 additions & 2 deletions src/content/blog/ddev-oct-2024-newsletter.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ categories:

**THANKS to all of you who are supporting DDEV’s path to sustainability** and who have gotten your organizations to do so.

Want to keep up as the month goes along? Follow our [blog](https://ddev.com/blog/), [LinkedIn](https://www.linkedin.com/company/ddev-foundation), [Mastodon](https://fosstodon.org/@ddev), [X,](https://x.com/randyfay) and join us on [Discord](https://discord.gg/5wjP76mBJD).
Want to keep up as the month goes along? Follow our [blog](https://ddev.com/blog/), [LinkedIn](https://www.linkedin.com/company/ddev-foundation), [Mastodon](https://fosstodon.org/@ddev), and join us on [Discord](https://discord.gg/5wjP76mBJD).

Happy October from Randy Fay, DDEV Project Lead.
Happy October from Randy Fay, DDEV Project Lead.
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,4 @@ Part of building this project is working directly with our users to improve DDEV

Coming soon: We’ll be rolling out opt-in data collection and error reporting to help us make DDEV even better even faster. When you opt-in, you’ll be contributing data on how you’re using our open source tool and where you’re hitting issues. This will be a big factor in guiding product decisions. The more people who opt-in, the better the tool will become. Keep an eye out on future releases!

### Want more tips? Follow us on Twitter and subscribe to the newsletter.

When I come across tips and tricks from the community, I usually tweet about them. You can follow me as [@randyfay](https://twitter.com/randyfay).
### Want more tips? Subscribe to the newsletter.
2 changes: 1 addition & 1 deletion src/content/blog/release-v1.23.5-auto-port-assignment.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ You'll find loads more in the [release notes](https://github.com/ddev/ddev/relea

Our next release is planned to be a major release, v1.24.0, and will have PHP 8.4.0 and will change the default PHP version for new projects to PHP 8.3. We expect to have MySQL 8.4 in there as well.

Follow our [blog](https://ddev.com/blog/), [LinkedIn](https://www.linkedin.com/company/ddev-foundation), [Mastodon](https://fosstodon.org/@ddev), [X,](https://x.com/randyfay) and join us on [Discord](https://discord.gg/5wjP76mBJD). And we'd love to have you sign up for the [monthly newsletter](/newsletter).
Follow our [blog](https://ddev.com/blog/), [LinkedIn](https://www.linkedin.com/company/ddev-foundation), [Mastodon](https://fosstodon.org/@ddev), and join us on [Discord](https://discord.gg/5wjP76mBJD). And we'd love to have you sign up for the [monthly newsletter](/newsletter).
Loading

0 comments on commit 2a44a3f

Please sign in to comment.