package update & added TB to file-/disksize
authorPhiTux <redacted>
Fri, 24 Oct 2025 08:25:27 +0000 (10:25 +0200)
committerPhiTux <redacted>
Fri, 24 Oct 2025 08:25:27 +0000 (10:25 +0200)
README.md
backend/version
frontend/package-lock.json
frontend/package.json
frontend/src/i18n/de.json
frontend/src/i18n/en.json
frontend/src/lib/Datepicker.svelte
frontend/src/lib/helpers.js

index 451492f732275b1e7ae48821043a4e652c5fe272..7cf0919965f3035f7c85b17801871dcc0ec1aa3c 100644 (file)
--- a/README.md
+++ b/README.md
@@ -166,6 +166,10 @@ The old version 1 is moved to the [v1 branch](https://github.com/PhiTux/DailyTxT
 
 ### 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
 
index 87060a5725c59891918d6f77358b63e806d959e9..a4f1c8347515644998429471bbb05bbc1056672f 100644 (file)
@@ -1 +1 @@
-2.0.0-testing.4
+2.0.0-testing.5
index a070708d975682e4a071aa41df7ec4a44655adb2..af5ebf6afeaf4352124e2491c0713883559f2150 100644 (file)
@@ -41,7 +41,7 @@
                                "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": {
index f6bab281750e94cf723e37ebaa51ac4e3748ab2b..8654c9d6ce9209302b54e805130da7b1ec4cc5cd 100644 (file)
@@ -30,7 +30,7 @@
                "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": {
index 1a076bc39718343f6bc45f3eed13b9ee839e0bd8..85e2ab6dd0af0d0dd3e66f20cdaa2577c2388517 100644 (file)
   "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"
index b928aac4718dcdf301f1dc8faecb9473aebe803f..7d29a5d885fdfd849f5de29139c070e8f3c7f330 100644 (file)
   "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"
index 1fd44477ce697b4ba275f551af3411ebd4a50f79..0e37e7780804938e3d794d4d24135422c2c8dab2 100644 (file)
@@ -24,7 +24,6 @@
                        ($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) {
index 801d8d84b51c359d1dd763fd36369a71d88ea23b..7b1bf866b1c4e3311cd8fd68cd3404c957e828ee 100644 (file)
@@ -5,7 +5,7 @@ function formatBytes(bytes) {
        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));
 
git clone https://git.99rst.org/PROJECT