Skip to content

Releases: mynaparrot/plugNmeet-server

v1.1.6

19 Jul 04:13
72ccb10
Compare
Choose a tag to compare

What's Changed

  • fixed: not found error message by @jibon57 in #44
  • feat: scheduler to do reconciliation between DB & livekit by @jibon57 in #45

Full Changelog: v1.1.5...v1.1.6

v1.1.5

12 Jul 05:58
16b6721
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.4...v1.1.5

v1.1.4

06 Jul 12:03
84e9c6a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.3...v1.1.4

v1.1.3

02 Jul 19:28
8600d35
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.2...v1.1.3

v1.1.2

24 Jun 08:35
aff029c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.1...v1.1.2

v1.1.1

22 Jun 07:51
dcee9ea
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.0...v1.1.1

v1.1.0

18 Jun 01:04
9b399c2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.6...v1.1.0

Note:
This version has some changes in mysql. To update you MySQL table follow this:

  1. Navigate to your plugNmeet installation directory. If you have used our installer then the location will be: /opt/plugNmeet. cd /opt/plugNmeet
  2. Open docker-compose.yaml file & take a note of MYSQL_ROOT_PASSWORD.
  3. Now docker ps to get the CONTAINER ID of mariadb:10.6. For example my CONTAINER ID: ea6154e58422
  4. Now run docker exec -it ea6154e58422 sh. You should be enter to container.
  5. Now run mysql -u root -p. This ask you password. Past the MYSQL_ROOT_PASSWORD that you had taken note in step 2.
  6. 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

13 May 05:17
4d5f9af
Compare
Choose a tag to compare

What's Changed

Note

This version will require minimum client version of: v1.0.6

Full Changelog: v1.0.5...v1.0.6

v1.0.5

15 Apr 08:26
16a776f
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.4...v1.0.5

v1.0.4

10 Apr 01:50
1dc1064
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.3...v1.0.4