Update CHANGELOG and version number

pull/170/head v3.0.8
Matthieu Grieger 2016-06-26 22:05:39 -07:00
parent c85fddcb4f
commit 89def4c197
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,10 @@
MumbleDJ Changelog
==================
### June 26, 2016 -- `v3.0.8`
* Fixed hang on setting `max_tracks_per_playlist` to a value larger than 50 (thanks [@mattikus](https://github.com/mattikus)).
* Fixed full directory path not being created properly for config file (thanks [@DanielMarquard](https://github.com/DanielMarquard)).
### June 25, 2016 -- `v3.0.7`
* Volume can now be set to `volume.lowest` and `volume.highest` (in other words, the range is inclusive now instead of exclusive).
* All configuration values can now be overridden via commandline arguments. For example: `mumbledj --admins.names="SuperUser,Matt" --volume.default="0.5" --commands.add.is_admin="false"`

View File

@ -32,7 +32,7 @@ func init() {
services.DJ = DJ
bot.DJ = DJ
DJ.Version = "v3.0.7"
DJ.Version = "v3.0.8"
logrus.SetLevel(logrus.WarnLevel)
}