Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hungarian translate #732

Open
wants to merge 44 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
b1dbbfc
docs(readme): Fixed 'build' category link
Zeroo28 Jun 29, 2022
f0cd5fd
chore: removed .vscode directory
Zeroo28 Jun 29, 2022
1d99246
Revert "docs(readme): Fixed 'build' category link"
Zeroo28 Jun 29, 2022
96356af
revert(vcs): removed .vscode directory from .gitignore
Zeroo28 Jul 6, 2022
1d62b27
docs: fixes grammar mistakes and typos
Zeroo28 Jul 6, 2022
8414341
Merge branch 'patch-1' of https://github.com/Zeroo28/QtScrcpy into pa…
Zeroo28 Jul 6, 2022
3929ebf
Merge pull request #638 from Zeroo28/patch-1
barry-ran Jul 10, 2022
42a8958
[Github Actions] Capture linux build artifacts
FeyXieXzf Aug 6, 2022
a461aab
gh-actions: update qt
FeyXieXzf Aug 6, 2022
4a41b61
gh-actions: make artifacts' name more clear
FeyXieXzf Aug 6, 2022
4d0a93d
gh-actions: fix grammar
FeyXieXzf Aug 6, 2022
cc66358
gh-actions: try to standardize the process
FeyXieXzf Aug 6, 2022
ca70498
gh-actions: fix & update actions
FeyXieXzf Aug 6, 2022
0d6a9d4
docs: update readme
FeyXieXzf Aug 6, 2022
4da4168
docs: update readme again
FeyXieXzf Aug 6, 2022
06f905d
docs: update chinese readme
FeyXieXzf Aug 6, 2022
1d46e38
ci / gh-actions : update linux build script
FeyXieXzf Aug 8, 2022
dd3a49b
gh-actions: use relwithdebinfo for actions and release for releases
FeyXieXzf Aug 8, 2022
3b4e2c7
feat: enable back to original size after exit fullscreen.
re2zero Aug 18, 2022
fc9e922
docs + ci: update readme and rename linux build script as i have test…
FeyXieXzf Aug 22, 2022
b0a9302
ci: fix a problem caused by renaming
FeyXieXzf Aug 22, 2022
b61818f
gh-actions: remove gen-ver as it causes problems
FeyXieXzf Aug 22, 2022
c074428
scrcpy-server: update to 1.24
FeyXieXzf Aug 22, 2022
4c87400
Merge pull request #656 from UjhhgtgTeams/dev
barry-ran Sep 12, 2022
7b653d7
fix: record failed
barry-ran Sep 12, 2022
0d19d7b
feat: update server source code
barry-ran Sep 12, 2022
d1e14d2
fix: drag ui delay recv video
barry-ran Sep 12, 2022
efda484
Merge branch 'barry-ran:dev' into dev
re2zero Sep 13, 2022
ffaf41d
Merge pull request #666 from re2zero/dev
barry-ran Sep 14, 2022
5be490d
Enable dark window border on Windows
FrzMtrsprt Oct 7, 2022
34c39a4
feat: update server 1.24
barry-ran Oct 16, 2022
06ce462
fix: build error
barry-ran Oct 16, 2022
b9cd841
Fix build error
FrzMtrsprt Oct 16, 2022
0ad1c2a
Merge branch 'barry-ran:dev' into dark_border
FrzMtrsprt Oct 16, 2022
ef6489c
Merge branch 'dark_border' of https://github.com/FrzMtrsprt/QtScrcpy …
FrzMtrsprt Oct 16, 2022
9ac35d3
fix: mac read client version is 1.21
barry-ran Oct 17, 2022
c9919b3
Merge pull request #690 from FrzMtrsprt/dark_border
barry-ran Oct 17, 2022
0b6a9e2
fix: server start failed on samsung
Oct 18, 2022
ac70b7d
docs: update readme
Oct 18, 2022
fcd6832
docs: update readme
Oct 18, 2022
4b5fbe7
fix: samsung error stack corruption detected
Oct 21, 2022
f9fefb8
Merge pull request #706 from barry-ran/fix/sanxing_bug
barry-ran Oct 21, 2022
e981a17
fix: config path error on mac
barry-ran Oct 30, 2022
066324a
Hungarian translate
gidano Dec 7, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci / gh-actions : update linux build script
The script is tested on my computer with zsh, qt 5.15.2
  • Loading branch information
