Preparing for release.
parent
69677e4972
commit
74bf6e1781
|
|
@ -1,5 +1,14 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
### 3.1
|
||||||
|
* Browser session storage
|
||||||
|
* Virtual lobby for rooms
|
||||||
|
* Allow minimum TLSv1.2 and recommended ciphers
|
||||||
|
* Code splitting for faster load times
|
||||||
|
* Various GUI fixes
|
||||||
|
* Internationalization support
|
||||||
|
* Can require sign in for access
|
||||||
|
|
||||||
### 3.0
|
### 3.0
|
||||||
* Updated to mediasoup v3
|
* Updated to mediasoup v3
|
||||||
* Replace lib "passport-datporten" with "openid-client" (a general OIDC certified client)
|
* Replace lib "passport-datporten" with "openid-client" (a general OIDC certified client)
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,7 @@ Try it online at https://letsmeet.no. You can add /roomname to the URL for speci
|
||||||
* Screen sharing
|
* Screen sharing
|
||||||
* File sharing
|
* File sharing
|
||||||
* Different layouts
|
* Different layouts
|
||||||
|
* Internationalization support
|
||||||
There is also a SIP gateway that can be found [here](https://github.com/havfo/multiparty-meeting-sipgw). To try it, call: roomname@letsmeet.no.
|
|
||||||
|
|
||||||
## Docker
|
## Docker
|
||||||
If you want the automatic approach, you can find a docker image [here](https://hub.docker.com/r/misi/mm/).
|
If you want the automatic approach, you can find a docker image [here](https://hub.docker.com/r/misi/mm/).
|
||||||
|
|
@ -51,6 +50,7 @@ This will build the client application and copy everythink to `server/public` fr
|
||||||
* Set up the server:
|
* Set up the server:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
$ sudo apt install redis
|
||||||
$ cd ..
|
$ cd ..
|
||||||
$ cd server
|
$ cd server
|
||||||
$ npm install
|
$ npm install
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "multiparty-meeting",
|
"name": "multiparty-meeting",
|
||||||
"version": "3.0.0",
|
"version": "3.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "multiparty meeting service",
|
"description": "multiparty meeting service",
|
||||||
"author": "Håvar Aambø Fosstveit <h@fosstveit.net>",
|
"author": "Håvar Aambø Fosstveit <h@fosstveit.net>",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "multiparty-meeting-server",
|
"name": "multiparty-meeting-server",
|
||||||
"version": "3.0.0",
|
"version": "3.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "multiparty meeting server",
|
"description": "multiparty meeting server",
|
||||||
"author": "Håvar Aambø Fosstveit <h@fosstveit.net>",
|
"author": "Håvar Aambø Fosstveit <h@fosstveit.net>",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue