From bc95a5e1a99caa206ba8a167715c821076fbfc16 Mon Sep 17 00:00:00 2001 From: Bubka <858858+Bubka@users.noreply.github.com> Date: Fri, 8 Nov 2024 13:01:09 +0100 Subject: [PATCH] Bump version number & Update change log --- changelog.md | 20 ++++++++++++++++++++ config/2fauth.php | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 9d44f5b6..1efe14fd 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,25 @@ # Change log +## [5.4.0] - 2024-11-08 + +### Changed + +- The links in the footer (Settings, [Admin,] Sign out) have been replaced by the email address of the logged in user. Clicking on this email shows a navigation menu containing the links that were previously visible in the footer. The former display is still available if you don't like the new one, just uncheck the new _Show email in footer_ user option in Settings. + +### Added + +- Administrators can now configure 2FAuth to register 2FA icons in the database (see the new _Store icons to database_ setting in the admin panel). When enabled, existing icons in the local file system are automatically registered in the database. These files are retained and then used for caching purposes only. 2FAuth will automatically re-create cache files if they are missing, so you only have to consider the database when backing up your instance. When disabled, 2FAuth will check that all registered icons in the database have a corresponding local file before flushing out the db icons table. ([#364](https://github.com/Bubka/2FAuth/issues/364)). +- The ability to export 2FA accounts as a list of otpauth URIs ([#386](https://github.com/Bubka/2FAuth/issues/386)). +- A _Show email in footer_ user option ([#404](https://github.com/Bubka/2FAuth/issues/404)). + +### Fixed + +- Part of the content of some pages (such as the error page) could be hidden by the footer on small screens. + +### API [1.6.0] + +- New `otpauth` query parameter for the GET operation of path `/api/v1/twofaccounts/export` to force data export as otpauth URIs instead of the 2FAuth json format. + ## [5.3.2] - 2024-10-26 ### Fixed diff --git a/config/2fauth.php b/config/2fauth.php index bb2fa0f5..9c5aee77 100644 --- a/config/2fauth.php +++ b/config/2fauth.php @@ -9,7 +9,7 @@ | */ - 'version' => '5.3.2', + 'version' => '5.4.0', 'repository' => 'https://github.com/Bubka/2FAuth', 'latestReleaseUrl' => 'https://api.github.com/repos/Bubka/2FAuth/releases/latest', 'installDocUrl' => 'https://docs.2fauth.app/getting-started/installation/self-hosted-server/',