bump version to v2.5.

This commit is contained in:
Miroslav Šedivý 2021-12-01 00:09:14 +01:00
parent 9264483901
commit b6b603dad9
2 changed files with 6 additions and 2 deletions

View File

@ -1,8 +1,9 @@
# Changelog # Changelog
## master branch ## [n.eko v2.5](https://github.com/m1k1o/neko/releases/tag/v2.5)
### Bugs ### Bugs
- Fix ungoogled-chromium auto build bug.
- Audio on iOS works now! - Audio on iOS works now!
### New Features ### New Features
@ -14,10 +15,13 @@
### Misc ### Misc
- ARM-based images not bound to Raspberry Pi only. - ARM-based images not bound to Raspberry Pi only.
- Repository cleanup, renamed `.m1k1o` to `.docker`.
- Updated docs, now available at https://neko.m1k1o.net.
- Add japanese characters support. - Add japanese characters support.
- Sanitize display name and markdown codeblock input to prevent xss. - Sanitize display name and markdown codeblock input to prevent xss.
- Display unmute overlay when joined. - Display unmute overlay when joined.
- Sync player play/pause/mute/umpute/volume state with store (beneficial for mobiles when using fullscreen mode). - Sync player play/pause/mute/umpute/volume state with store (beneficial for mobiles when using fullscreen mode).
- Automatic WebRTC SDP negotiation using `onnegotiationneeded` handlers. This allows adding/removing track on demand in a session.
## [n.eko v2.4](https://github.com/m1k1o/neko/releases/tag/v2.4) ## [n.eko v2.4](https://github.com/m1k1o/neko/releases/tag/v2.4)

View File

@ -39,7 +39,7 @@ var (
// Major version when you make incompatible API changes, // Major version when you make incompatible API changes,
major = "2" major = "2"
// Minor version when you add functionality in a backwards-compatible manner, and // Minor version when you add functionality in a backwards-compatible manner, and
minor = "4" minor = "5"
// Patch version when you make backwards-compatible bug fixes. // Patch version when you make backwards-compatible bug fixes.
patch = "0" patch = "0"
) )