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') return (

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

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