Update release notes for v5.16 release

This commit is contained in:
Evan Hahn
2021-08-26 15:41:43 -05:00
committed by GitHub
parent 58fc86b4b8
commit d2503ffeff
2 changed files with 24 additions and 7 deletions
+12 -7
View File
@@ -6,6 +6,7 @@ import moment from 'moment';
import { Modal } from './Modal';
import { Intl } from './Intl';
import { Emojify } from './conversation/Emojify';
import { LocalizerType } from '../types/Util';
export type PropsType = {
@@ -25,14 +26,12 @@ export const WhatsNew = ({ i18n }: PropsType): JSX.Element => {
const viewReleaseNotes = () => {
setReleaseNotes({
date: new Date('08/17/2021'),
date: new Date('08/26/2021'),
version: window.getVersion(),
features: [
'WhatsNew__v5.15--1',
'WhatsNew__v5.15--2',
'WhatsNew__v5.15--3',
'WhatsNew__v5.15--4',
'WhatsNew__v5.15--5',
'WhatsNew__v5.16--1',
'WhatsNew__v5.16--2',
'WhatsNew__v5.16--3',
],
});
};
@@ -54,7 +53,13 @@ export const WhatsNew = ({ i18n }: PropsType): JSX.Element => {
<ul>
{releaseNotes.features.map(featureKey => (
<li key={featureKey}>
<Intl i18n={i18n} id={featureKey} />
<Intl
i18n={i18n}
id={featureKey}
renderText={({ key, text }) => (
<Emojify key={key} text={text} />
)}
/>
</li>
))}
</ul>