One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links ๐Ÿ“… calendar.xyehr.cn
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: bump to 2.2.13 and remove daily toast/update suffix

+2 -6
+1 -3
components/app/analytics/build-info-card.tsx
··· 175 175 ); 176 176 } 177 177 178 - const url = new URL(window.location.href); 179 - url.searchParams.set("updated", Date.now().toString()); 180 - window.location.assign(url.toString()); 178 + window.location.reload(); 181 179 } finally { 182 180 setIsUpdating(false); 183 181 }
-2
components/app/calendar.tsx
··· 43 43 import { addDays, addYears, subDays, subYears } from "date-fns"; 44 44 import EventPreview from "@/components/app/event/event-preview"; 45 45 import EventDialog from "@/components/app/event/event-dialog"; 46 - import DailyToast from "@/components/app/profile/daily-toast"; 47 46 import { ScrollArea } from "@/components/ui/scroll-area"; 48 47 import Sidebar from "@/components/app/sidebar/sidebar"; 49 48 import { translations, useLanguage } from "@/lib/i18n"; ··· 1102 1101 timezone={timezone} 1103 1102 /> 1104 1103 1105 - <DailyToast /> 1106 1104 1107 1105 <AlertDialog 1108 1106 open={deleteConfirmOpen}
+1 -1
package.json
··· 1 1 { 2 2 "name": "one-calendar", 3 - "version": "2.2.12", 3 + "version": "2.2.13", 4 4 "private": true, 5 5 "packageManager": "bun@1.3.8", 6 6 "scripts": {