@independo/capacitor-voice-recorder 7.1.11 → 7.1.12-dev.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/README.md +12 -9
- package/dist/docs.json +35 -2
- package/package.json +14 -13
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<p align="center">Capacitor plugin for audio recording</p>
|
|
7
7
|
|
|
8
8
|
<p align="center">
|
|
9
|
-
<img src="https://img.shields.io/maintenance/yes/
|
|
9
|
+
<img src="https://img.shields.io/maintenance/yes/2026" alt="Maintenance Badge: until 2026" />
|
|
10
10
|
<a href="https://www.npmjs.com/package/@independo/capacitor-voice-recorder"><img src="https://img.shields.io/npm/l/@independo/capacitor-voice-recorder" alt="License Badge: MIT" /></a>
|
|
11
11
|
<br>
|
|
12
12
|
<a href="https://www.npmjs.com/package/@independo/capacitor-voice-recorder"><img src="https://img.shields.io/npm/dw/@independo/capacitor-voice-recorder" alt="" role="presentation" /></a>
|
|
@@ -259,14 +259,17 @@ Represents a Base64 encoded string.
|
|
|
259
259
|
|
|
260
260
|
#### Directory
|
|
261
261
|
|
|
262
|
-
| Members | Value | Description
|
|
263
|
-
| --------------------- | ------------------------------- |
|
|
264
|
-
| **`Documents`** | <code>"DOCUMENTS"</code> | The Documents directory. On iOS it's the app's documents directory. Use this directory to store user-generated content. On Android it's the Public Documents folder, so it's accessible from other apps. It's not
|
|
265
|
-
| **`Data`** | <code>"DATA"</code> | The Data directory. On iOS it will use the Documents directory. On Android it's the directory holding application files. Files will be deleted when the application is uninstalled.
|
|
266
|
-
| **`Library`** | <code>"LIBRARY"</code> | The Library directory. On iOS it will use the Library directory. On Android it's the directory holding application files. Files will be deleted when the application is uninstalled.
|
|
267
|
-
| **`Cache`** | <code>"CACHE"</code> | The Cache directory. Can be deleted in cases of low memory, so use this directory to write app-specific files. that your app can re-create easily.
|
|
268
|
-
| **`External`** | <code>"EXTERNAL"</code> | The external directory. On iOS it will use the Documents directory. On Android it's the directory on the primary shared/external storage device where the application can place persistent files it owns. These files are internal to the applications, and not typically visible to the user as media. Files will be deleted when the application is uninstalled.
|
|
269
|
-
| **`ExternalStorage`** | <code>"EXTERNAL_STORAGE"</code> | The external storage directory. On iOS it will use the Documents directory. On Android it's the primary shared/external storage directory. It's not
|
|
262
|
+
| Members | Value | Description | Since |
|
|
263
|
+
| --------------------- | ------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ----- |
|
|
264
|
+
| **`Documents`** | <code>"DOCUMENTS"</code> | The Documents directory. On iOS it's the app's documents directory. Use this directory to store user-generated content. On Android it's the Public Documents folder, so it's accessible from other apps. It's not accessible on Android 10 unless the app enables legacy External Storage by adding `android:requestLegacyExternalStorage="true"` in the `application` tag in the `AndroidManifest.xml`. On Android 11 or newer the app can only access the files/folders the app created. | 1.0.0 |
|
|
265
|
+
| **`Data`** | <code>"DATA"</code> | The Data directory. On iOS it will use the Documents directory. On Android it's the directory holding application files. Files will be deleted when the application is uninstalled. | 1.0.0 |
|
|
266
|
+
| **`Library`** | <code>"LIBRARY"</code> | The Library directory. On iOS it will use the Library directory. On Android it's the directory holding application files. Files will be deleted when the application is uninstalled. | 1.1.0 |
|
|
267
|
+
| **`Cache`** | <code>"CACHE"</code> | The Cache directory. Can be deleted in cases of low memory, so use this directory to write app-specific files. that your app can re-create easily. | 1.0.0 |
|
|
268
|
+
| **`External`** | <code>"EXTERNAL"</code> | The external directory. On iOS it will use the Documents directory. On Android it's the directory on the primary shared/external storage device where the application can place persistent files it owns. These files are internal to the applications, and not typically visible to the user as media. Files will be deleted when the application is uninstalled. | 1.0.0 |
|
|
269
|
+
| **`ExternalStorage`** | <code>"EXTERNAL_STORAGE"</code> | The external storage directory. On iOS it will use the Documents directory. On Android it's the primary shared/external storage directory. It's not accessible on Android 10 unless the app enables legacy External Storage by adding `android:requestLegacyExternalStorage="true"` in the `application` tag in the `AndroidManifest.xml`. It's not accessible on Android 11 or newer. | 1.0.0 |
|
|
270
|
+
| **`ExternalCache`** | <code>"EXTERNAL_CACHE"</code> | The external cache directory. On iOS it will use the Documents directory. On Android it's the primary shared/external cache. | 7.1.0 |
|
|
271
|
+
| **`LibraryNoCloud`** | <code>"LIBRARY_NO_CLOUD"</code> | The Library directory without cloud backup. Used in iOS. On Android it's the directory holding application files. | 7.1.0 |
|
|
272
|
+
| **`Temporary`** | <code>"TEMPORARY"</code> | A temporary directory for iOS. On Android it's the directory holding the application cache. | 7.1.0 |
|
|
270
273
|
|
|
271
274
|
</docgen-api>
|
|
272
275
|
|
package/dist/docs.json
CHANGED
|
@@ -283,7 +283,7 @@
|
|
|
283
283
|
"name": "since"
|
|
284
284
|
}
|
|
285
285
|
],
|
|
286
|
-
"docs": "The Documents directory.\nOn iOS it's the app's documents directory.\nUse this directory to store user-generated content.\nOn Android it's the Public Documents folder, so it's accessible from other apps.\nIt's not
|
|
286
|
+
"docs": "The Documents directory.\nOn iOS it's the app's documents directory.\nUse this directory to store user-generated content.\nOn Android it's the Public Documents folder, so it's accessible from other apps.\nIt's not accessible on Android 10 unless the app enables legacy External Storage\nby adding `android:requestLegacyExternalStorage=\"true\"` in the `application` tag\nin the `AndroidManifest.xml`.\nOn Android 11 or newer the app can only access the files/folders the app created."
|
|
287
287
|
},
|
|
288
288
|
{
|
|
289
289
|
"name": "Data",
|
|
@@ -338,7 +338,40 @@
|
|
|
338
338
|
"name": "since"
|
|
339
339
|
}
|
|
340
340
|
],
|
|
341
|
-
"docs": "The external storage directory.\nOn iOS it will use the Documents directory.\nOn Android it's the primary shared/external storage directory.\nIt's not
|
|
341
|
+
"docs": "The external storage directory.\nOn iOS it will use the Documents directory.\nOn Android it's the primary shared/external storage directory.\nIt's not accessible on Android 10 unless the app enables legacy External Storage\nby adding `android:requestLegacyExternalStorage=\"true\"` in the `application` tag\nin the `AndroidManifest.xml`.\nIt's not accessible on Android 11 or newer."
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"name": "ExternalCache",
|
|
345
|
+
"value": "\"EXTERNAL_CACHE\"",
|
|
346
|
+
"tags": [
|
|
347
|
+
{
|
|
348
|
+
"text": "7.1.0",
|
|
349
|
+
"name": "since"
|
|
350
|
+
}
|
|
351
|
+
],
|
|
352
|
+
"docs": "The external cache directory.\nOn iOS it will use the Documents directory.\nOn Android it's the primary shared/external cache."
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"name": "LibraryNoCloud",
|
|
356
|
+
"value": "\"LIBRARY_NO_CLOUD\"",
|
|
357
|
+
"tags": [
|
|
358
|
+
{
|
|
359
|
+
"text": "7.1.0",
|
|
360
|
+
"name": "since"
|
|
361
|
+
}
|
|
362
|
+
],
|
|
363
|
+
"docs": "The Library directory without cloud backup. Used in iOS.\nOn Android it's the directory holding application files."
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"name": "Temporary",
|
|
367
|
+
"value": "\"TEMPORARY\"",
|
|
368
|
+
"tags": [
|
|
369
|
+
{
|
|
370
|
+
"text": "7.1.0",
|
|
371
|
+
"name": "since"
|
|
372
|
+
}
|
|
373
|
+
],
|
|
374
|
+
"docs": "A temporary directory for iOS.\nOn Android it's the directory holding the application cache."
|
|
342
375
|
}
|
|
343
376
|
]
|
|
344
377
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@independo/capacitor-voice-recorder",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.12-dev.1",
|
|
4
4
|
"description": "Capacitor plugin for voice recording",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -68,10 +68,10 @@
|
|
|
68
68
|
"capacitor-blob-writer": "^1.1.19"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@capacitor/
|
|
72
|
-
"@capacitor/
|
|
73
|
-
"@capacitor/ios": "^7.4.2",
|
|
71
|
+
"@capacitor/android": "^7.4.4",
|
|
72
|
+
"@capacitor/core": "^7.4.4",
|
|
74
73
|
"@capacitor/docgen": "^0.3.0",
|
|
74
|
+
"@capacitor/ios": "^7.4.4",
|
|
75
75
|
"@ionic/eslint-config": "^0.4.0",
|
|
76
76
|
"@ionic/prettier-config": "^4.0.0",
|
|
77
77
|
"@ionic/swiftlint-config": "^2.0.0",
|
|
@@ -79,17 +79,18 @@
|
|
|
79
79
|
"@semantic-release/changelog": "^6.0.3",
|
|
80
80
|
"@semantic-release/git": "^10.0.1",
|
|
81
81
|
"@types/jest": "^30.0.0",
|
|
82
|
-
"@
|
|
83
|
-
"
|
|
82
|
+
"@types/node": "^24.10.1",
|
|
83
|
+
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
84
|
+
"@typescript-eslint/parser": "^5.62.0",
|
|
85
|
+
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
84
86
|
"eslint": "^8.57.0",
|
|
85
|
-
"jest": "^30.0
|
|
86
|
-
"jest-environment-jsdom": "^30.0
|
|
87
|
-
"rollup": "^4.
|
|
88
|
-
"semantic-release": "^
|
|
87
|
+
"jest": "^30.2.0",
|
|
88
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
89
|
+
"rollup": "^4.53.3",
|
|
90
|
+
"semantic-release": "^25.0.2",
|
|
89
91
|
"swiftlint": "^2.0.0",
|
|
90
|
-
"ts-jest": "^29.4.
|
|
91
|
-
"typescript": "^5.
|
|
92
|
-
"@types/node": "^24.1.0"
|
|
92
|
+
"ts-jest": "^29.4.5",
|
|
93
|
+
"typescript": "^5.9.3"
|
|
93
94
|
},
|
|
94
95
|
"peerDependencies": {
|
|
95
96
|
"@capacitor/core": ">=7.0.0",
|