# UnifiedFiler v1.8.3 Notes

## Focus

v1.8.3 strengthens ListView / DetailView name editing so folders and files can be renamed inline from the item name.

## Added

- Inline rename by clicking the name of an already-selected file or folder.
- Public `startInlineRename()` API for Host-side command integration.
- New options:
  - `enableInlineRename`
  - `inlineRenameOnNameClick`
  - `inlineRenameDelay`
- Demo parameter controls for inline rename options.
- Inline rename events:
  - `inlineRenameStarted`
  - `inlineRenameCanceled`
  - existing `renamed` remains the success event.

## Improved

- Rename validates empty names and path separators before calling the storage adapter.
- GoogleDriveAdapter rename now receives the entry context so the returned path remains close to the current folder context.
- Inline rename is cancelled safely on double-click navigation, blank-area click, and Escape.

## Usage

```javascript
$('#fileExplorer').fileExplorer({
  enableInlineRename: true,
  inlineRenameOnNameClick: true,
  inlineRenameDelay: 360
});

$('#fileExplorer').fileExplorer('startInlineRename');
```
