diff --git a/CHANGELOG.md b/CHANGELOG.md index e6b2f1e..3372233 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # 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 * Updated to mediasoup v3 * Replace lib "passport-datporten" with "openid-client" (a general OIDC certified client) diff --git a/README.md b/README.md index c699a76..cd5db22 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,7 @@ Try it online at https://letsmeet.no. You can add /roomname to the URL for speci * Screen sharing * File sharing * Different layouts - -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. +* Internationalization support ## Docker 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: ```bash +$ sudo apt install redis $ cd .. $ cd server $ npm install diff --git a/app/package.json b/app/package.json index 6f171f3..ac81f80 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "multiparty-meeting", - "version": "3.0.0", + "version": "3.1.0", "private": true, "description": "multiparty meeting service", "author": "Håvar Aambø Fosstveit ", diff --git a/server/package.json b/server/package.json index 2079986..dbeebd7 100644 --- a/server/package.json +++ b/server/package.json @@ -1,6 +1,6 @@ { "name": "multiparty-meeting-server", - "version": "3.0.0", + "version": "3.1.0", "private": true, "description": "multiparty meeting server", "author": "Håvar Aambø Fosstveit ",