@independo/capacitor-voice-recorder 5.1.0-dev.1 → 6.0.0
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 +10 -0
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -27,6 +27,7 @@ npx cap sync
|
|
|
27
27
|
Add the following to your `Info.plist`:
|
|
28
28
|
|
|
29
29
|
```xml
|
|
30
|
+
|
|
30
31
|
<key>NSMicrophoneUsageDescription</key>
|
|
31
32
|
<string>This app uses the microphone to record audio.</string>
|
|
32
33
|
```
|
|
@@ -209,6 +210,15 @@ audioRef.oncanplaythrough = () => audioRef.play()
|
|
|
209
210
|
audioRef.load()
|
|
210
211
|
```
|
|
211
212
|
|
|
213
|
+
## Compatibility
|
|
214
|
+
|
|
215
|
+
Versioning follows Capacitor versioning. Major versions of the plugin are compatible with major versions of Capacitor.
|
|
216
|
+
|
|
217
|
+
| Plugin Version | Capacitor Version |
|
|
218
|
+
|----------------|-------------------|
|
|
219
|
+
| 5.* | 5 |
|
|
220
|
+
| 6.* | 6 |
|
|
221
|
+
|
|
212
222
|
## Collaborators
|
|
213
223
|
|
|
214
224
|
| Collaborators | | GitHub | Donation |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@independo/capacitor-voice-recorder",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "Capacitor plugin for voice recording",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -66,23 +66,23 @@
|
|
|
66
66
|
"get-blob-duration": "^1.2.0"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@capacitor/android": "^6.
|
|
70
|
-
"@capacitor/core": "^6.
|
|
71
|
-
"@capacitor/docgen": "^0.2.
|
|
72
|
-
"@capacitor/ios": "^6.
|
|
73
|
-
"@ionic/eslint-config": "^0.
|
|
74
|
-
"@ionic/prettier-config": "^
|
|
69
|
+
"@capacitor/android": "^6.1.1",
|
|
70
|
+
"@capacitor/core": "^6.1.1",
|
|
71
|
+
"@capacitor/docgen": "^0.2.2",
|
|
72
|
+
"@capacitor/ios": "^6.1.1",
|
|
73
|
+
"@ionic/eslint-config": "^0.4.0",
|
|
74
|
+
"@ionic/prettier-config": "^4.0.0",
|
|
75
75
|
"@ionic/swiftlint-config": "^1.1.2",
|
|
76
76
|
"@saithodev/semantic-release-backmerge": "^4.0.1",
|
|
77
77
|
"@semantic-release/changelog": "^6.0.3",
|
|
78
78
|
"@semantic-release/git": "^10.0.1",
|
|
79
79
|
"@typescript-eslint/eslint-plugin": "^5.59.5",
|
|
80
80
|
"conventional-changelog-conventionalcommits": "^8.0.0",
|
|
81
|
-
"eslint": "^8.
|
|
81
|
+
"eslint": "^8.49.0",
|
|
82
82
|
"prettier": "~2.8.8",
|
|
83
83
|
"prettier-plugin-java": "~2.1.0",
|
|
84
|
-
"rimraf": "^
|
|
85
|
-
"rollup": "^
|
|
84
|
+
"rimraf": "^6.0.1",
|
|
85
|
+
"rollup": "^4.19.2",
|
|
86
86
|
"semantic-release": "^24.0.0",
|
|
87
87
|
"swiftlint": "^1.0.2",
|
|
88
88
|
"typescript": "<4.5.0"
|