@siteed/expo-audio-stream 1.5.0 → 1.5.2

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 CHANGED
@@ -8,19 +8,33 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
  ## [Unreleased]
9
9
 
10
10
 
11
+ ## [1.5.2] - 2024-12-11
12
+ - chore(expo-audio-stream): improved build publish script ([ad65a69](https://github.com/deeeed/expo-audio-stream/commit/ad65a69011273e0eab1ac0f464fc3b009fc3433d))
13
+ - fix(expo-audio-stream): missing plugin files ([e56254a](https://github.com/deeeed/expo-audio-stream/commit/e56254a4ffa1c015df3d300831ba0b392958b6c8))
14
+
15
+ ## [1.5.1] - 2024-12-11
16
+ - fix(expo-audio-stream): plugin deployment process and build system enhancements (#56) ([63fbeb8](https://github.com/deeeed/expo-audio-stream/commit/63fbeb82f56130dedeafa633e916f2ce0f8f1a67))
17
+
18
+
11
19
  ## [1.5.0] - 2024-12-10
12
20
  - feat(expo-audio-stream): add comprehensive ios audio session configuration support (#54) ([ba296ac](https://github.com/deeeed/expo-audio-stream/commit/ba296ac9be0d61e7a46cc64953e6f2c66881fdfd))
13
21
  - fix(expo-audio-stream): prevent invalid WAV files when stopping recording too quickly (#53) ([80f4898](https://github.com/deeeed/expo-audio-stream/commit/80f4898625cea52da8f3e34e425e61d7641353f7))
14
22
 
23
+
24
+
15
25
  ## [1.4.0] - 2024-12-05
16
26
  - chore: remove unusded dependencies ([ad81dd5](https://github.com/deeeed/expo-audio-stream/commit/ad81dd560c93dd1d04995a323a4ae72d4de20f3e))
17
27
 
18
28
 
29
+
30
+
19
31
  ## [1.3.1] - 2024-12-05
20
32
  - feat(web): implement throttling and optimize event processing (#49) ([da28765](https://github.com/deeeed/expo-audio-stream/commit/da2876524c2c9d6e0a980fde40a0197b929d8a7f))
21
33
 
22
34
 
23
35
 
36
+
37
+
24
38
  ## [1.3.0] - 2024-11-28
25
39
  ### Added
26
40
  - refactor(permissions): standardize permission status response structure across platforms (#44) ([7c9c800](https://github.com/deeeed/expo-audio-stream/commit/7c9c800d83b7cea3516643371484d5e1f3b99e4c))
@@ -32,6 +46,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
32
46
 
33
47
 
34
48
 
49
+
50
+
35
51
  ## [1.2.5] - 2024-11-12
36
52
  ### Added
37
53
  - docs(license): add MIT license to all packages (6 files changed)
@@ -40,6 +56,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
40
56
 
41
57
 
42
58
 
59
+
60
+
43
61
  ## [1.2.4] - 2024-11-05
44
62
  ### Changed
45
63
  - Android minimum audio interval set to 10ms.
@@ -51,6 +69,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
51
69
 
52
70
 
53
71
 
72
+
73
+
54
74
  ## [1.2.0] - 2024-10-24
55
75
  ### Added
56
76
  - Feature: Keep device awake during recording with `keepAwake` option
@@ -62,6 +82,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
62
82
 
63
83
 
64
84
 
85
+
86
+
65
87
  ## [1.1.17] - 2024-10-21
66
88
  ### Added
67
89
  - Support bluetooth headset on ios
@@ -70,6 +92,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
70
92
 
71
93
 
72
94
 
95
+
96
+
73
97
  ## [1.0.0] - 2024-04-01
74
98
 
75
99
  ### Added
@@ -81,7 +105,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
81
105
  - Feature: Audio features extraction during recording.
82
106
  - Feature: Consistent WAV PCM recording format across all platforms.
83
107
 
84
- [unreleased]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.5.0...HEAD
108
+ [unreleased]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.5.2...HEAD
109
+ [1.5.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.5.1...@siteed/expo-audio-stream@1.5.2
110
+ [1.5.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.5.0...@siteed/expo-audio-stream@1.5.1
85
111
  [1.5.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.4.0...@siteed/expo-audio-stream@1.5.0
86
112
  [1.4.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.3.1...@siteed/expo-audio-stream@1.4.0
87
113
  [1.3.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.3.0...@siteed/expo-audio-stream@1.3.1
package/app.plugin.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = require('./plugin/build')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@siteed/expo-audio-stream",
3
- "version": "1.5.0",
3
+ "version": "1.5.2",
4
4
  "description": "stream audio crossplatform",
5
5
  "license": "MIT",
6
6
  "main": "build/index.js",
@@ -26,6 +26,8 @@
26
26
  "android",
27
27
  "ios",
28
28
  "cpp",
29
+ "plugin/build",
30
+ "app.plugin.js",
29
31
  "generated",
30
32
  "README.md",
31
33
  "package.json",
@@ -42,8 +44,11 @@
42
44
  "!**/.*"
43
45
  ],
44
46
  "scripts": {
45
- "build": "expo-module build",
46
- "clean": "expo-module clean",
47
+ "build": "tsc",
48
+ "build:plugin": "yarn tsc --build plugin/tsconfig.json",
49
+ "build:plugin:dev": "expo-module build plugin",
50
+ "build:dev": "expo-module build",
51
+ "clean": "expo-module clean && rimraf plugin/build",
47
52
  "lint": "expo-module lint",
48
53
  "test": "expo-module test",
49
54
  "typecheck": "tsc --noEmit",
@@ -73,16 +78,16 @@
73
78
  "eslint-plugin-prettier": "^5.1.3",
74
79
  "eslint-plugin-promise": "^6.1.1",
75
80
  "eslint-plugin-react": "^7.34.1",
76
- "expo": "^52.0.17",
81
+ "expo": "~52.0.0",
77
82
  "expo-module-scripts": "^4.0.2",
78
- "expo-modules-core": "^2.1.1",
79
83
  "jest": "^29.7.0",
80
84
  "prettier": "^3.2.5",
81
- "react-native": "0.74.5",
85
+ "react-native": "0.76.0",
86
+ "rimraf": "^6.0.1",
82
87
  "size-limit": "^11.1.4",
83
88
  "ts-node": "^10.9.2",
84
- "typedoc": "^0.26.5",
85
- "typedoc-plugin-markdown": "^4.2.3",
89
+ "typedoc": "^0.27.4",
90
+ "typedoc-plugin-markdown": "^4.3.2",
86
91
  "typescript": "~5.3.3"
87
92
  },
88
93
  "peerDependencies": {
@@ -93,5 +98,8 @@
93
98
  "publishConfig": {
94
99
  "access": "public",
95
100
  "registry": "https://registry.npmjs.org"
101
+ },
102
+ "dependencies": {
103
+ "expo-modules-core": "^2.1.1"
96
104
  }
97
105
  }