diff --git a/docs/changelog.md b/docs/changelog.md index acd7bab9..34a16814 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,8 +1,9 @@ # Changelog -## master branch +## [n.eko v2.5](https://github.com/m1k1o/neko/releases/tag/v2.5) ### Bugs +- Fix ungoogled-chromium auto build bug. - Audio on iOS works now! ### New Features @@ -14,10 +15,13 @@ ### Misc - 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. - Sanitize display name and markdown codeblock input to prevent xss. - Display unmute overlay when joined. - 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) diff --git a/server/neko.go b/server/neko.go index b393b527..227c6b2a 100644 --- a/server/neko.go +++ b/server/neko.go @@ -39,7 +39,7 @@ var ( // Major version when you make incompatible API changes, major = "2" // 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 = "0" )