@discordjs/voice 0.16.0-dev.1680307850-34bc36a.0 → 0.16.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/CHANGELOG.md +14 -0
- package/README.md +5 -6
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
# [@discordjs/voice@0.16.0](https://github.com/discordjs/discord.js/compare/@discordjs/voice@0.15.0...@discordjs/voice@0.16.0) - (2023-04-01)
|
|
6
|
+
|
|
7
|
+
## Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **scripts:** Accessing tsComment ([d8d5f31](https://github.com/discordjs/discord.js/commit/d8d5f31d3927fd1de62f1fa3a1a6e454243ad87b))
|
|
10
|
+
|
|
11
|
+
## Features
|
|
12
|
+
|
|
13
|
+
- **website:** Render syntax and mdx on the server (#9086) ([ee5169e](https://github.com/discordjs/discord.js/commit/ee5169e0aadd7bbfcd752aae614ec0f69602b68b))
|
|
14
|
+
|
|
15
|
+
## Refactor
|
|
16
|
+
|
|
17
|
+
- Compare with `undefined` directly (#9191) ([869153c](https://github.com/discordjs/discord.js/commit/869153c3fdf155783e7c0ecebd3627b087c3a026))
|
|
18
|
+
|
|
5
19
|
# [@discordjs/voice@0.15.0](https://github.com/discordjs/discord.js/compare/@discordjs/voice@0.14.0...@discordjs/voice@0.15.0) - (2023-03-12)
|
|
6
20
|
|
|
7
21
|
## Bug Fixes
|
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
## About
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
`@discordjs/voice` is a TypeScript implementation of the Discord Voice API for Node.js.
|
|
22
22
|
|
|
23
23
|
**Features:**
|
|
24
24
|
|
|
@@ -73,7 +73,7 @@ The [voice-examples][voice-examples] repository contains examples on how to use
|
|
|
73
73
|
- [Website][website] ([source][website-source])
|
|
74
74
|
- [Documentation][documentation]
|
|
75
75
|
- [Guide][guide] ([source][guide-source])
|
|
76
|
-
|
|
76
|
+
Also see the v13 to v14 [Update Guide][guide-update], which includes updated and removed items from the library.
|
|
77
77
|
- [discord.js Discord server][discord]
|
|
78
78
|
- [Discord API Discord server][discord-api]
|
|
79
79
|
- [GitHub][source]
|
|
@@ -88,12 +88,11 @@ See [the contribution guide][contributing] if you'd like to submit a PR.
|
|
|
88
88
|
|
|
89
89
|
## Help
|
|
90
90
|
|
|
91
|
-
If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle
|
|
92
|
-
nudge in the right direction, please don't hesitate to join our official [discord.js Server][discord].
|
|
91
|
+
If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join our official [discord.js Server][discord].
|
|
93
92
|
|
|
94
|
-
[website]: https://discord.js.org
|
|
93
|
+
[website]: https://discord.js.org
|
|
95
94
|
[website-source]: https://github.com/discordjs/discord.js/tree/main/apps/website
|
|
96
|
-
[documentation]: https://discord.js.org
|
|
95
|
+
[documentation]: https://discord.js.org/docs/packages/voice/stable
|
|
97
96
|
[guide]: https://discordjs.guide/
|
|
98
97
|
[guide-source]: https://github.com/discordjs/guide
|
|
99
98
|
[guide-update]: https://discordjs.guide/additional-info/changes-in-v14.html
|
package/dist/index.js
CHANGED
|
@@ -2457,7 +2457,7 @@ __name(findPackageJSON, "findPackageJSON");
|
|
|
2457
2457
|
function version(name) {
|
|
2458
2458
|
try {
|
|
2459
2459
|
if (name === "@discordjs/voice") {
|
|
2460
|
-
return "0.16.0
|
|
2460
|
+
return "0.16.0";
|
|
2461
2461
|
}
|
|
2462
2462
|
const pkg = findPackageJSON((0, import_node_path.dirname)(require.resolve(name)), name, 3);
|
|
2463
2463
|
return pkg?.version ?? "not found";
|
|
@@ -2600,7 +2600,7 @@ async function demuxProbe(stream, probeSize = 1024, validator = validateDiscordO
|
|
|
2600
2600
|
__name(demuxProbe, "demuxProbe");
|
|
2601
2601
|
|
|
2602
2602
|
// src/index.ts
|
|
2603
|
-
var version2 = "0.16.0
|
|
2603
|
+
var version2 = "0.16.0";
|
|
2604
2604
|
// Annotate the CommonJS export names for ESM import in node:
|
|
2605
2605
|
0 && (module.exports = {
|
|
2606
2606
|
AudioPlayer,
|