chore: update version to 1.5.0

This commit is contained in:
Linus Rath
2026-04-23 00:07:34 +02:00
parent 7494fc1776
commit c30c38a7af
13 changed files with 145 additions and 42 deletions
+1 -1
View File
@@ -126,7 +126,7 @@ export default function CalendarPage() {
}
}, [events, detailEvent]);
// Check auth on mount skip when already authenticated so that navigating
// Check auth on mount skip when already authenticated so that navigating
// between routes doesn't retrigger checkAuth's transient `{ client: null,
// isLoading: true }` reset, which was flashing the spinner on every nav.
useEffect(() => {
+1 -1
View File
@@ -103,7 +103,7 @@ export default function ContactsPage() {
const [isListResizing, setIsListResizing] = useState(false);
const listDragStartWidth = useRef(384);
// Check auth on mount skip when already authenticated so that navigating
// Check auth on mount skip when already authenticated so that navigating
// between routes doesn't retrigger checkAuth's transient `{ client: null,
// isLoading: true }` reset, which was flashing the spinner on every nav.
useEffect(() => {
+1 -1
View File
@@ -105,7 +105,7 @@ export default function FilesPage() {
const detailResource = detailName ? resources.find(r => r.name === detailName) || null : null;
// Check auth on mount skip when already authenticated so that navigating
// Check auth on mount skip when already authenticated so that navigating
// between routes doesn't retrigger checkAuth's transient `{ client: null,
// isLoading: true }` reset, which was flashing the spinner on every nav.
useEffect(() => {
+2 -2
View File
@@ -455,7 +455,7 @@ export default function Home() {
document.title = title;
}, [showComposer, composerMode, selectedEmail, selectedMailbox, mailboxes, t, appName]);
// Check auth on mount skip when already authenticated so that navigating
// Check auth on mount skip when already authenticated so that navigating
// between routes doesn't retrigger checkAuth's transient `{ client: null,
// isLoading: true }` reset, which was flashing the spinner on every nav.
useEffect(() => {
@@ -838,7 +838,7 @@ export default function Home() {
const handleArchive = async (emailToArchive: Email | null = selectedEmail) => {
if (!client || !emailToArchive) return;
// Read fresh mailboxes from the store batch archive calls this in a loop,
// Read fresh mailboxes from the store batch archive calls this in a loop,
// and each iteration needs to see folders created by prior iterations.
const currentMailboxes = useEmailStore.getState().mailboxes;
+1 -1
View File
@@ -179,7 +179,7 @@ export default function SettingsPage() {
const [isResizing, setIsResizing] = useState(false);
const dragStartWidth = useRef(256);
// Check auth on mount skip when already authenticated so that navigating
// Check auth on mount skip when already authenticated so that navigating
// between routes doesn't retrigger checkAuth's transient `{ client: null,
// isLoading: true }` reset, which was flashing the spinner on every nav.
useEffect(() => {