Updated README.md; Changed scripts in ci;

This commit is contained in:
Lechner Julian - FrauJulian
2025-10-10 18:05:20 +02:00
parent 36bfd035e9
commit 0a0bb40020
3 changed files with 16 additions and 16 deletions
+3 -3
View File
@@ -15,10 +15,10 @@ jobs:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: use NodeJS v22.16.0 - name: use NodeJS v22.12.0
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: '22.16.0' node-version: '22.12.0'
registry-url: 'https://registry.npmjs.org' registry-url: 'https://registry.npmjs.org'
always-auth: true always-auth: true
@@ -31,7 +31,7 @@ jobs:
run: npm install run: npm install
- name: run Rollout Build - name: run Rollout Build
run: npm run rolloutBuild run: npm run build
- name: Publish Library - name: Publish Library
run: npm publish run: npm publish
+1 -1
View File
@@ -20,4 +20,4 @@ jobs:
run: npm install run: npm install
- name: run Rollout Build - name: run Rollout Build
run: npm run rolloutBuild run: npm run build
+2 -2
View File
@@ -78,7 +78,7 @@ let audioManager = new AudioManager(
#### Properties #### Properties
| Callable with | Type | Description | | Callable with | Type | Description |
|-------------------|------------------------------|-------------------------------------------------| | ----------------- | ---------------------------- | ----------------------------------------------- |
| `VoiceConnection` | **VoiceConnection** | VoiceConnection instance from discord.js/voice. | | `VoiceConnection` | **VoiceConnection** | VoiceConnection instance from discord.js/voice. |
| `AudioPlayer` | **AudioPlayer** | AudioPlayer instance from discord.js/voice. | | `AudioPlayer` | **AudioPlayer** | AudioPlayer instance from discord.js/voice. |
| `AudioResource` | **AudioResource** | AudioResource instance from discord.js/voice. | | `AudioResource` | **AudioResource** | AudioResource instance from discord.js/voice. |
@@ -88,7 +88,7 @@ let audioManager = new AudioManager(
#### Methods #### Methods
| Callable with | Parameters | Return type | Description | | | Callable with | Parameters | Return type | Description | |
|--------------------------------|---------------------------------------------------------|-------------|---------------------------------------------------------------|----------------------------------------| | ------------------------------ | ------------------------------------------------------- | ----------- | ------------------------------------------------------------- | -------------------------------------- |
| `OverrideVoiceConnectionData` | `connectionData` (type of **VoiceConnectionDataModel**) | void | Method to override global connectionData variable. | | | `OverrideVoiceConnectionData` | `connectionData` (type of **VoiceConnectionDataModel**) | void | Method to override global connectionData variable. | |
| `OverrideVoiceAudioDataModel` | `audioData` (type of **VoiceAudioDataModel**) | void | Method to override global audioData variable. | | | `OverrideVoiceAudioDataModel` | `audioData` (type of **VoiceAudioDataModel**) | void | Method to override global audioData variable. | |
| `OverrideRenewInMs` | `renewInMs` (type of int, default value is 5400000) | void | Method to override global renewInMs variable. | | | `OverrideRenewInMs` | `renewInMs` (type of int, default value is 5400000) | void | Method to override global renewInMs variable. | |