Releases: mynaparrot/plugNmeet-server
Releases · mynaparrot/plugNmeet-server
v1.1.6
v1.1.5
v1.1.4
v1.1.3
What's Changed
- Few improvements by @jibon57 in #37
- feat: Support custom parameters for LTI
Full Changelog: v1.1.2...v1.1.3
v1.1.2
v1.1.1
v1.1.0
What's Changed
- Recorder improvement by @jibon57 in #29
- Moved recorder to use redis for status (0922dd8)
- Features: Waiting room + Polls + Room duration by @jibon57 in #30
- Features: Breakout room + Private chat by @jibon57 in #31
- Get livekit URL after validation (7cd766c)
- using goccy/go-json
- use compress & real Content-Type
Full Changelog: v1.0.6...v1.1.0
Note:
This version has some changes in mysql. To update you MySQL table follow this:
- Navigate to your plugNmeet installation directory. If you have used our installer then the location will be: /opt/plugNmeet.
cd /opt/plugNmeet
- Open
docker-compose.yaml
file & take a note ofMYSQL_ROOT_PASSWORD
. - Now
docker ps
to get theCONTAINER ID
ofmariadb:10.6
. For example my CONTAINER ID: ea6154e58422 - Now run
docker exec -it ea6154e58422 sh
. You should be enter to container. - Now run
mysql -u root -p
. This ask you password. Past theMYSQL_ROOT_PASSWORD
that you had taken note in step 2. - Now copy & past bellow commands.
use plugnmeet;
ALTER TABLE `pnm_room_info` ADD COLUMN IF NOT EXISTS `is_breakout_room` INT(1) NOT NULL DEFAULT '0' AFTER `webhook_url`, ADD COLUMN IF NOT EXISTS `parent_room_id` VARCHAR(64) NOT NULL DEFAULT '' AFTER `is_breakout_room`;
v1.0.6
What's Changed
- impl: user visibility watch by @jibon57 in #18
- Whiteboard file upload enhancements by @jibon57 in #19
- feat: External media player by @jibon57 in #20
- Feat: Presenter by @jibon57 in #21
- use png instead of svg by @jibon57 in #22
- dependencies update by @jibon57 in #23
- send notification before removing user by @jibon57 in #24
- Check room status before join, if production by @jibon57 in #25
- users block list by @jibon57 in #26
- Auth rewrite by @jibon57 in #27
- Fix: invalid method by @jibon57 in #28
Note
This version will require minimum client version of: v1.0.6
Full Changelog: v1.0.5...v1.0.6