summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Name threads for better logging and debuggingJokler2020-02-081-29/+35
|
* Move music bot related data into a single mutexJokler2020-01-291-66/+71
|
* Add a description to the master botJokler2020-01-291-0/+2
|
* Make local mode spawn a music bot directlyJokler2020-01-292-7/+25
|
* Add config example fileJokler2020-01-291-17/+0
|
* Block bots from joining channels with other botsJokler2020-01-293-9/+56
|
* Move duplicate code into on_client_left methodJokler2020-01-292-8/+10
|
* Randomly choose from lists of identities and namesJokler2020-01-294-101/+114
|
* Let the music bot leave once its channel is emptyJokler2020-01-293-11/+106
|
* Fix quit method not stopping audio playbackJokler2020-01-293-7/+21
|
* Move master and music bots into seperate filesJokler2020-01-294-549/+570
|
* Initial multibot draftJokler2020-01-296-407/+734
|
* Change method of sending EOS to GStreamer pipeline (#24)Felix Kaaman2020-01-272-7/+6
| | | Uses message bus instead of events to elements
* Revert chat command syntax and add skip alias (#9)Jokler2020-01-162-10/+17
|
* Use structopt for command parsing (#7)Jokler2020-01-152-46/+75
|
* Use youtube-dl json output for metadata access (#3)Jokler2020-01-143-35/+38
| | | | | | * Use youtube-dl json output for metadata access * Fix: meta_data -> metadata
* Make youtube-dl execution async againJokler2020-01-142-9/+11
| | | | | | If tokio is run with a low thread count running youtube-dl can freeze audio playback. This should prevent that by waiting for the command asynchronously.
* Remove playlist length limit by using VecDequeJokler2020-01-142-57/+12
|
* Use async channel to guarantee tokio never blocksJokler2020-01-143-10/+15
|
* Run cargo fmtJokler2020-01-135-148/+150
|
* Fix error that occurs on incorrect play commandJokler2020-01-121-1/+5
|
* Player: Ensure that audio is always stereo & 48KhzJokler2020-01-121-1/+4
|
* Player: Fix playlist read index calculationJokler2020-01-121-1/+1
|
* Player: Convert volume to dB before applying itJokler2020-01-122-6/+12
|
* Add enterprise logging and split out gstreamer & teamspeak specific codeFelix Kaaman2020-01-126-593/+806
|
* Add confirmation message after playlist clearJokler2020-01-071-0/+2
|
* Show correct state in the bot's name after loadingJokler2020-01-072-7/+15
|
* Change playlist limit to 50Jokler2020-01-071-1/+1
|
* Fix playlist popJokler2020-01-071-2/+4
|
* Add playlist feature and default channel flagJokler2020-01-073-111/+311
|
* Remove check for quit commandJokler2020-01-061-3/+0
|
* Change the volume range back to 0..100Jokler2020-01-061-1/+1
| | | | | | Numbers with a decimal point are a lot more annoying to type. This is probably because the '0.' prefix required by almost all values does not convey any meaningful information to the bot.
* Add error message when ytdl failsJokler2020-01-061-1/+15
|
* Add status to name and change volume range to 0..1Jokler2020-01-062-30/+84
|
* Ytdl: Add fallback from 'bestaudio' to 'best'Jokler2020-01-061-2/+2
|
* Fix volume commandJokler2020-01-061-3/+3
|
* Initial commitJokler2020-01-062-0/+460