From e65e8d1caa4eb8abb9b9344c63930c5c011055b9 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Thu, 22 Dec 2022 08:45:26 +0100 Subject: add missing license information to some files --- client-native-gui/src/main.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'client-native-gui/src/main.rs') diff --git a/client-native-gui/src/main.rs b/client-native-gui/src/main.rs index 11290ee..ab6387d 100644 --- a/client-native-gui/src/main.rs +++ b/client-native-gui/src/main.rs @@ -1,3 +1,8 @@ +/* + This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2022 metamuffin +*/ #![feature(box_syntax)] pub mod chat; -- cgit v1.2.3-70-g09d2 From f85d40d8c6cc2f3b58d1e0ea7f0382db88fffd4e Mon Sep 17 00:00:00 2001 From: metamuffin Date: Tue, 17 Jan 2023 22:28:35 +0100 Subject: refer to room name as secret instead --- client-native-gui/src/main.rs | 4 ++-- client-web/public/start.html | 4 ++-- client-web/source/index.ts | 10 +++++----- client-web/source/preferences/mod.ts | 10 +++++----- server/src/main.rs | 14 +++++++------- 5 files changed, 21 insertions(+), 21 deletions(-) (limited to 'client-native-gui/src/main.rs') diff --git a/client-native-gui/src/main.rs b/client-native-gui/src/main.rs index ab6387d..83de3a0 100644 --- a/client-native-gui/src/main.rs +++ b/client-native-gui/src/main.rs @@ -43,7 +43,7 @@ use tokio::task::JoinHandle; /// A graphical interface to keks-meet conferences struct Args { #[arg(short = 'R', long, default_value = "")] - default_room_name: String, + default_room_secret: String, #[arg(short = 'U', long, default_value = "alice")] default_username: String, } @@ -113,7 +113,7 @@ enum GuiResourceState { impl App { pub fn new(args: Args) -> Self { - Self::Prejoin(args.default_room_name, args.default_username) + Self::Prejoin(args.default_room_secret, args.default_username) } } diff --git a/client-web/public/start.html b/client-web/public/start.html index aa60f35..afe771e 100644 --- a/client-web/public/start.html +++ b/client-web/public/start.html @@ -16,7 +16,7 @@

To get started, click 'Join' and share the URL with your - partner. You can also optionally customize the url by entering a + partner. You can also optionally customize the URL by entering a secure/unguessable(!!!) identifier below.