import React from 'react' import { useRouter } from 'next/router' import { useTranslation } from 'next-i18next' import ChangelogUnit from '~components/ChangelogUnit' import './index.scss' interface Props {} const UpdatesPage: React.FC = (props: Props) => { const { t: common } = useTranslation('common') function image( alt: string, url: string, filename: string, extension: string ) { const fallback = `${url}/${filename}.${extension}` let set = [] for (let i = 1; i < 3; i++) { if (i === 1) set.push(fallback) else set.push(`${url}/${filename}@${i}x.${extension} ${i}x`) } const sizes = set.join(', ') return {alt} } return (

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

1.1.0

New features

  • {image( 'Remix parties', `${process.env.NEXT_PUBLIC_SIERO_IMG_URL}/updates`, 'remix', 'jpg' )}

    Remix parties

    See a team you want to try but don't have Yatima? Now you can remix teams from other users to showcase substitutes, swap for items you have, or just give it your own flavor.

  • {image( 'Transcendence', `${process.env.NEXT_PUBLIC_SIERO_IMG_URL}/updates`, 'transcendence', 'jpg' )}

    Transcendence

    Now you can set the transcendence stage for Eternals and select summons (namely, Bahamut).

  • {image( 'Shields and Manatura', `${process.env.NEXT_PUBLIC_SIERO_IMG_URL}/updates`, 'accessories', 'jpg' )}

    Shields and Manatura

    When using Paladin or Manadiver, you can set their respective Shield or Manatura from the button next to the main character.

  • {image( 'Character Mastery', `${process.env.NEXT_PUBLIC_SIERO_IMG_URL}/updates`, 'mastery', 'jpg' )}

    Character Mastery

    You can now add individual values for your character's rings, earrings, and awakenings. Make sure to set your Perpetuity Rings!

  • {image( 'Updated team mechanics', `${process.env.NEXT_PUBLIC_SIERO_IMG_URL}/updates`, 'mechanics', 'jpg' )}

    Updated team mechanics

    Sorry, each party is only big enough for one Beelzebub.

  • {image( 'R Characters', `${process.env.NEXT_PUBLIC_SIERO_IMG_URL}/updates`, 'rare', 'jpg' )}

    R Characters

    R Characters have been added to the database for your mem—Proving Grounds compositions.

  • {image( 'Unique URLs for team tabs', `${process.env.NEXT_PUBLIC_SIERO_IMG_URL}/updates`, 'urls', 'jpg' )}

    Unique URLs for team tabs

    You can now link to individual tabs directly. The site will do it for you when you copy a URL, or you can append{' '} /characters, /weapons or{' '} /summons manually.

  • {image( 'Redesigned navigation', `${process.env.NEXT_PUBLIC_SIERO_IMG_URL}/updates`, 'nav', 'jpg' )}

    Redesigned navigation

    The top-navigation has been slightly redesigned. Click the party name to copy its URL!

  • {image( 'Update toasts', `${process.env.NEXT_PUBLIC_SIERO_IMG_URL}/updates`, 'toasts', 'jpg' )}

    Update toasts

    The site will now show an update in the bottom-right corner when new features or content is added.

Bug fixes

  • Fixed a bug that caused users to be logged out whenever they restarted their browser
  • Fixed a bug that caused Dark Opus weapons to disappear

2023-01 Flash Gala

New characters

New weapons

2023-01 Uncap

Updated characters

1.0.1

  • Extra party fields: Full Auto, Clear Time, and more
  • Support for Youtube short URLs
  • Responsive grids and lots of other mobile fixes
  • Many other bug fixes

2022-12 Legend Festival

New characters

New weapons

New summons

2022-12 Flash Gala

New characters

New weapons

1.0.0

  • First release!
  • You can embed Youtube videos now
  • Better clicking - right-click and open in a new tab
  • Manually set dark mode in Account Settings
  • Lots of bugs squashed
) } export default UpdatesPage