Skip to content

Commit 9d64145

Browse files
wojteknclaudeshaunandrews
authored
Add phpMyAdmin to What's New dialog (#2920)
* Add phpMyAdmin to What's New dialog Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Improve wording * Force What's New for next version * Update phpMyAdmin illustration with dot grid background Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> Co-authored-by: Shaun Andrews <shaun@automattic.com>
1 parent b7194a3 commit 9d64145

File tree

3 files changed

+212
-1
lines changed

3 files changed

+212
-1
lines changed

apps/studio/src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ export const IPC_VOID_HANDLERS = < const >[
100100
];
101101

102102
// What's New
103-
export const FORCE_WHATS_NEW_WHEN_PATCH_CHANGED = false;
103+
export const FORCE_WHATS_NEW_WHEN_PATCH_CHANGED = true;
Lines changed: 203 additions & 0 deletions
Loading

apps/studio/src/modules/whats-new/components/whats-new-modal.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { getLocalizedLink } from 'src/lib/get-localized-link';
88
import blueprintsIllustration from 'src/modules/whats-new/assets/blueprints-illustration.svg';
99
import cliIllustration from 'src/modules/whats-new/assets/cli-illustration.svg';
1010
import darkModeIllustration from 'src/modules/whats-new/assets/dark-mode-illustration.svg';
11+
import phpMyAdminIllustration from 'src/modules/whats-new/assets/phpmyadmin-illustration.svg';
1112
import { useI18nLocale } from 'src/stores';
1213

1314
interface WhatsNewPage {
@@ -63,6 +64,13 @@ export default function WhatsNewModal( { showModal, onClose }: WhatsNewModalProp
6364
'Studio now supports light, dark, and system appearance modes. Head to Settings to choose your preferred look.'
6465
),
6566
},
67+
{
68+
image: phpMyAdminIllustration,
69+
title: __( 'Manage your database with phpMyAdmin' ),
70+
description: __(
71+
"Studio now includes phpMyAdmin, giving you a visual interface to manage your site's database. Access it from the Overview tab."
72+
),
73+
},
6674
{
6775
image: cliIllustration,
6876
title: __( 'WP-CLI support and CLI site management' ),

0 commit comments

Comments
 (0)