Skip to content

Commit

Permalink
Merge branch 'rustdesk:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangbo8418 authored Nov 23, 2024
2 parents 0648aca + 02c274a commit af12019
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/flutter-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,13 @@ jobs:
- name: Install build runtime
run: |
brew install llvm create-dmg nasm cmake gcc wget ninja pkg-config
brew install llvm create-dmg nasm cmake gcc wget ninja
# pkg-config is handled in a separate step, because it may be already installed by `macos-latest`(14.7.1) runner
if command -v pkg-config &>/dev/null; then
echo "pkg-config is already installed"
else
brew install pkg-config
fi
- name: Install flutter
uses: subosito/flutter-action@v2
Expand Down
4 changes: 4 additions & 0 deletions docs/README-PL.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,3 +164,7 @@ Upewnij się, że uruchamiasz te polecenia z katalogu głównego repozytorium Ru
![image](https://user-images.githubusercontent.com/71636191/113112857-3fbd5d80-923c-11eb-9836-768325faf906.png)

![image](https://user-images.githubusercontent.com/71636191/135385039-38fdbd72-379a-422d-b97f-33df71fb1cec.png)

## [Serwery publiczne](#public-servers)

RustDesk jest obsługiwany przez bezpłatne serwer w Unii Europejskiej, uprzejmie dostarczony przez [Codext GmbH](https://codext.link/rustdesk?utm_source=github)
2 changes: 1 addition & 1 deletion src/lang/pl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -653,6 +653,6 @@ pub static ref T: std::collections::HashMap<&'static str, &'static str> =
("Upload folder", "Wyślij folder"),
("Upload files", "Wyślij pliki"),
("Clipboard is synchronized", "Schowek jest zsynchronizowany"),
("Update client clipboard", ""),
("Update client clipboard", "Uaktualnij schowek klienta"),
].iter().cloned().collect();
}

0 comments on commit af12019

Please sign in to comment.