From ec443e484e4ee030b595b5af203d315417f3d6d2 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Wed, 23 Aug 2023 03:11:06 -0700 Subject: [PATCH] Add 1.2.0 english update notes No bug fixes or more detailed notes yet --- components/about/UpdatesPage/index.tsx | 49 ++++++++++++++++++++++++++ public/locales/en/updates.json | 36 +++++++++++++++++++ 2 files changed, 85 insertions(+) diff --git a/components/about/UpdatesPage/index.tsx b/components/about/UpdatesPage/index.tsx index a9565363..e7541838 100644 --- a/components/about/UpdatesPage/index.tsx +++ b/components/about/UpdatesPage/index.tsx @@ -31,6 +31,20 @@ const UpdatesPage = () => { 'toasts', ], }, + '1.2.0': { + updates: 8, + bugs: 0, + images: [ + 'party-redesign', + 'rich-text', + 'mentions', + 'include-exclude', + 'raid-search', + 'search-views', + 'quick-summon', + 'grand-awakening', + ], + }, '202302U2': { updates: 1, }, @@ -57,6 +71,41 @@ const UpdatesPage = () => { return (

{common('about.segmented_control.updates')}

+
+
+

1.2.0

+ +
+
+
+

{updates('labels.features')}

+
    + {[...Array(versionUpdates['1.2.0'].updates)].map((e, i) => ( +
  • + {image( + updates(`versions.1.2.0.features.${i}.title`), + `${process.env.NEXT_PUBLIC_SIERO_IMG_URL}/updates`, + versionUpdates['1.2.0'].images[i], + 'jpg' + )} +

    {updates(`versions.1.2.0.features.${i}.title`)}

    +

    {updates(`versions.1.2.0.features.${i}.blurb`)}

    +
  • + ))} +
+
+
+

Bug fixes

+
    + {[...Array(versionUpdates['1.2.0'].bugs)].map((e, i) => ( +
  • + {updates(`versions.1.2.0.bugs.${i}`)} +
  • + ))} +
+
+
+