aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2022-12-22 08:35:30 +0100
committermetamuffin <metamuffin@disroot.org>2022-12-22 08:35:30 +0100
commit7dc0c3ec6f982377f6c2e2e87c983c5d4b5870c6 (patch)
tree7739d2f3f3e653e778d0e155d51118eb14d0b2aa
parent8a774d3a27d7c5d177f922821b8111570871f89a (diff)
downloadkeks-meet-7dc0c3ec6f982377f6c2e2e87c983c5d4b5870c6.tar
keks-meet-7dc0c3ec6f982377f6c2e2e87c983c5d4b5870c6.tar.bz2
keks-meet-7dc0c3ec6f982377f6c2e2e87c983c5d4b5870c6.tar.zst
bump version, update readme
-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