Skip to content

Commit e6d62d8

Browse files
committed
Release 0.4.1: Fixes for CapacitorAdapter
- Fixed file picker filter to allow non-audio files with @capawesome/capacitor-file-picker - Added defensive checks for missing entry.name in readDirectory and scanDirectory
1 parent f94bd52 commit e6d62d8

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.4.1] - 2025-12-08
9+
10+
### Fixed
11+
12+
- CapacitorAdapter: Fixed file picker filter to allow non-audio files when using `@capawesome/capacitor-file-picker`
13+
- CapacitorAdapter: Added defensive checks for missing `entry.name` in `readDirectory` and `scanDirectory`
14+
815
## [0.4.0] - 2025-12-08
916

1017
### Changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "onefs",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "Cross-platform file system abstraction for web, Tauri, and Capacitor",
55
"type": "module",
66
"main": "./dist/index.cjs",

src/adapters/capacitor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,4 +695,4 @@ export class CapacitorAdapter implements OneFSAdapter {
695695
async clearRecent(): Promise<void> {
696696
await this.storage.clearFiles()
697697
}
698-
}
698+
}

0 commit comments

Comments
 (0)