[desktop] Add What's New (2) (#3125)

This commit is contained in:
Manav Rathi
2024-09-04 15:38:25 +05:30
committed by GitHub
2 changed files with 12 additions and 9 deletions

View File

@@ -76,20 +76,23 @@ const ChangelogContent: React.FC = () => {
return (
<StyledUL>
<li>
<Typography color="primary">
{ut("Improved date search")}
</Typography>
<Typography>
<Typography color="primary">
{ut("Support for Passkeys")}
</Typography>
{ut(
"Passkeys can now be used as a second factor authentication mechanism.",
)}
Search for photos by day of week (<i>Wednesday</i>) or hour
of day (<i>8 pm</i>) in addition to the existing search by
partial dates (<i>20 July</i>, or even <i>2021</i>) and
relative dates (<i>Last month</i>,<i>Yesterday</i>).
</Typography>
</li>
<li>
<Typography color="primary">{ut("Window size")}</Typography>
<Typography color="primary">
{ut("Faster magic search")}
</Typography>
<Typography>
{ut(
"The app's window will remember its size and position.",
"The magic search beta, where you can search for photos just by typing whatever is in them, just got faster.",
)}
</Typography>
</li>

View File

@@ -26,7 +26,7 @@ import type { Electron } from "@/base/types/ipc";
* The what's new dialog sets the saved version to the current one whenever it
* is shown.
*/
const changelogVersion = 1;
const changelogVersion = 2;
/**
* Return true if we should show the {@link WhatsNew} dialog.