diff options
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | client-web/source/index.ts | 2 | ||||
-rw-r--r-- | readme.md | 4 | ||||
-rw-r--r-- | rust-toolchain | 2 | ||||
-rw-r--r-- | server/Cargo.toml | 2 |
5 files changed, 6 insertions, 6 deletions
@@ -2188,7 +2188,7 @@ dependencies = [ [[package]] name = "keks-meet-server" -version = "0.2.3" +version = "1.0.0" dependencies = [ "env_logger", "futures-util", diff --git a/client-web/source/index.ts b/client-web/source/index.ts index 65b734c..796937a 100644 --- a/client-web/source/index.ts +++ b/client-web/source/index.ts @@ -14,7 +14,7 @@ import { SignalingConnection } from "./protocol/mod.ts"; import { Room } from "./room.ts" import { control_bar, info_br } from "./menu.ts"; -export const VERSION = "0.2.3" +export const VERSION = "1.0.0" export interface ClientConfig { appearance?: { @@ -31,11 +31,11 @@ For trying it out, a hosted version is available on should help: ```sh -pacman -S --needed esbuild rustup make coreutils; rustup install nightly +pacman -S --needed esbuild rustup make coreutils curl tar; rustup install nightly git clone https://codeberg.org/metamuffin/keks-meet.git cd keks-meet make install-server # binaries will be installed to ~/.cargo/bin -keks-meet-server config/client.example.toml +keks-meet-server config/default.toml ``` When changing code, use `make watch` to re-build things automatically as needed. diff --git a/rust-toolchain b/rust-toolchain index 07ade69..bf867e0 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1 +1 @@ -nightly
\ No newline at end of file +nightly diff --git a/server/Cargo.toml b/server/Cargo.toml index 8deea37..1e4e236 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "keks-meet-server" -version = "0.2.3" +version = "1.0.0" edition = "2021" [dependencies] |