From c403041b8478cd4f04cd97f88fd482e92cd9baea Mon Sep 17 00:00:00 2001 From: Mr-Update <37781396+Mr-Update@users.noreply.github.com> Date: Tue, 25 Apr 2023 22:02:40 +0200 Subject: [PATCH 1/6] Update _index.de.md --- content/dev/build/all/_index.de.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/dev/build/all/_index.de.md b/content/dev/build/all/_index.de.md index 103d45f..a416cfb 100644 --- a/content/dev/build/all/_index.de.md +++ b/content/dev/build/all/_index.de.md @@ -45,7 +45,7 @@ Schließlich können Sie auf "Run workflow" klicken, um die Rustdesk-Clients fü Gehen Sie in Ihrem gerade erstellten Fork zu "Settings -> Actions -> General". -Scrollen Sie nach unten und aktivieren Sie unter Workflow-Berechtigungen "Read and write permissions". +Scrollen Sie nach unten zum Abschnitt "Workflow permissions" und aktivieren Sie "Read and write permissions". ## Ihre erstellten Pakete herunterladen From 5e23c0ef619852833949adc1c049fab8a663f47e Mon Sep 17 00:00:00 2001 From: Mr-Update <37781396+Mr-Update@users.noreply.github.com> Date: Tue, 25 Apr 2023 22:05:16 +0200 Subject: [PATCH 2/6] Update _index.de.md --- content/dev/build/android/_index.de.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/dev/build/android/_index.de.md b/content/dev/build/android/_index.de.md index 8ac09ec..a5a70d8 100644 --- a/content/dev/build/android/_index.de.md +++ b/content/dev/build/android/_index.de.md @@ -61,6 +61,7 @@ cd rustdesk Möglicherweise müssen Sie auch einige Komponenten installieren, wenn Sie dies zum ersten Mal tun: ``` +sudo apt install ca-certificates -y sudo apt update -y sudo apt install -y g++ gcc git curl wget nasm yasm libgtk-3-dev clang cmake libclang-dev ninja-build llvm-dev libclang-10-dev llvm-10-dev pkg-config ``` @@ -196,7 +197,7 @@ sed -i "s/signingConfigs.release/signingConfigs.debug/g" ./flutter/android/app/b Dann müssen Sie die Datei `librustdesk.so` in das richtige Verzeichnis kopieren: ``` mkdir -p ./flutter/android/app/src/main/jniLibs/arm64-v8a -cp ./target/aarch64-linux-android/release/librustdesk.so ./flutter/android/app/src/main/jniLibs/arm64-v8a/librustdesk.so +cp ./target/aarch64-linux-android/release/liblibrustdesk.so ./flutter/android/app/src/main/jniLibs/arm64-v8a/librustdesk.so ``` Jetzt bauen wir endlich Flutter: ``` From 6e1a53a6e2ab20e8c8a25102ebd772aadc8aeb22 Mon Sep 17 00:00:00 2001 From: Mr-Update <37781396+Mr-Update@users.noreply.github.com> Date: Tue, 25 Apr 2023 22:06:37 +0200 Subject: [PATCH 3/6] Update _index.en.md --- content/dev/build/android/_index.en.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/dev/build/android/_index.en.md b/content/dev/build/android/_index.en.md index 601bf2c..f770c20 100644 --- a/content/dev/build/android/_index.en.md +++ b/content/dev/build/android/_index.en.md @@ -5,7 +5,7 @@ weight: 22 {{% notice note %}} This tutorial suppose that you are **familiar** with [Android NDK](https://developer.android.com/ndk/downloads), [Rust](https://rustup.rs/) and [Flutter](https://flutter.dev/). If you are not, please skip. -Or you can go further but at your own risk +Or you can go further but at your own risk. {{% /notice %}} {{% notice note %}} @@ -39,7 +39,7 @@ This is step-to-step instruction. ## Generating Bridge 🌉 -Due to fact that this project is based on [Flutter Rust Bridge](https://cjycode.com/flutter_rust_bridge/index.html) you should first generate it, you can achieve it by running following commands: +Due to fact that this project is based on [Flutter Rust Bridge](https://cjycode.com/flutter_rust_bridge/index.html) you should first generate it, you can achieve it by running following commands. Change your current directory into `rustdesk` directory: @@ -61,6 +61,7 @@ cd rustdesk You also might be required to install some prerequisites if you are doing this first time: ``` +sudo apt install ca-certificates -y sudo apt update -y sudo apt install -y g++ gcc git curl wget nasm yasm libgtk-3-dev clang cmake libclang-dev ninja-build llvm-dev libclang-10-dev llvm-10-dev pkg-config ``` From e2d10c9b9bc0f04f3f8918ac957de7ba43d6190b Mon Sep 17 00:00:00 2001 From: Mr-Update <37781396+Mr-Update@users.noreply.github.com> Date: Tue, 25 Apr 2023 22:07:16 +0200 Subject: [PATCH 4/6] Update _index.nl.md --- content/dev/build/android/_index.nl.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/dev/build/android/_index.nl.md b/content/dev/build/android/_index.nl.md index a1ffee5..8a8f79d 100644 --- a/content/dev/build/android/_index.nl.md +++ b/content/dev/build/android/_index.nl.md @@ -61,6 +61,7 @@ cd rustdesk Als u dit voor de eerste keer doet, moet u misschien ook een aantal vereisten installeren ``` +sudo apt install ca-certificates -y sudo apt update -y sudo apt install -y g++ gcc git curl wget nasm yasm libgtk-3-dev clang cmake libclang-dev ninja-build llvm-dev libclang-10-dev llvm-10-dev pkg-config ``` @@ -214,4 +215,4 @@ Als je resultaat is zoals `✓ Built build/app` negeer het dan, het betekent ge Als je wilt kun je de gebouwde app ergens anders heen verplaatsen, voel je vrij om het uit te voeren: ``` mv build/app/outputs/flutter-apk/app-arm64-v8a-release.apk ../rustdesk-release.apk -``` \ No newline at end of file +``` From f935e177cb9197054caa0fc7c13c9ce814be299f Mon Sep 17 00:00:00 2001 From: Mr-Update <37781396+Mr-Update@users.noreply.github.com> Date: Tue, 25 Apr 2023 22:09:46 +0200 Subject: [PATCH 5/6] Update _index.nl.md --- content/self-host/_index.nl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/self-host/_index.nl.md b/content/self-host/_index.nl.md index 5dae086..bd85868 100644 --- a/content/self-host/_index.nl.md +++ b/content/self-host/_index.nl.md @@ -5,7 +5,7 @@ pre: "2. " chapter: true --- -### Hoofdstuk2 2 +### Hoofdstuk 2 # Zelf-hosten From 11712342f65879a2c910e101258083c5487b1ac5 Mon Sep 17 00:00:00 2001 From: Mr-Update <37781396+Mr-Update@users.noreply.github.com> Date: Tue, 25 Apr 2023 22:11:04 +0200 Subject: [PATCH 6/6] Update _index.de.md --- content/self-host/install/_index.de.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/self-host/install/_index.de.md b/content/self-host/install/_index.de.md index f2b773b..fd5d41c 100644 --- a/content/self-host/install/_index.de.md +++ b/content/self-host/install/_index.de.md @@ -232,6 +232,8 @@ hbbs.example.com:21116 {{% notice note %}} Sie müssen sowohl `host` als auch `key` setzen, das Fehlen eines der beiden wird nicht funktionieren. +Fügen Sie nach dem Schlüssel optional ein `#` als Trennzeichen vor `.exe` hinzu, um zu verhindern, dass der Schlüssel verstümmelt wird, wenn Windows oder der Browser die Datei beim Herunterladen von doppelten Namen umbenennt. + Wenn der Schlüssel ungültige Zeichen enthält, die nicht in einem Windows-Dateinamen verwendet werden können, entfernen Sie bitte die Datei `id_ed25519` von Ihrem Server und starten Sie `hbbs`/`hbbr` neu. Dadurch wird die Datei `id_ed25519.pub` neu generiert. Möglicherweise müssen Sie diesen Vorgang wiederholen, bis Sie gültige Zeichen erhalten.