Add 1.2.0 english update notes

No bug fixes or more detailed notes yet
This commit is contained in:
Justin Edmund 2023-08-23 03:11:06 -07:00
parent 62b957034f
commit ec443e484e
2 changed files with 85 additions and 0 deletions

View file

@ -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 (
<div className={classes}>
<h1>{common('about.segmented_control.updates')}</h1>
<section className={styles.version} data-version="1.1">
<div className={styles.header}>
<h3>1.2.0</h3>
<time>2023/08/25</time>
</div>
<div className={styles.contents}>
<section>
<h2>{updates('labels.features')}</h2>
<ul className={styles.features}>
{[...Array(versionUpdates['1.2.0'].updates)].map((e, i) => (
<li key={`1.2.0-update-${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'
)}
<h3>{updates(`versions.1.2.0.features.${i}.title`)}</h3>
<p>{updates(`versions.1.2.0.features.${i}.blurb`)}</p>
</li>
))}
</ul>
</section>
<section>
<h2>Bug fixes</h2>
<ul className={styles.bugs}>
{[...Array(versionUpdates['1.2.0'].bugs)].map((e, i) => (
<li key={`1.2.0-bugfix-${i}`}>
{updates(`versions.1.2.0.bugs.${i}`)}
</li>
))}
</ul>
</section>
</div>
</section>
<ContentUpdate
version="2023-08F"
dateString="2023/08/16"

View file

@ -19,6 +19,42 @@
"uncap": "Uncap"
},
"versions": {
"1.2.0": {
"features": [
{
"title": "New party navigation",
"blurb": "Get a peek into all the aspects of a team quickly with new mini-units at the top of the page."
},
{
"title": "Rich text editing",
"blurb": "Now you can use rich text when writing team descriptions. Add bold, italics, links, and more!"
},
{
"title": "Mentions",
"blurb": "You can also link to individual items in your descriptions. Type @ followed by the name of the item."
},
{
"title": "Inclusion and Exclusion",
"blurb": "Sick of seeing Ereshkigal? Now you can filter teams by which items appear—or don't appear—in them."
},
{
"title": "Redesigned battle selection",
"blurb": "Battle selection has been revamped. Search for a battle by name, or filter by whether it's solo, a raid, or event-based."
},
{
"title": "Search views",
"blurb": "Now you can choose to see either recently used items or the newest items when adding weapons and summons"
},
{
"title": "Quick summons",
"blurb": "Specify which summon is set as the quick summon and specify auto-summon settings in Battle settings."
},
{
"title": "Grand awakenings",
"blurb": "Now you can set which Grand weapons you spent cages on for a little extra power."
}
]
},
"2023-08F": {
"features": ["Added new class \"Street King\""]
},