Skip to content

Commit 1d69706

Browse files
committed
chore: Update dependencies and fix formatting issues in various files
1 parent d08776c commit 1d69706

File tree

9 files changed

+67
-68
lines changed

9 files changed

+67
-68
lines changed

.github/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,18 @@ For installation instructions, system requirements, and complete guides, please
4949

5050
<!-- COUNT-STATS:START -->
5151

52-
_Last updated: 2026-01-18T11:59:06.058Z_
52+
_Last updated: 2026-01-21T13:48:05.523Z_
5353

5454
| Extension | Files | Lines |
5555
| --- | ---: | ---: |
56-
| `.tsx` | 410 | 100,360 |
57-
| `.php` | 403 | 96,021 |
56+
| `.tsx` | 410 | 100,998 |
57+
| `.php` | 403 | 96,071 |
5858
| `.yaml` | 3 | 5,461 |
5959
| `.ts` | 41 | 5,227 |
60-
| `.sql` | 75 | 1,255 |
61-
| `.yml` | 15 | 1,233 |
60+
| `.sql` | 76 | 1,256 |
61+
| `.yml` | 14 | 1,126 |
6262
| `.css` | 1 | 147 |
63-
| **Total** | 948 | 209,704 |
63+
| **Total** | 948 | 210,286 |
6464

6565
<!-- COUNT-STATS:END -->
6666

backend/app/Controllers/Admin/UsersController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ public function create(Request $request): Response
513513
return ApiResponse::error('Username already exists', 'USERNAME_ALREADY_EXISTS', 409);
514514
}
515515
// Hash password
516-
$tempPassword = $data['password'];
516+
$tempPassword = $data['password'];
517517
$data['password'] = password_hash($data['password'], PASSWORD_BCRYPT);
518518
// Generate UUID
519519
$data['uuid'] = UUIDUtils::generateV4();

backend/app/Controllers/User/Auth/RegisterController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public function put(Request $request): Response
185185
return ApiResponse::error('Email already exists', 'EMAIL_ALREADY_EXISTS');
186186
}
187187

188-
$tempPassword = $data['password'];
188+
$tempPassword = $data['password'];
189189
// Create user
190190
$userInfo = [
191191
'username' => $data['username'],

backend/composer.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/storage/cron/php/UpdateEnv.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
class UpdateEnv implements TimeTask
2323
{
2424
public function run()
25-
{
25+
{
2626
$cron = new Cron('update-env', '1H');
2727
$force = getenv('FP_CRON_FORCE') === '1';
2828
try {

backend/storage/cron/runner.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
define('APP_ADDONS_DIR', APP_STORAGE_DIR . 'addons');
3636
define('APP_SOURCECODE_DIR', APP_DIR . 'app');
3737
define('APP_ROUTES_DIR', APP_SOURCECODE_DIR . '/Api');
38-
define('APP_DEBUG', true);
38+
define('APP_DEBUG', false);
3939
define('SYSTEM_OS_NAME', gethostname() . '/' . PHP_OS_FAMILY);
4040
define('SYSTEM_KERNEL_NAME', php_uname('s'));
4141
define('TELEMETRY', true);
@@ -134,7 +134,7 @@
134134
ob_end_flush();
135135
}
136136
ob_implicit_flush(true);
137-
137+
138138
try {
139139
// Re-initialize the app for the child process
140140
// This will automatically set self::$instance in the constructor

frontendv2/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"date-fns": "^4.1.0",
4343
"js-yaml": "^4.1.1",
4444
"lucide-react": "^0.562.0",
45-
"next": "16.1.3",
45+
"next": "16.1.4",
4646
"prettier": "^3.8.0",
4747
"react": "19.2.3",
4848
"react-dom": "19.2.3",
@@ -61,7 +61,7 @@
6161
"@types/react-dom": "^19",
6262
"babel-plugin-react-compiler": "1.0.0",
6363
"eslint": "^9",
64-
"eslint-config-next": "16.1.3",
64+
"eslint-config-next": "16.1.4",
6565
"eslint-config-prettier": "^10.1.8",
6666
"npm-run-all": "^4.1.5",
6767
"tailwindcss": "^4",

frontendv2/pnpm-lock.yaml

Lines changed: 50 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontendv2/src/app/(app)/server/[uuidShort]/files/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,6 @@ export default function ServerFilesPage({ params }: { params: Promise<{ uuidShor
293293
onCreateFolder={() => setCreateFolderOpen(true)}
294294
onUpload={handleUploadClick}
295295
onDeleteSelected={() => setDeleteOpen(true)}
296-
onDownloadSelected={() => selectedFiles.forEach((f) => handleDownload(f))}
297296
onArchiveSelected={() => handleCompress(selectedFiles)}
298297
onClearSelection={() => setSelectedFiles([])}
299298
onPullFile={() => setPullFileOpen(true)}

0 commit comments

Comments
 (0)