buttplug 3.2.1 → 4.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/.eslintrc.js +25 -25
- package/.jscsrc +2 -2
- package/.jshintrc +5 -5
- package/.prettierrc.json +3 -3
- package/.yarnrc.yml +5 -1
- package/CHANGELOG.md +577 -571
- package/LICENSE +27 -27
- package/README.md +97 -97
- package/dist/main/src/client/ButtplugBrowserWebsocketClientConnector.js +6 -9
- package/dist/main/src/client/ButtplugBrowserWebsocketClientConnector.js.map +1 -1
- package/dist/main/src/client/{Client.d.ts → ButtplugClient.d.ts} +3 -4
- package/dist/main/src/client/ButtplugClient.js +227 -0
- package/dist/main/src/client/ButtplugClient.js.map +1 -0
- package/dist/main/src/client/ButtplugClientConnectorException.js +17 -7
- package/dist/main/src/client/ButtplugClientConnectorException.js.map +1 -1
- package/dist/main/src/client/ButtplugClientDevice.d.ts +13 -28
- package/dist/main/src/client/ButtplugClientDevice.js +105 -247
- package/dist/main/src/client/ButtplugClientDevice.js.map +1 -1
- package/dist/main/src/client/ButtplugClientDeviceCommand.d.ts +42 -0
- package/dist/main/src/client/ButtplugClientDeviceCommand.js +105 -0
- package/dist/main/src/client/ButtplugClientDeviceCommand.js.map +1 -0
- package/dist/main/src/client/ButtplugClientDeviceFeature.d.ts +18 -0
- package/dist/main/src/client/ButtplugClientDeviceFeature.js +166 -0
- package/dist/main/src/client/ButtplugClientDeviceFeature.js.map +1 -0
- package/dist/main/src/client/ButtplugNodeWebsocketClientConnector.d.ts +1 -8
- package/dist/main/src/client/ButtplugNodeWebsocketClientConnector.js +1 -4
- package/dist/main/src/client/ButtplugNodeWebsocketClientConnector.js.map +1 -1
- package/dist/main/src/core/Exceptions.js +27 -9
- package/dist/main/src/core/Exceptions.js.map +1 -1
- package/dist/main/src/core/Logging.js +12 -6
- package/dist/main/src/core/Logging.js.map +1 -1
- package/dist/main/src/core/Messages.d.ts +118 -228
- package/dist/main/src/core/Messages.js +51 -404
- package/dist/main/src/core/Messages.js.map +1 -1
- package/dist/main/src/index.d.ts +2 -2
- package/dist/main/src/index.js +4 -2
- package/dist/main/src/index.js.map +1 -1
- package/dist/main/src/utils/ButtplugBrowserWebsocketConnector.js +40 -52
- package/dist/main/src/utils/ButtplugBrowserWebsocketConnector.js.map +1 -1
- package/dist/main/src/utils/ButtplugMessageSorter.js +27 -15
- package/dist/main/src/utils/ButtplugMessageSorter.js.map +1 -1
- package/dist/main/src/utils/Utils.js +1 -2
- package/dist/main/src/utils/Utils.js.map +1 -1
- package/dist/web/buttplug.js +1 -38
- package/dist/web/buttplug.mjs +595 -1984
- package/dist/web/client/ButtplugBrowserWebsocketClientConnector.d.ts +0 -7
- package/dist/web/client/{Client.d.ts → ButtplugClient.d.ts} +3 -11
- package/dist/web/client/ButtplugClientConnectorException.d.ts +0 -7
- package/dist/web/client/ButtplugClientDevice.d.ts +14 -29
- package/dist/web/client/ButtplugClientDeviceCommand.d.ts +42 -0
- package/dist/web/client/ButtplugClientDeviceFeature.d.ts +18 -0
- package/dist/web/client/ButtplugNodeWebsocketClientConnector.d.ts +1 -15
- package/dist/web/client/IButtplugClientConnector.d.ts +0 -7
- package/dist/web/core/Exceptions.d.ts +1 -1
- package/dist/web/core/Logging.d.ts +0 -7
- package/dist/web/core/Messages.d.ts +118 -227
- package/dist/web/index.d.ts +2 -2
- package/dist/web/utils/ButtplugBrowserWebsocketConnector.d.ts +0 -7
- package/examples/node/SYNC_MANIFEST.md +105 -0
- package/examples/node/application-example.ts +213 -0
- package/examples/node/async-example.ts +124 -0
- package/examples/node/connection-example.ts +76 -0
- package/examples/node/device-control-example.ts +131 -0
- package/examples/node/device-enumeration-example.ts +86 -0
- package/examples/node/device-info-example.ts +131 -0
- package/examples/node/errors-example.ts +166 -0
- package/examples/node/package-lock.json +281 -0
- package/examples/node/package.json +25 -0
- package/examples/node/remote-connector-example.ts +84 -0
- package/examples/node/tsconfig.json +14 -0
- package/examples/web/application-example.js +197 -0
- package/examples/web/async-example.js +90 -0
- package/examples/web/device-control-example.js +87 -0
- package/examples/web/device-enumeration-example.js +49 -0
- package/examples/web/device-info-example.js +100 -0
- package/examples/web/errors-example.js +110 -0
- package/examples/web/index.html +55 -0
- package/examples/web/logging.js +42 -0
- package/examples/web/ping-timeout-example.js +59 -0
- package/examples/web/remote-connector-example.js +68 -0
- package/node-test.js +24 -0
- package/node-test.ts +23 -5
- package/package.json +85 -87
- package/src/client/ButtplugBrowserWebsocketClientConnector.ts +25 -25
- package/src/client/ButtplugClient.ts +242 -0
- package/src/client/ButtplugClientConnectorException.ts +16 -16
- package/src/client/ButtplugClientDevice.ts +178 -401
- package/src/client/ButtplugClientDeviceCommand.ts +112 -0
- package/src/client/ButtplugClientDeviceFeature.ts +138 -0
- package/src/client/ButtplugNodeWebsocketClientConnector.ts +17 -17
- package/src/client/IButtplugClientConnector.ts +18 -18
- package/src/core/Exceptions.ts +107 -101
- package/src/core/Logging.ts +197 -197
- package/src/core/Messages.ts +209 -480
- package/src/core/index.d.ts +4 -4
- package/src/index.ts +21 -19
- package/src/utils/ButtplugBrowserWebsocketConnector.ts +89 -92
- package/src/utils/ButtplugMessageSorter.ts +66 -65
- package/src/utils/Utils.ts +3 -3
- package/tsconfig.json +22 -22
- package/tsfmt.json +14 -14
- package/tslint.json +27 -27
- package/typedocconfig.js +6 -6
- package/vite.config.ts +26 -26
- package/dist/main/src/client/Client.js +0 -242
- package/dist/main/src/client/Client.js.map +0 -1
- package/dist/main/src/core/MessageUtils.d.ts +0 -10
- package/dist/main/src/core/MessageUtils.js +0 -65
- package/dist/main/src/core/MessageUtils.js.map +0 -1
- package/dist/web/core/MessageUtils.d.ts +0 -10
- package/doc/.nojekyll +0 -1
- package/doc/assets/highlight.css +0 -22
- package/doc/assets/main.js +0 -58
- package/doc/assets/search.js +0 -1
- package/doc/assets/style.css +0 -1280
- package/doc/classes/ButtplugBrowserWebsocketClientConnector.html +0 -234
- package/doc/classes/ButtplugClient.html +0 -331
- package/doc/classes/ButtplugClientConnectorException.html +0 -216
- package/doc/classes/ButtplugClientDevice.html +0 -489
- package/doc/classes/ButtplugDeviceError.html +0 -218
- package/doc/classes/ButtplugDeviceMessage.html +0 -165
- package/doc/classes/ButtplugError.html +0 -220
- package/doc/classes/ButtplugInitError.html +0 -218
- package/doc/classes/ButtplugLogger.html +0 -288
- package/doc/classes/ButtplugMessage.html +0 -147
- package/doc/classes/ButtplugMessageError.html +0 -218
- package/doc/classes/ButtplugMessageSorter.html +0 -128
- package/doc/classes/ButtplugNodeWebsocketClientConnector.html +0 -239
- package/doc/classes/ButtplugPingError.html +0 -218
- package/doc/classes/ButtplugSystemMessage.html +0 -150
- package/doc/classes/ButtplugUnknownError.html +0 -218
- package/doc/classes/DeviceAdded.html +0 -186
- package/doc/classes/DeviceInfo.html +0 -114
- package/doc/classes/DeviceList.html +0 -160
- package/doc/classes/DeviceRemoved.html +0 -158
- package/doc/classes/Error.html +0 -179
- package/doc/classes/GenericDeviceMessageAttributes.html +0 -107
- package/doc/classes/GenericMessageSubcommand.html +0 -90
- package/doc/classes/LinearCmd.html +0 -187
- package/doc/classes/LogMessage.html +0 -134
- package/doc/classes/MessageAttributes.html +0 -160
- package/doc/classes/Ok.html +0 -151
- package/doc/classes/Ping.html +0 -151
- package/doc/classes/RawDeviceMessageAttributes.html +0 -86
- package/doc/classes/RawReadCmd.html +0 -188
- package/doc/classes/RawReading.html +0 -179
- package/doc/classes/RawSubscribeCmd.html +0 -170
- package/doc/classes/RawUnsubscribeCmd.html +0 -170
- package/doc/classes/RawWriteCmd.html +0 -188
- package/doc/classes/RequestDeviceList.html +0 -151
- package/doc/classes/RequestServerInfo.html +0 -169
- package/doc/classes/RotateCmd.html +0 -187
- package/doc/classes/RotateSubcommand.html +0 -108
- package/doc/classes/ScalarCmd.html +0 -170
- package/doc/classes/ScalarSubcommand.html +0 -108
- package/doc/classes/ScanningFinished.html +0 -146
- package/doc/classes/SensorDeviceMessageAttributes.html +0 -107
- package/doc/classes/SensorReadCmd.html +0 -179
- package/doc/classes/SensorReading.html +0 -188
- package/doc/classes/ServerInfo.html +0 -178
- package/doc/classes/StartScanning.html +0 -151
- package/doc/classes/StopAllDevices.html +0 -151
- package/doc/classes/StopDeviceCmd.html +0 -161
- package/doc/classes/StopScanning.html +0 -151
- package/doc/classes/VectorSubcommand.html +0 -108
- package/doc/enums/ActuatorType.html +0 -104
- package/doc/enums/ButtplugLogLevel.html +0 -97
- package/doc/enums/ErrorClass.html +0 -90
- package/doc/enums/SensorType.html +0 -90
- package/doc/functions/FromJSON.html +0 -113
- package/doc/index.html +0 -184
- package/doc/interfaces/IButtplugClientConnector.html +0 -137
- package/doc/modules.html +0 -176
- package/doc/variables/DEFAULT_MESSAGE_ID.html +0 -104
- package/doc/variables/MAX_ID.html +0 -104
- package/doc/variables/MESSAGE_SPEC_VERSION.html +0 -104
- package/doc/variables/SYSTEM_MESSAGE_ID.html +0 -104
- package/src/client/Client.ts +0 -276
- package/src/core/MessageUtils.ts +0 -48
package/CHANGELOG.md
CHANGED
|
@@ -1,571 +1,577 @@
|
|
|
1
|
-
# v3.2.
|
|
2
|
-
|
|
3
|
-
## Bugfixes
|
|
4
|
-
|
|
5
|
-
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
# v1.0.
|
|
69
|
-
|
|
70
|
-
##
|
|
71
|
-
|
|
72
|
-
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
-
|
|
84
|
-
|
|
85
|
-
# v1.0.
|
|
86
|
-
|
|
87
|
-
##
|
|
88
|
-
|
|
89
|
-
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
# v1.0.
|
|
111
|
-
|
|
112
|
-
## Bugfixes
|
|
113
|
-
|
|
114
|
-
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
# v1.0.
|
|
139
|
-
|
|
140
|
-
## Bugfixes
|
|
141
|
-
|
|
142
|
-
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
# v1.0.
|
|
155
|
-
|
|
156
|
-
##
|
|
157
|
-
|
|
158
|
-
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
-
|
|
175
|
-
|
|
176
|
-
# v1.0.
|
|
177
|
-
|
|
178
|
-
##
|
|
179
|
-
|
|
180
|
-
-
|
|
181
|
-
|
|
182
|
-
# v1.0.
|
|
183
|
-
|
|
184
|
-
##
|
|
185
|
-
|
|
186
|
-
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
-
|
|
194
|
-
|
|
195
|
-
# v1.0.0 Beta
|
|
196
|
-
|
|
197
|
-
## Bugfixes
|
|
198
|
-
|
|
199
|
-
- Fix
|
|
200
|
-
|
|
201
|
-
# v1.0.0 Beta
|
|
202
|
-
|
|
203
|
-
##
|
|
204
|
-
|
|
205
|
-
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
-
|
|
256
|
-
- This is
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
-
|
|
278
|
-
|
|
279
|
-
# Version 0.12.
|
|
280
|
-
|
|
281
|
-
## Features
|
|
282
|
-
|
|
283
|
-
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
# Version 0.11.
|
|
295
|
-
|
|
296
|
-
## Bugfixes
|
|
297
|
-
|
|
298
|
-
-
|
|
299
|
-
|
|
300
|
-
# Version 0.11.
|
|
301
|
-
|
|
302
|
-
##
|
|
303
|
-
|
|
304
|
-
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
-
|
|
312
|
-
-
|
|
313
|
-
-
|
|
314
|
-
-
|
|
315
|
-
-
|
|
316
|
-
-
|
|
317
|
-
-
|
|
318
|
-
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
-
|
|
325
|
-
|
|
326
|
-
# Version 0.11.
|
|
327
|
-
|
|
328
|
-
## Features
|
|
329
|
-
|
|
330
|
-
-
|
|
331
|
-
|
|
332
|
-
# Version 0.11.
|
|
333
|
-
|
|
334
|
-
##
|
|
335
|
-
|
|
336
|
-
-
|
|
337
|
-
|
|
338
|
-
# Version 0.11.
|
|
339
|
-
|
|
340
|
-
##
|
|
341
|
-
|
|
342
|
-
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
##
|
|
362
|
-
|
|
363
|
-
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
-
|
|
382
|
-
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
-
|
|
390
|
-
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
-
|
|
407
|
-
-
|
|
408
|
-
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
-
|
|
426
|
-
-
|
|
427
|
-
- Add
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
-
|
|
433
|
-
-
|
|
434
|
-
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
-
|
|
463
|
-
-
|
|
464
|
-
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
-
|
|
469
|
-
-
|
|
470
|
-
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
-
|
|
489
|
-
-
|
|
490
|
-
-
|
|
491
|
-
|
|
492
|
-
# Version 0.
|
|
493
|
-
|
|
494
|
-
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
-
|
|
501
|
-
|
|
502
|
-
# Version 0.3.
|
|
503
|
-
|
|
504
|
-
-
|
|
505
|
-
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
-
|
|
530
|
-
-
|
|
531
|
-
|
|
532
|
-
# Version 0.0
|
|
533
|
-
|
|
534
|
-
-
|
|
535
|
-
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
-
|
|
568
|
-
|
|
569
|
-
# Version 0.0.
|
|
570
|
-
|
|
571
|
-
-
|
|
1
|
+
# v3.2.2 (2024/03/02)
|
|
2
|
+
|
|
3
|
+
## Bugfixes
|
|
4
|
+
|
|
5
|
+
- Actually throw exceptions when there are websocket connection issues. (#257)
|
|
6
|
+
|
|
7
|
+
# v3.2.1 (2023/09/23)
|
|
8
|
+
|
|
9
|
+
## Bugfixes
|
|
10
|
+
|
|
11
|
+
- Fix issue with name minifying causing problems with class name reflection (again, see v3.1.0 notes
|
|
12
|
+
for the first round of this)
|
|
13
|
+
|
|
14
|
+
# v3.2.0 (2023/09/23)
|
|
15
|
+
|
|
16
|
+
## Features
|
|
17
|
+
|
|
18
|
+
- Web package building now uses vite instead of webpack
|
|
19
|
+
- Long live vite. May I never have to fucking deal with webpack ever again.
|
|
20
|
+
|
|
21
|
+
## Bugfixes
|
|
22
|
+
|
|
23
|
+
- Cleaned up naming conventions
|
|
24
|
+
- Changed connector interface (this is technically a breaking change but afaik no one else
|
|
25
|
+
implements their own connector)
|
|
26
|
+
- Fix linear attribute enumeration
|
|
27
|
+
|
|
28
|
+
# v3.1.1 (2023/02/18)
|
|
29
|
+
|
|
30
|
+
## Bugfixes
|
|
31
|
+
|
|
32
|
+
- Replace events with eventemitter3
|
|
33
|
+
- API Compatible and easier for building across web/node
|
|
34
|
+
- Remove blob reading from websocket connectors
|
|
35
|
+
- We never use binary messages on websockets, and the extra filereader dep for node was
|
|
36
|
+
causing issues with web builds.
|
|
37
|
+
|
|
38
|
+
# v3.1.0 (2023/02/11)
|
|
39
|
+
|
|
40
|
+
## Features
|
|
41
|
+
|
|
42
|
+
- Added support for Node Websockets via new connector class (#244)
|
|
43
|
+
|
|
44
|
+
## Bugfixes
|
|
45
|
+
|
|
46
|
+
- Fixed issues with using buttplug-js in minified projects (#246)
|
|
47
|
+
- Changed from type-based class resolution to static naming, class name mangling should no longer
|
|
48
|
+
be an issue.
|
|
49
|
+
|
|
50
|
+
# v3.0.0 (2022/12/30)
|
|
51
|
+
|
|
52
|
+
## Features
|
|
53
|
+
|
|
54
|
+
- Back to pure Typescript. Back to the good shit.
|
|
55
|
+
- Removed server
|
|
56
|
+
- Brought implementation in line with the FFI Client API, so minimal changes should be needed for
|
|
57
|
+
porting from v1.
|
|
58
|
+
|
|
59
|
+
# v2.0.0
|
|
60
|
+
|
|
61
|
+
## Whatever
|
|
62
|
+
|
|
63
|
+
- There is no buttplug-js v2
|
|
64
|
+
- There is no Miss Zarves
|
|
65
|
+
- (Version skipped to align JS and C# implementation versions, which will probably fall out of
|
|
66
|
+
alignment again very quickly)
|
|
67
|
+
|
|
68
|
+
# v1.0.16 (2021/10/16) (FFI Impl)
|
|
69
|
+
|
|
70
|
+
## Bugfixes
|
|
71
|
+
|
|
72
|
+
- Revert WASM loading specification to fix webpack/MIME issues
|
|
73
|
+
|
|
74
|
+
# v1.0.15 (2021/08/29) (FFI Impl)
|
|
75
|
+
|
|
76
|
+
## Features
|
|
77
|
+
|
|
78
|
+
- Update to buttplug v5
|
|
79
|
+
|
|
80
|
+
## Bugfixes
|
|
81
|
+
|
|
82
|
+
- Allow specification of WASM loading source for buttplug_init()
|
|
83
|
+
- ButtplugClientDevice equality testing now works as expected
|
|
84
|
+
|
|
85
|
+
# v1.0.14 (2021/03/21) (FFI Impl)
|
|
86
|
+
|
|
87
|
+
## Bugfixes
|
|
88
|
+
|
|
89
|
+
- Actually fix #60 and #51
|
|
90
|
+
|
|
91
|
+
# v1.0.13 (2021/03/21) (FFI Impl)
|
|
92
|
+
|
|
93
|
+
## Features
|
|
94
|
+
|
|
95
|
+
- Update to buttplug-rs v2.1.7, adds Lovehoney Desire Egg support
|
|
96
|
+
|
|
97
|
+
## Bugfixes
|
|
98
|
+
|
|
99
|
+
- #60: Expose Buttplug.Endpoint type publicly so Raw commands are usable
|
|
100
|
+
- #59: Client device vibrate() call should take an array of numbers
|
|
101
|
+
- #51: Fix ScanningFinished emission for WebBluetooth
|
|
102
|
+
|
|
103
|
+
# v1.0.12 (2021/02/20) (FFI Impl)
|
|
104
|
+
|
|
105
|
+
## Bugfixes
|
|
106
|
+
|
|
107
|
+
- Actually build the project before publishing this time. This is why I have CI. Why am I hand
|
|
108
|
+
publish the project? (Because I am lazy. So lazy.)
|
|
109
|
+
|
|
110
|
+
# v1.0.11 (2021/02/20)
|
|
111
|
+
|
|
112
|
+
## Bugfixes
|
|
113
|
+
|
|
114
|
+
- Remove publicpath setting in CDN bundler.
|
|
115
|
+
|
|
116
|
+
# v1.0.10 (2021/02/20) (FFI Impl)
|
|
117
|
+
|
|
118
|
+
## Bugfixes
|
|
119
|
+
|
|
120
|
+
- Implement characteristic read in WebBluetooth WASM
|
|
121
|
+
- Allows us to use the Handy on the web
|
|
122
|
+
|
|
123
|
+
# v1.0.9 (2021/02/20) (FFI Impl)
|
|
124
|
+
|
|
125
|
+
## Bugfixes
|
|
126
|
+
|
|
127
|
+
- Update to buttplug-rs v2.1.5. The Handy support, client connect race bugfixes, device
|
|
128
|
+
disconnection panic bugfixes.
|
|
129
|
+
|
|
130
|
+
# v1.0.8 (2021/02/10) (FFI Impl)
|
|
131
|
+
|
|
132
|
+
## Features
|
|
133
|
+
|
|
134
|
+
- Update to buttplug-rs v2.1.3, lots more tests/fixes, Lovense Diamo support
|
|
135
|
+
- Update to buttplug-rs-ffi core v1.0.12, fixes disconnect issues in WebBluetooth, updates
|
|
136
|
+
connector API for buttplug-rs v2.1.x API
|
|
137
|
+
|
|
138
|
+
# v1.0.7 (2021/01/24) (FFI Impl)
|
|
139
|
+
|
|
140
|
+
## Bugfixes
|
|
141
|
+
|
|
142
|
+
- Update to buttplug-rs v2.0.5, fixes issue with DeviceMessageInfo deserialization
|
|
143
|
+
|
|
144
|
+
# v1.0.6 (2021/01/24) (FFI Impl)
|
|
145
|
+
|
|
146
|
+
## Bugfixes
|
|
147
|
+
|
|
148
|
+
- Print message and bail early if buttplugInit is called again after successful load.
|
|
149
|
+
- This most likely exited quietly without breaking anything before, but now it's at least spewing
|
|
150
|
+
some status too.
|
|
151
|
+
- Update to buttplug-rs v2.0.4, fixing issues with native timers being compiled instead of WASM
|
|
152
|
+
timers.
|
|
153
|
+
|
|
154
|
+
# v1.0.5 (2021/01/22) (FFI Impl)
|
|
155
|
+
|
|
156
|
+
## Bugfixes
|
|
157
|
+
|
|
158
|
+
- #49: Fix issue with incorrect type check on linear commands.
|
|
159
|
+
|
|
160
|
+
# v1.0.4 (2021/01/21) (FFI Impl)
|
|
161
|
+
|
|
162
|
+
## Features
|
|
163
|
+
|
|
164
|
+
- Update to Buttplug-rs v2.0.3
|
|
165
|
+
- Fixes issues with Strokers/rotators not showing up due to invalid message attributes.
|
|
166
|
+
|
|
167
|
+
# v1.0.3 (2021/01/18) (FFI Impl)
|
|
168
|
+
|
|
169
|
+
## Features
|
|
170
|
+
|
|
171
|
+
- Update to Buttplug-rs v2.0.0
|
|
172
|
+
- Lovense Ferri support
|
|
173
|
+
- Init/Event API cleanup
|
|
174
|
+
- Panic messages/stacks now emitted on WASM panic
|
|
175
|
+
|
|
176
|
+
# v1.0.2 (2021/01/10) (FFI Impl)
|
|
177
|
+
|
|
178
|
+
## Features
|
|
179
|
+
|
|
180
|
+
- Update to Buttplug-rs v1.0.5, with Libo and Prettylove support
|
|
181
|
+
|
|
182
|
+
# v1.0.1 (2020/12/29) (FFI Impl)
|
|
183
|
+
|
|
184
|
+
## Bugfixes
|
|
185
|
+
|
|
186
|
+
- Add protobufjs to dependencies, otherwise typescript compilation files during type resolution.
|
|
187
|
+
|
|
188
|
+
# v1.0.0 (2020/12/27) (FFI Impl)
|
|
189
|
+
|
|
190
|
+
## Features
|
|
191
|
+
|
|
192
|
+
- Update to Buttplug v1, with new device config file format.
|
|
193
|
+
- Change package name back to "buttplug"
|
|
194
|
+
|
|
195
|
+
# v1.0.0 Beta 7 (2020/12/20) (FFI Impl)
|
|
196
|
+
|
|
197
|
+
## Bugfixes
|
|
198
|
+
|
|
199
|
+
- Fix browser websockets not throwing errors on invalid URLs or connection errors.
|
|
200
|
+
|
|
201
|
+
# v1.0.0 Beta 6 (2020/12/20) (FFI Impl)
|
|
202
|
+
|
|
203
|
+
## Bugfixes
|
|
204
|
+
|
|
205
|
+
- Fix webpack build/load strategies for static (CDN loadable) web package.
|
|
206
|
+
|
|
207
|
+
# v1.0.0 Beta 5 (2020/12/19) (FFI Impl)
|
|
208
|
+
|
|
209
|
+
## Features
|
|
210
|
+
|
|
211
|
+
- Completely rewrite surface API in Typescript, now uses core protobuf library, same as the other
|
|
212
|
+
FFI layers.
|
|
213
|
+
- Added log output capabilities (console only at the moment).
|
|
214
|
+
|
|
215
|
+
# v1.0.0 Beta 4 (2020/12/05) (FFI Impl)
|
|
216
|
+
|
|
217
|
+
## Features
|
|
218
|
+
|
|
219
|
+
- Actually throw error types instead of just casting to strings. Error types are reduces from Rust's
|
|
220
|
+
verbose enums, but this is good enough.
|
|
221
|
+
- Add stop() method to devices.
|
|
222
|
+
|
|
223
|
+
# v1.0.0 Beta 3 (2020/12/04) (FFI Impl)
|
|
224
|
+
|
|
225
|
+
## API Changes
|
|
226
|
+
|
|
227
|
+
- Make a single connect method on ButtplugClient
|
|
228
|
+
- Brings API closer to other/old implementations
|
|
229
|
+
|
|
230
|
+
# Version 0.13.2 - 2020/08/25
|
|
231
|
+
|
|
232
|
+
## Bugfixes
|
|
233
|
+
|
|
234
|
+
- Make Android use WebBluetooth's acceptAllDevices so Lovense shows up again
|
|
235
|
+
- namePrefix, which we use to wildcard Lovense devices, broke in Chrome 81.
|
|
236
|
+
Fix is tracked for Chrome 87.
|
|
237
|
+
- Fix type mismatch in inherited methods in ForwardedDeviceProtocol.
|
|
238
|
+
|
|
239
|
+
# Version 0.13.1 - 2020/04/04
|
|
240
|
+
|
|
241
|
+
## Features
|
|
242
|
+
|
|
243
|
+
- Added support for Connector Initializer
|
|
244
|
+
- Allows using the Buttplug connector for auth or other communication before
|
|
245
|
+
spinning up the protocol itself.
|
|
246
|
+
|
|
247
|
+
# Version 0.13.0 - 2020/03/29
|
|
248
|
+
|
|
249
|
+
## Features
|
|
250
|
+
|
|
251
|
+
- Added Device Forwarder Support
|
|
252
|
+
- Allows developers to create a device manager that can accept "forwarded"
|
|
253
|
+
devices from another client. Basically turns Buttplug into a full
|
|
254
|
+
teledildonics system, using its own protocol.
|
|
255
|
+
- ButtplugClientDevice now emits "deviceremoved" when it is disconnected.
|
|
256
|
+
- This is alongside the client emitting it.
|
|
257
|
+
|
|
258
|
+
## Bugfixes
|
|
259
|
+
|
|
260
|
+
- Fixed WeVibe Melt support
|
|
261
|
+
- Fixed references to buttplug-server-cli in README
|
|
262
|
+
- This is now at https://github.com/intiface/intiface-node-cli
|
|
263
|
+
|
|
264
|
+
# Version 0.12.3 - 2020/03/25
|
|
265
|
+
|
|
266
|
+
## Features
|
|
267
|
+
|
|
268
|
+
- Added Hardware Support
|
|
269
|
+
- WebGamepad Haptics on Chrome
|
|
270
|
+
|
|
271
|
+
# Version 0.12.2 - 2019/12/06
|
|
272
|
+
|
|
273
|
+
## Features
|
|
274
|
+
|
|
275
|
+
- Added Hardware Support
|
|
276
|
+
- WeVibe Vector
|
|
277
|
+
- Magic Motion Vini, Fugu, Awaken, Equinox, Solstice
|
|
278
|
+
|
|
279
|
+
# Version 0.12.1 - 2019/10/05
|
|
280
|
+
|
|
281
|
+
## Features
|
|
282
|
+
|
|
283
|
+
- Add Motorbunny Support
|
|
284
|
+
|
|
285
|
+
# Version 0.12.0 - 2019/07/27
|
|
286
|
+
|
|
287
|
+
## Features
|
|
288
|
+
|
|
289
|
+
- Allow loading of device configuration file from CDN
|
|
290
|
+
(https://buttplug-device-config.buttplug.io)
|
|
291
|
+
- Remove yaml requirement for device config file, just use JSON (Saves
|
|
292
|
+
30% library size)
|
|
293
|
+
|
|
294
|
+
# Version 0.11.8 - 2019/07/09
|
|
295
|
+
|
|
296
|
+
## Bugfixes
|
|
297
|
+
|
|
298
|
+
- Updated built in device config file, including Cyclone SA fixes.
|
|
299
|
+
|
|
300
|
+
# Version 0.11.7 - 2019/06/22
|
|
301
|
+
|
|
302
|
+
## Bugfixes
|
|
303
|
+
|
|
304
|
+
- Dependency security updates
|
|
305
|
+
|
|
306
|
+
# Version 0.11.6 - 2019/05/27
|
|
307
|
+
|
|
308
|
+
## Features
|
|
309
|
+
|
|
310
|
+
- Added hardware support
|
|
311
|
+
- Kiiroo Onyx 2
|
|
312
|
+
- Kiiroo Pearl 2
|
|
313
|
+
- Kiiroo/OhMiBod Fuse
|
|
314
|
+
- Kiiroo Virtual Blowbot
|
|
315
|
+
- Kiiroo Titan
|
|
316
|
+
- Libo PiPiJing Elle/Whale
|
|
317
|
+
- Libo Xiao Lu (Lottie)
|
|
318
|
+
- Libo Lu Xiao Han (Lulu)
|
|
319
|
+
- Libo Suo Yin Qiu (Karen)
|
|
320
|
+
- Libo Bai Hu (LaLa)
|
|
321
|
+
- Libo/Sistalk MonsterPub
|
|
322
|
+
- Youcups Warrior 2
|
|
323
|
+
- Vorze Bach
|
|
324
|
+
- A whole bunch of Magic Motion toys I'm not gonna list here.
|
|
325
|
+
|
|
326
|
+
# Version 0.11.5 - 2019/05/02
|
|
327
|
+
|
|
328
|
+
## Features
|
|
329
|
+
|
|
330
|
+
- Change WebBluetooth calls to work with iOS WebBLE app
|
|
331
|
+
|
|
332
|
+
# Version 0.11.3 - 2019/04/11
|
|
333
|
+
|
|
334
|
+
## Features
|
|
335
|
+
|
|
336
|
+
- Updates dependencies, but otherwise this is a dependent library release.
|
|
337
|
+
|
|
338
|
+
# Version 0.11.2 - 2019/03/16
|
|
339
|
+
|
|
340
|
+
## Bugfixes
|
|
341
|
+
|
|
342
|
+
- Roll back to using webpack for web libraries until Rollup is fixed.
|
|
343
|
+
|
|
344
|
+
# Version 0.11.1 - 2019/03/15
|
|
345
|
+
|
|
346
|
+
## Features
|
|
347
|
+
|
|
348
|
+
- Update CLI to work with Intiface
|
|
349
|
+
- That's it. No other changes. Maybe this Monorepo and lockstepped
|
|
350
|
+
versioning thing wasn't such a good idea. :/
|
|
351
|
+
|
|
352
|
+
# Version 0.11.0 - 2019/03/09
|
|
353
|
+
|
|
354
|
+
## Features
|
|
355
|
+
|
|
356
|
+
- ButtplugBrowserWebsocketConnector now exported from library
|
|
357
|
+
- Add ability to use Device Configuration files, eliminating need to
|
|
358
|
+
change code to add devices to protocols we already support.
|
|
359
|
+
- Add Youou Wand support
|
|
360
|
+
|
|
361
|
+
## Bugfixes
|
|
362
|
+
|
|
363
|
+
- Fixed lots of unhandled promises, turning them into exception
|
|
364
|
+
throws. Also now have a linter rule to make sure this doesn't happen
|
|
365
|
+
again.
|
|
366
|
+
|
|
367
|
+
## Other
|
|
368
|
+
|
|
369
|
+
- Moved CI to Azure Pipelines
|
|
370
|
+
- Moved project to being a monorepo for all buttplug-js core library,
|
|
371
|
+
device subtype manager, connector, and server CLI projects
|
|
372
|
+
- Removed Devtools package for time being, needs to be turned into its
|
|
373
|
+
own module.
|
|
374
|
+
- Not currently building CLIs for windows, because noble-uwp was
|
|
375
|
+
having some problems compiling.
|
|
376
|
+
- Removed ConnectLocal/ConnectWebsocket functions from Client, now
|
|
377
|
+
requires a connector object.
|
|
378
|
+
|
|
379
|
+
# Version 0.10.0 - 2018/12/03
|
|
380
|
+
|
|
381
|
+
- Add way to pass loggers into DeviceSubtypeManagers (to bridge module scope issues)
|
|
382
|
+
- Fix type error for Device Manager message callbacks
|
|
383
|
+
|
|
384
|
+
# Version 0.9.0 - 2018/12/02
|
|
385
|
+
|
|
386
|
+
- Move core/Device to client/ButtplugClientDevice, since only client uses it.
|
|
387
|
+
- Create convenience Device command functions on ButtplugClientDevice.
|
|
388
|
+
- Add specific Buttplug exception types.
|
|
389
|
+
- Fix up error handling to always throw exceptions.
|
|
390
|
+
- Add connection semantics to server.
|
|
391
|
+
- Update dependencies.
|
|
392
|
+
|
|
393
|
+
# Version 0.8.3 - 2018/11/24
|
|
394
|
+
|
|
395
|
+
- Added Lovense Osci support
|
|
396
|
+
- Updated schema with bugfixes to generic commands
|
|
397
|
+
|
|
398
|
+
# Version 0.8.2 - 2018/07/12
|
|
399
|
+
|
|
400
|
+
- Add Vorze UFO SA support
|
|
401
|
+
|
|
402
|
+
# Version 0.8.1 - 2018/07/02
|
|
403
|
+
|
|
404
|
+
- Make DevTools/Simulator loadable as a module
|
|
405
|
+
- Fix bug in characteristic map calculation (caused Fleshlight Launch to stop working on 0.8.0)
|
|
406
|
+
- Fix output of speed/position values in Simulator
|
|
407
|
+
- Fix bug in DeviceList message construction in Server
|
|
408
|
+
- Various other Simulator fixes.
|
|
409
|
+
|
|
410
|
+
# Version 0.8.0 - 2018/06/27
|
|
411
|
+
|
|
412
|
+
- Add BLE GATT Characteristic reading functions
|
|
413
|
+
- Add ability to derive Lovense hardware info from device queries (no more name/UUID chasing)
|
|
414
|
+
- Namespace devtools CSS rules to fix issue with CSS conflicts in devtools
|
|
415
|
+
- Change Signature of CreateSimple*Message functions (breaking change)
|
|
416
|
+
- Add IsScanning boolean getter to Client
|
|
417
|
+
|
|
418
|
+
# Version 0.7.1 - 2018/05/02
|
|
419
|
+
|
|
420
|
+
- Extra build config changes to fix webpack issues
|
|
421
|
+
|
|
422
|
+
# Version 0.7.0 - 2018/05/02
|
|
423
|
+
|
|
424
|
+
- Rolling version number due to device API change (added "Disconnect" method)
|
|
425
|
+
- Update to Webpack 4
|
|
426
|
+
- Fix server cleanup on shutdown (remove listeners, disconnect devices)
|
|
427
|
+
- Add more Lovense device names/info
|
|
428
|
+
|
|
429
|
+
# Version 0.6.1 - 2018/03/08
|
|
430
|
+
|
|
431
|
+
- Expose feature counts of device command messages
|
|
432
|
+
- Add CreateSimple*Cmd functions
|
|
433
|
+
- Add new Lovense and WeVibe device names
|
|
434
|
+
- Device counts now start at 0 instead of 1
|
|
435
|
+
|
|
436
|
+
# Version 0.6.0 - 2018/02/05
|
|
437
|
+
|
|
438
|
+
- Rolling version number due to devtools API change
|
|
439
|
+
- TestDeviceManager no longer a singleton. That was a bad idea in the first place.
|
|
440
|
+
- TestDeviceManagerPanel now requires a ButtplugServer as a parameter
|
|
441
|
+
- Added Connector getter in ButtplugClient, as sometimes it's handy to pull an embedded connector
|
|
442
|
+
and get the Server from it (For things like the TestDeviceManagerPanel).
|
|
443
|
+
- Devices now have internal IDs, so deviceadded isn't fired multiple times for the same device
|
|
444
|
+
- Added basic MaxPro Smart Vibrator support
|
|
445
|
+
|
|
446
|
+
# Version 0.5.3 - 2018/01/29
|
|
447
|
+
|
|
448
|
+
- Fix bug in devtools web exports
|
|
449
|
+
- Add more styles to log panel so outside styles don't affect it.
|
|
450
|
+
|
|
451
|
+
# Version 0.5.2 - 2018/01/26
|
|
452
|
+
|
|
453
|
+
- Fix webpack settings so mangling doesn't destroy parser
|
|
454
|
+
- Add new IDs for Lovense Domi and Lush
|
|
455
|
+
|
|
456
|
+
# Version 0.5.1 - 2018/01/23
|
|
457
|
+
|
|
458
|
+
- Remove node websocket connector and server, since it doesn't build/include nicely as a submodule. (#87)
|
|
459
|
+
|
|
460
|
+
# Version 0.5.0 - 2018/01/22
|
|
461
|
+
|
|
462
|
+
- Added Buttplug Spec v1 implementation
|
|
463
|
+
- More generic message types (VibrateCmd, RotateCmd, LinearCmd)
|
|
464
|
+
- Message attributes (device feature counts)
|
|
465
|
+
- Message downgrading capabilities
|
|
466
|
+
- Added tests. So many tests.
|
|
467
|
+
- Divided devtools into core and web directories
|
|
468
|
+
- Updated devtools to depend on buttplug as an external library (makes file sizes smaller)
|
|
469
|
+
- Library now uses es6 by default
|
|
470
|
+
- Lots of bug fixes due to aforementioned tests (Wevibe control issues, missing error message, etc...)
|
|
471
|
+
|
|
472
|
+
# Version 0.4.3 - 2018/01/16
|
|
473
|
+
|
|
474
|
+
- Fix many logging bugs
|
|
475
|
+
- Add more log messages to library
|
|
476
|
+
- Add devtools module, with log viewer, test device manager, and device visualizer
|
|
477
|
+
- Add Node websocket connector and server, for native server capabilities
|
|
478
|
+
|
|
479
|
+
# Version 0.4.2 - 2018/01/08
|
|
480
|
+
|
|
481
|
+
- Added support for new Lovense devices (Domi with new firmware)
|
|
482
|
+
|
|
483
|
+
# Version 0.4.1 - 2018/01/07
|
|
484
|
+
|
|
485
|
+
- Message types can now be accessed via getter ([Message].Type)
|
|
486
|
+
- Client now emits "disconnect" event on disconnection (either user or server triggered)
|
|
487
|
+
- Fixed bug where ping timer wouldn't stop on disconnect
|
|
488
|
+
- Moved test system to jest
|
|
489
|
+
- Removed dependency on text-encoding package
|
|
490
|
+
- Added support for new Lovense devices (Hush with new firmware)
|
|
491
|
+
|
|
492
|
+
# Version 0.4.0 - 2017/12/03
|
|
493
|
+
|
|
494
|
+
- Add webpack config to build library for web on release
|
|
495
|
+
- Expose IButtplugConnector for building external connector interfaces
|
|
496
|
+
- Actually write usage information in the README
|
|
497
|
+
|
|
498
|
+
# Version 0.3.2 - 2017/12/02
|
|
499
|
+
|
|
500
|
+
- Remove dist from .gitignore in release branch. Again. Ugh.
|
|
501
|
+
|
|
502
|
+
# Version 0.3.1 - 2017/12/02
|
|
503
|
+
|
|
504
|
+
- Create generic connect function to allow users to define their own connectors
|
|
505
|
+
- Documentation updates
|
|
506
|
+
- Added more WeVibe names
|
|
507
|
+
|
|
508
|
+
# Version 0.3.0 - 2017/10/29
|
|
509
|
+
|
|
510
|
+
- Remove all default exports, require verbose include
|
|
511
|
+
- Prepare library for use with node servers as well as web browser servers
|
|
512
|
+
|
|
513
|
+
# Version 0.2.2 - 2017/10/28
|
|
514
|
+
|
|
515
|
+
- Fix emission of "scanningfinished" event and message in client/server
|
|
516
|
+
|
|
517
|
+
# Version 0.2.1 - 2017/10/11
|
|
518
|
+
|
|
519
|
+
- Added WebBluetooth support for the Vorze A10 Cyclone
|
|
520
|
+
- Fixed types in VorzeA10CycloneCmd message
|
|
521
|
+
|
|
522
|
+
# Version 0.2.0 - 2017/10/08
|
|
523
|
+
|
|
524
|
+
- Simplified Client types. Now one client type with Websocket and Local connection functions.
|
|
525
|
+
- Fixed bug where outbound messages were not checked against the message schema.
|
|
526
|
+
|
|
527
|
+
# Version 0.1.1 - 2017/10/06
|
|
528
|
+
|
|
529
|
+
- Add Lovense Domi, WeVibe toy support to server
|
|
530
|
+
- Add ability to query for browser Bluetooth Support in server
|
|
531
|
+
|
|
532
|
+
# Version 0.1.0 - 2017/08/20
|
|
533
|
+
|
|
534
|
+
- Added Server functionality, with WebBluetooth device manager
|
|
535
|
+
- Added logging system
|
|
536
|
+
- Fixed KiirooCmd format
|
|
537
|
+
|
|
538
|
+
# Version 0.0.9 - 2017/07/22
|
|
539
|
+
|
|
540
|
+
- Start cleaning up library to prepare for Server implementation
|
|
541
|
+
- Add VorzeA10CycloneCmd message
|
|
542
|
+
|
|
543
|
+
# Version 0.0.8 - 2017/07/21
|
|
544
|
+
|
|
545
|
+
- Add JSON schema validation
|
|
546
|
+
|
|
547
|
+
# Version 0.0.7 - 2017/07/19
|
|
548
|
+
|
|
549
|
+
- Add StopAllDevices function to client
|
|
550
|
+
|
|
551
|
+
# Version 0.0.6 - 2017/07/16
|
|
552
|
+
|
|
553
|
+
- Update of v0.0.5 with built files included
|
|
554
|
+
|
|
555
|
+
# Version 0.0.5 - 2017/07/16
|
|
556
|
+
|
|
557
|
+
- Add client disconnect functionality
|
|
558
|
+
- Test updates
|
|
559
|
+
|
|
560
|
+
# Version 0.0.4 - 2017/07/13
|
|
561
|
+
|
|
562
|
+
- Add ErrorCode support to error messages
|
|
563
|
+
- tslint addition and cleanup
|
|
564
|
+
|
|
565
|
+
# Version 0.0.3 - 2017/06/13
|
|
566
|
+
|
|
567
|
+
- Repo cleanup, typescript library additions
|
|
568
|
+
|
|
569
|
+
# Version 0.0.2 - 2017/06/11
|
|
570
|
+
|
|
571
|
+
- First released version of library
|
|
572
|
+
- Core device/message implementation
|
|
573
|
+
- Simple webclient with ability to connect over websockets, get device lists, send device messages
|
|
574
|
+
|
|
575
|
+
# Version 0.0.1 - 2016/07/08
|
|
576
|
+
|
|
577
|
+
- Project Repo Started
|