### Newest Testing Versions:
```
+2.0.0-testing.6 (2025-10-24)
+- Added TB as file-/disksize
+- Update package dependencies
+
2.0.0-testing.5 (2025-10-22)
- Bugfix for wrong day-of-week in calendar
-2.0.0-testing.4
+2.0.0-testing.5
"svelte-fa": "^4.0.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0",
- "vite": "^7.1.9",
+ "vite": "^7.1.11",
"vite-plugin-mkcert": "^1.17.8"
}
},
}
},
"node_modules/vite": {
- "version": "7.1.9",
- "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.9.tgz",
- "integrity": "sha512-4nVGliEpxmhCL8DslSAUdxlB6+SMrhB0a1v5ijlh1xB1nEPuy1mxaHxysVucLHuWryAxLWg6a5ei+U4TLn/rFg==",
+ "version": "7.1.12",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.12.tgz",
+ "integrity": "sha512-ZWyE8YXEXqJrrSLvYgrRP7p62OziLW7xI5HYGWFzOvupfAlrLvURSzv/FyGyy0eidogEM3ujU+kUG1zuHgb6Ug==",
"dev": true,
"license": "MIT",
"dependencies": {
"svelte-fa": "^4.0.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.0",
- "vite": "^7.1.9",
+ "vite": "^7.1.11",
"vite-plugin-mkcert": "^1.17.8"
},
"overrides": {
"navbar": {
"greeting": "Hi {user}"
},
+ "nav": {
+ "logout": "Logout"
+ },
"read": {
"load_images": "{count, plural, one {{count} Bild laden ({size})} other {Alle {count} Bilder des Monats laden ({size})}}",
"no_entries": "Keine Einträge"
"navbar": {
"greeting": "Hi {user}"
},
+ "nav": {
+ "logout": "Logout"
+ },
"read": {
"load_images": "{count, plural, one {Load {count} image of the month ({size})} other {Load all {count} images of the month ({size})}}",
"no_entries": "No entries"
($cal.currentMonth !== lastMonth || $cal.currentYear !== lastYear) &&
$settings.firstDayOfWeek !== undefined
) {
- console.log($settings.firstDayOfWeek);
// set animation direction
animationDirection = $cal.currentMonth > lastMonth ? 1 : -1;
if ($cal.currentYear > lastYear) {
if (!+bytes) return '0 Bytes';
const k = 1024;
- const sizes = ['B', 'KB', 'MB', 'GB'];
+ const sizes = ['B', 'KB', 'MB', 'GB', 'TB'];
const i = Math.floor(Math.log(bytes) / Math.log(k));