mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-05-10 18:06:01 +02:00
Refact/ci remove third party topmost window (#7263)
* Refact. Remove third-party prebuilt dep, topmost window Signed-off-by: fufesou <shuanglongchen@yeah.net> * fix ci Signed-off-by: fufesou <shuanglongchen@yeah.net> * Update third-party-RustDeskTempTopMostWindow.yml --------- Signed-off-by: fufesou <shuanglongchen@yeah.net> Co-authored-by: RustDesk <71636191+rustdesk@users.noreply.github.com>
This commit is contained in:
parent
1b99d28c9b
commit
49c107bb5f
3 changed files with 79 additions and 1 deletions
7
build.py
7
build.py
|
@ -80,8 +80,10 @@ def parse_rc_features(feature):
|
|||
return get_all_features()
|
||||
elif isinstance(feature, list):
|
||||
if windows:
|
||||
# download third party is deprecated, we use github ci instead.
|
||||
# force add PrivacyMode
|
||||
feature.append('PrivacyMode')
|
||||
# feature.append('PrivacyMode')
|
||||
pass
|
||||
for feat in feature:
|
||||
if isinstance(feat, str) and feat.upper() == 'ALL':
|
||||
return get_all_features()
|
||||
|
@ -194,6 +196,9 @@ def generate_build_script_for_docker():
|
|||
system2("bash /tmp/build.sh")
|
||||
|
||||
|
||||
# Downloading third party resources is deprecated.
|
||||
# We can use this function in an offline build environment.
|
||||
# Even in an online environment, we recommend building third-party resources yourself.
|
||||
def download_extract_features(features, res_dir):
|
||||
import re
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue