v7.1 is here!
This version straightens out a few housekeeping items: untracking config files that are user-customizable so that they don't dirty the working directory, adding a favicon, and adding a new "factory reset" button for TTS options.
Important upgrade note
Some config files are no longer tracked! If you cloned your working directory from 7.0 or earlier, you will have to move your existing config files out of the way before pulling the latest:
# Back up your settings and chatroom files:
mv -i settings.yaml settings.yaml.keep 2>/dev/null
mv -i chatrooms.yaml chatrooms.yaml.keep 2>/dev/null
# These files are no longer tracked as of 7.1:
git pull
# Restore your settings and chatroom files:
mv settings.yaml.keep settings.yaml 2>/dev/null
mv chatrooms.yaml.keep chatrooms.yaml 2>/dev/nullThese files are no longer tracked as of 7.1, so you can modify them all you like, and they will never show up as modified when you do git status.
What's Changed
- Issue #111 - add favicon by @scorbo2 in #115
- Issue #113 - untrack the settings and chatroom config files by @scorbo2 in #118
- Issue #119 - untrack personas.yaml; update startup logic by @scorbo2 in #120
- Issue #121 - add factory reset button on TTS server settings by @scorbo2 in #122
- Dev branch for 7.1 release by @scorbo2 in #114
Full Changelog: 7.0...7.1