Update changelog and release script

This commit is contained in:
Ash Keel 2021-12-06 15:15:14 +01:00
parent 84bef02a42
commit 754b77939b
No known key found for this signature in database
GPG Key ID: BAD8D93E7314ED3E
2 changed files with 13 additions and 2 deletions

View File

@ -25,10 +25,11 @@ jobs:
npm run build
- name: Build app for all platforms
run: |
go get github.com/mitchellh/gox
gox -arch="amd64 arm" -os "windows linux"
go install github.com/mitchellh/gox
gox -arch="amd64 arm" -os "windows linux" -ldflags "-X 'main.appVersion=`git describe --tags --always`'"
- name: Create release
uses: softprops/action-gh-release@v1
with:
prerelease: true
files: |
strimertul_*

View File

@ -7,9 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [CURRENT]
### Added
- **Chat alerts based on webhooks**: You can now add follow/sub/cheer/raid messages in chat. Basic messages are fully functional, advanced features are still in works (such as variations for certain thresholds, e.g. a different raid message if the raid has more than X viewers coming in).
- Strimertul now prints its own version when starting up, useful for troubleshooting.
### Changed
- Timers do not have a "enabled" toggle anymore, they are always enabled (just non-functional if you have none).
### Fixed
- Twitch bot: fixed command checking, previous matching only checked for prefix (eg. !verylong could be called by writing !verylonglongbaaah)
- DB was not getting garbage collected, this is now fixed with a GC run every 15 minutes.
## [1.6.3] - 2021-11-30