import React from 'react' import { useTranslation } from 'next-i18next' import ChangelogUnit from '~components/ChangelogUnit' import { Dialog, DialogClose, DialogTitle, DialogTrigger, } from '~components/Dialog' import DialogContent from '~components/DialogContent' import CrossIcon from '~public/icons/Cross.svg' import './index.scss' const ChangelogModal = () => { const { t } = useTranslation('common') const headerRef = React.createRef() return (
  • {t('modals.changelog.title')}
  • event.preventDefault()} onEscapeKeyDown={() => {}} >
    {t('menu.changelog')}

    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 ChangelogModal