Full Changelog: v1.3.4...v1.3.5
Changes 5/19/2025
Added Folder strip & Create File
-
Folder strip in file list
loadFileList
now fetches sub-folders in parallel from/api/folder/getFolderList.php
.- Filters to only direct children of the current folder, hiding
profile_pics
andtrash
. - Injects a new
.folder-strip-container
just below the Files In above (summary + slider). - Clicking a folder in the strip updates:
- the breadcrumb (via
updateBreadcrumbTitle
) - the tree selection highlight
- reloads
loadFileList
for the chosen folder.
- the breadcrumb (via
-
Create File feature
- New “Create New File” button added to the file-actions toolbar and context menu.
- New endpoint
public/api/file/createFile.php
(handled byFileController
/FileModel
):- Creates an empty file if it doesn’t already exist.
- Appends an entry to
<folder>_metadata.json
withuploaded
timestamp anduploader
.
fileActions.js
:- Implemented
handleCreateFile()
to show a modal, POST to the new endpoint, and refresh the list. - Added translations for
create_new_file
andnewfile_placeholder
.
- Implemented