Skip to content
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
1 change: 0 additions & 1 deletion config/gni/devtools_grd_files.gni
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,6 @@ grd_files_release_sources = [
"front_end/Images/psychiatry.svg",
"front_end/Images/react_native/learn-debugging-basics.jpg",
"front_end/Images/react_native/learn-native-debugging.jpg",
"front_end/Images/react_native/whats-new-083.jpg",
"front_end/Images/react_native/learn-react-native-devtools.jpg",
"front_end/Images/react_native/welcomeIcon.png",
"front_end/Images/record-start.svg",
Expand Down
1 change: 0 additions & 1 deletion config/gni/devtools_image_files.gni
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ devtools_image_files = [
"popoverArrows.png",
"react_native/learn-debugging-basics.jpg",
"react_native/learn-native-debugging.jpg",
"react_native/whats-new-083.jpg",
"react_native/learn-react-native-devtools.jpg",
"react_native/welcomeIcon.png",
"toolbarResizerVertical.png",
Expand Down
Binary file removed front_end/Images/react_native/whats-new-083.jpg
Binary file not shown.
18 changes: 0 additions & 18 deletions front_end/panels/rn_welcome/RNWelcome.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,6 @@ const UIStrings = {
docsNativeDebugging: 'Native Debugging',
/** @description "Native Debugging" item detail */
docsNativeDebuggingDetail: 'Find out more about native debugging tools',
/** @description Title for the "What's New" highlighted item */
whatsNewHighlightTitle: 'React Native 0.83 - Performance & Network debugging, improved desktop experience',
/** @description Detail for the "What's New" highlighted item */
whatsNewHighlightDetail: 'Learn about the latest debugging features in 0.83',
} as const;

const str_ = i18n.i18n.registerUIStrings('panels/rn_welcome/RNWelcome.ts', UIStrings);
Expand Down Expand Up @@ -131,10 +127,6 @@ export class RNWelcomeImpl extends UI.Widget.VBox implements
'../../Images/react_native/welcomeIcon.png',
import.meta.url,
).toString();
const whatsNewImageUrl = new URL(
'../../Images/react_native/whats-new-083.jpg',
import.meta.url,
).toString();
const docsImage1Url = new URL(
'../../Images/react_native/learn-debugging-basics.jpg',
import.meta.url,
Expand Down Expand Up @@ -196,16 +188,6 @@ export class RNWelcomeImpl extends UI.Widget.VBox implements
</header>
${showDocs ? html`
<section class="rn-welcome-docsfeed">
<div class="rn-welcome-docsfeed-highlight">
<h2 class="rn-welcome-h2">What's new</h2>
<button class="rn-welcome-docsfeed-item" type="button" role="link" @click=${this.#handleLinkPress.bind(this, 'https:\/\/reactnative.dev/blog')} title=${i18nString(UIStrings.docsDebuggingBasics)}>
<div class="rn-welcome-image" style="background-image: url('${whatsNewImageUrl}')"></div>
<div>
<p class="devtools-link">${i18nString(UIStrings.whatsNewHighlightTitle)}</p>
<p>${i18nString(UIStrings.whatsNewHighlightDetail)}</p>
</div>
</button>
</div>
<h2 class="rn-welcome-h2">Learn</h2>
<button class="rn-welcome-docsfeed-item" type="button" role="link" @click=${this.#handleLinkPress.bind(this, 'https:\/\/reactnative.dev/docs/debugging')} title=${i18nString(UIStrings.docsDebuggingBasics)}>
<div class="rn-welcome-image" style="background-image: url('${docsImage1Url}')"></div>
Expand Down
Loading