summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client-web/source/index.ts2
-rw-r--r--readme.md15
2 files changed, 9 insertions, 8 deletions
diff --git a/client-web/source/index.ts b/client-web/source/index.ts
index 327af4c..d2bd276 100644
--- a/client-web/source/index.ts
+++ b/client-web/source/index.ts
@@ -14,7 +14,7 @@ import { load_params, PREFS } from "./preferences/mod.ts";
import { SignalingConnection } from "./protocol/mod.ts";
import { Room } from "./room.ts"
-export const VERSION = "0.1.10"
+export const VERSION = "0.1.12"
export const ROOM_CONTAINER = ediv({ class: "room" })
export const RTC_CONFIG: RTCConfiguration = {
diff --git a/readme.md b/readme.md
index b216f27..e9cba8a 100644
--- a/readme.md
+++ b/readme.md
@@ -4,16 +4,17 @@ a simple secure web conferencing application
## Features
-- Rooms
-- Different stream types
+- Able to share different kinds of media:
- Camera
- Microphone
- Screen capture
-- Multiple streams
-- Noise suppression (rnnoise)
+ - Files
- End-to-end-encryption
- Peer-to-peer data transmission
-- Chat (text and images)
+- Multiple streams of any type
+- Noise suppression (using RNNoise)
+- Rooms (created on demand, do not persist)
+- Chat (supports text and images)
## Licence
@@ -29,7 +30,7 @@ For trying it out, a hosted version is available on
pacman -S --needed deno rustup make coreutils; rustup install nightly
git clone https://codeberg.org/metamuffin/keks-meet.git
cd keks-meet
-make run
+make run # or `make build`
```
When changing code, use `make watch` to re-build things automatically as needed.
@@ -42,7 +43,7 @@ If you use this project or have any suggestions, please
_Rift_ is similar to the
[magic wormhole](https://github.com/magic-wormhole/magic-wormhole), except that
-it's peer-to-peer. It reuses the keks-meet signaling server to establish a
+it's peer-to-peer. It reuses the keks-meet signaling protocol to establish a
WebRTC data channel.
```sh