This repository has been archived on 2019-06-23. You can view files and clone it, but cannot push or open issues/pull-requests.
mumbledj/CHANGELOG.md

60 lines
2.2 KiB
Markdown
Raw Normal View History

2014-09-13 00:35:47 +02:00
MumbleDJ Changelog
==================
2014-09-15 21:21:50 +02:00
2014-09-25 17:41:59 +02:00
### September 25, 2014
* Forced ffmpeg to use libvorbis codec.
2014-09-23 17:52:19 +02:00
### September 23, 2014
* Bot now seems to be working!
* Skipping songs works now.
* Second audio track now plays directly after the first one.
* Silenced ffmpeg output again.
2014-09-18 20:56:50 +02:00
### September 18, 2014
* Added command alias options to config.
* Moved most of the skip-related code to song_queue.lua.
* Commented more thoroughly the code, mostly pointing out what each function does.
* Made more progress toward a working song queue. It only seems to play the first song in the queue at the moment.
2014-09-18 00:08:50 +02:00
### September 17, 2014
* Removed USERNAME field from config.lua. It wasn't needed and introduced situations that may cause problems.
* Fixed download_audio.py. It now seems to reliably download/encode audio. ffmpeg output has been silenced.
2014-09-18 00:51:45 +02:00
* Volume is now set during encode by ffmpeg, since the volume option in piepan's play() does not seem to work.
2014-09-18 00:08:50 +02:00
2014-09-16 21:04:01 +02:00
### September 16, 2014
* Removed volumeup/volumedown commands, replaced with just volume.
* Added deque.lua (thanks Pierre Chapuis!).
* Added song_queue.lua.
2014-09-18 00:08:50 +02:00
* Made significant progress toward a working song system.
2014-09-16 21:04:01 +02:00
2014-09-15 21:21:50 +02:00
### September 15, 2014
* Added command parsing.
* Added placeholder functions for various commands.
* Added admin, message, and other miscellaneous config options.
* Removed start command.
* Added a permissions/admin system.
### September 14, 2014
* Changed the base for the project from pymumble to piepan.
* Entire codebase is now written in Lua instead of Python.
* Re-implemented some of the config in config.lua.
* Implemented code to connect the bot to the server and move it into the Bot Testing channel.
2014-09-14 06:01:19 +02:00
### September 13, 2014
* Added song.py, a file that houses the Song class.
2014-09-14 07:37:47 +02:00
* Added command & storage options to config.py.
2014-09-13 00:35:47 +02:00
### September 12, 2014
* mumble-music-bot repository renamed to mumbledj.
* Renamed all mentions of mumble-music-bot or musicbot to mumbledj.
* Restructured project for easier imports.
* Added .gitignore for pymumble.
* Now successfully connects to Mumble servers.
2014-09-13 01:45:35 +02:00
* Added command parsing.
2014-09-11 22:24:53 +02:00
### September 11, 2014
* mumble-music-bot repository created.
* Added config.py with some basic configuration options.
2014-09-12 01:49:24 +02:00
* Put placeholder methods within the MusicBot object.
* Add run_bot.py.