FeyXieXzf committed Aug 8, 2022
commit 1d46e382c59a0ffd46f04414178e0a5541d5a4f4
66 changes: 24 additions & 42 deletions ci/linux/build_for_ubuntu.sh
Original file line number Diff line number Diff line change
@@ -1,85 +1,67 @@

echo
echo
echo ---------------------------------------------------------------
echo check ENV
echo Check \& Set Environment Variables
echo ---------------------------------------------------------------

# 从环境变量获取必要参数
# 例如 /home/barry/Qt5.9.6/5.9.6
echo ENV_QT_PATH $ENV_QT_PATH
# Get Qt path
# ENV_QT_PATH example: /home/barry/Qt5.9.6/5.9.6
echo Current ENV_QT_PATH: $ENV_QT_PATH
echo Current directory: $(pwd)
# Set variables
qt_cmake_path=$ENV_QT_PATH/gcc_64/lib/cmake/Qt5
export PATH=$qt_gcc_path/bin:$PATH

# 获取绝对路径,保证其他目录执行此脚本依然正确
{
cd $(dirname "$0")
script_path=$(pwd)
cd -
} &> /dev/null # disable output
# 设置当前目录,cd的目录影响接下来执行程序的工作目录
# Remember working directory
old_cd=$(pwd)
cd $(dirname "$0")

# 启动参数声明
build_mode=RelWithDebInfo
# Set working dir to the script's path
cd $(dirname "$0")/.../

echo
echo
echo ---------------------------------------------------------------
echo check build param[Debug/Release/MinSizeRel/RelWithDebInfo]
echo Check Build Parameters
echo ---------------------------------------------------------------
echo Possible build modes: Debug/Release/MinSizeRel/RelWithDebInfo

# 编译参数检查
build_mode=$(echo $1)
build_mode="$1"
if [[ $build_mode != "Release" && $build_mode != "Debug" && $build_mode != "MinSizeRel" && $build_mode != "RelWithDebInfo" ]]; then
echo "error: unkonow build mode -- $1"
echo "error: unknown build mode, exiting......"
exit 1
fi

# 提示
echo current build mode: $build_mode

# 环境变量设置
#export PATH=$qt_gcc_path/bin:$PATH
echo Current build mode: $build_mode

echo
echo
echo ---------------------------------------------------------------
echo begin cmake build
echo CMake Build Begins
echo ---------------------------------------------------------------

# 删除输出目录
output_path=$script_path../../output
# Remove output folder
output_path=./output
if [ -d "$output_path" ]; then
rm -rf $output_path
fi
# 删除临时目录
build_path=$script_path/../build_temp
if [ -d "$build_path" ]; then
rm -rf $build_path
fi
mkdir $build_path
cd $build_path

cmake_params="-DCMAKE_PREFIX_PATH=$qt_cmake_path -DCMAKE_BUILD_TYPE=$build_mode"
cmake $cmake_params ../..
cmake $cmake_params .
if [ $? -ne 0 ] ;then
echo "cmake failed"
echo "error: CMake failed, exiting......"
exit 1
fi

cmake --build . --config $build_mode -j8
cmake --build . --config "$build_mode" -j8
if [ $? -ne 0 ] ;then
echo "cmake build failed"
echo "error: CMake build failed, exiting......"
exit 1
fi

echo
echo
echo ---------------------------------------------------------------
echo finish!!!
echo CMake Build Succeeded
echo ---------------------------------------------------------------

# 恢复当前目录
# Resume current directory
cd $old_cd
exit 0