@capacitor/filesystem 4.1.1-nightly-5d1d5f5.0 → 4.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/README.md +9 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.1.1](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/filesystem@4.1.0...@capacitor/filesystem@4.1.1) (2022-09-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @capacitor/filesystem
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [4.1.0](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/filesystem@1.1.0...@capacitor/filesystem@4.1.0) (2022-08-24)
|
|
7
15
|
|
|
8
16
|
|
package/README.md
CHANGED
|
@@ -9,6 +9,15 @@ npm install @capacitor/filesystem
|
|
|
9
9
|
npx cap sync
|
|
10
10
|
```
|
|
11
11
|
|
|
12
|
+
## iOS
|
|
13
|
+
|
|
14
|
+
To have files appear in the Files app, you must set the following keys to `YES` in `Info.plist`:
|
|
15
|
+
|
|
16
|
+
- `UIFileSharingEnabled` (`Application supports iTunes file sharing`)
|
|
17
|
+
- `LSSupportsOpeningDocumentsInPlace` (`Supports opening documents in place`)
|
|
18
|
+
|
|
19
|
+
Read about [Configuring iOS](https://capacitorjs.com/docs/ios/configuration) for help.
|
|
20
|
+
|
|
12
21
|
## Android
|
|
13
22
|
|
|
14
23
|
If using <a href="#directory">`Directory.Documents`</a> or
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capacitor/filesystem",
|
|
3
|
-
"version": "4.1.1
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"description": "The Filesystem API provides a NodeJS-like API for working with files on the device.",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"publishConfig": {
|
|
80
80
|
"access": "public"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "1bd77dcaf3894c798da78745599b66451ec618fc"
|
|
83
83
|
}
|