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

133 lines
5.9 KiB
Markdown
Raw Normal View History

2014-09-13 00:35:47 +02:00
MumbleDJ Changelog
==================
2014-09-15 21:21:50 +02:00
2015-01-05 21:05:46 +01:00
### January 5, 2015 -- `v2.2.1`
* Attached `gumbleutil.AutoBitrate` EventListener to client. This should hopefully fix the issues with audio cutting in and out.
* Moved dependency installation to default `make` command to better enforce new updates.
* Added `make build` to `Makefile` to allow previous functionality of the default `make` command.
2015-01-03 20:48:57 +01:00
### January 3, 2015 -- `v2.2.0`
* Added ability to add YouTube playlists to the queue. Note that the max size of a playlist is 25 songs, anything larger will only use the first 25 songs in the playlist.
* Fixed a crash while attempting to add URLs to the queue.
* Re-made the song queue using my own "queue-like" structure using slices.
2014-12-30 22:34:53 +01:00
### December 30, 2014 -- `v2.1.3`
* Fixed YouTube URL parsing not working for some forms of YouTube URLs.
* Now recovers more gracefully if an audio download fails. Instead of panicking, the bot will send a message to the user who added the URL, telling them the audio download failed.
2014-12-29 11:37:04 +01:00
### December 29, 2014 -- `v2.1.2`
* Fixed skip messages not being displayed in chat.
2014-12-27 19:43:03 +01:00
### December 27, 2014 -- `v2.0.0, v2.1.0, v2.1.1`
2014-12-27 09:31:27 +01:00
* Reached feature parity with old version of MumbleDJ.
* Bot is now written completely in Golang instead of Lua and Python.
2014-12-27 09:34:38 +01:00
* Now uses [`gumble`](https://github.com/layeh/gumble) for interacting with Mumble instead of [`piepan`](https://github.com/layeh/piepan).
2014-12-27 09:31:27 +01:00
* Stability improved in many areas.
* Audio quality is slightly better due to using higher bitrate m4a files instead of Ogg Vorbis.
* All YouTube URLs should be supported now.
* Added an admin skip command that allows an admin to force skip a song.
* Added `mumbledj.gcfg`, where all configuration options are now stored.
* Added a reload command, used to reload the configuration when a change is made.
2014-12-27 18:41:27 +01:00
* Implemented volume control. Now changes volume while audio is playing!
2014-12-27 19:05:13 +01:00
* Code is now more thoroughly commented.
2014-12-27 19:40:32 +01:00
* Fixed char comparison with dj.conf.General.CommandPrefix.
2014-12-27 09:31:27 +01:00
### December 8, 2014
* Switched from Ruby to Go, using `gumble` instead of `mumble-ruby` now.
2014-11-16 03:46:40 +01:00
### November 15, 2014
* Created "v2" branch for Ruby rewrite.
### November 9, 2014
* Fixed volume changed message showing wrong value.
### October 24, 2014
* Switched volume change method. The volume is now changed directly through `piepan` instead of `ffmpeg`.
* Fixed another bug with volume changing.
2014-10-24 05:51:51 +02:00
### October 23, 2014
* Fixed a bug that would not allow audio encoding to complete successfully while on Debian.
* Fixed a stupid typo that broke the `!volume` command.
* Updated `SETUP.md` with instructions on installing MumbleDJ on Debian.
* Added missing commands in `SETUP.md`.
### October 18, 2014
* Fixed a crash when an error occurs during the audio downloading & encoding process.
* Fixed a crash that occurs when the bot tries to join a default channel that does not exist. If the default channel does not exist, the bot will just move itself
to the root of the server instead.
2014-10-13 23:56:19 +02:00
### October 13, 2014
* Added `SETUP.md` which contains a guide on how to configure MumbleDJ and install its dependencies.
2014-10-14 07:14:38 +02:00
* Deleted song_queue.lua and moved all contents to mumbledj.lua. In the end this will make the script simpler.
* Fixed song skipping.
2014-10-13 23:56:19 +02:00
### October 7, 2014
* Made user skip message show even when the target number of skips has been reached.
* Made "Music" the default Mumble channel.
2014-10-01 06:56:53 +02:00
### September 30, 2014
* Fixed skips not working correctly.
* Fixed a crash related to private messages.
2014-09-27 01:04:07 +02:00
### September 26, 2014
* Removed play and pause commands. There were issues with these commands, and they both serve functions that can be done within Mumble per-user.
* Removed all play and pause configuration options from config.lua.
2014-09-27 01:09:47 +02:00
* Updated .gitignore to ignore .ogg files.
2014-09-27 01:04:07 +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.