Compare commits
4 Commits
4c0a59e0a3
...
c56d796a2e
Author | SHA1 | Date | |
---|---|---|---|
|
c56d796a2e | ||
|
c25e949beb | ||
|
99d5550216 | ||
|
7f34d6d2db |
@ -1287,6 +1287,25 @@ def get_manifest(is_windows):
|
|||||||
checksum = ""
|
checksum = ""
|
||||||
add_to_devenv_script = []
|
add_to_devenv_script = []
|
||||||
|
|
||||||
|
fd_args='''fd \
|
||||||
|
--type file \
|
||||||
|
--no-ignore-vcs \
|
||||||
|
--strip-cwd-prefix \
|
||||||
|
--hidden \
|
||||||
|
--follow \
|
||||||
|
--exclude .git \
|
||||||
|
--exclude .cache \
|
||||||
|
--exclude .vs \
|
||||||
|
--exclude "*.dll" \
|
||||||
|
--exclude "*.exe" \
|
||||||
|
--exclude "*.lib" \
|
||||||
|
--exclude "*.obj" \
|
||||||
|
--exclude "*.pdb" \
|
||||||
|
--exclude "*.so" \
|
||||||
|
--exclude "*.tar" \
|
||||||
|
--exclude "*.zip" \
|
||||||
|
'''
|
||||||
|
|
||||||
if is_windows:
|
if is_windows:
|
||||||
download_url = f"https://github.com/sharkdp/fd/releases/download/v{version}/fd-v{version}-x86_64-pc-windows-msvc.zip"
|
download_url = f"https://github.com/sharkdp/fd/releases/download/v{version}/fd-v{version}-x86_64-pc-windows-msvc.zip"
|
||||||
download_checksum = "657cf430a1b349ce2b9cceeaed0b14220a417bbf24a85995aa6fbf8f746f4e03"
|
download_checksum = "657cf430a1b349ce2b9cceeaed0b14220a417bbf24a85995aa6fbf8f746f4e03"
|
||||||
@ -1294,7 +1313,7 @@ def get_manifest(is_windows):
|
|||||||
exe_path = "fd.exe"
|
exe_path = "fd.exe"
|
||||||
add_to_devenv_script = [
|
add_to_devenv_script = [
|
||||||
"set FZF_DEFAULT_OPTS=--multi --layout=reverse",
|
"set FZF_DEFAULT_OPTS=--multi --layout=reverse",
|
||||||
"set FZF_DEFAULT_COMMAND=fd --type f --strip-cwd-prefix --hidden --follow --exclude .git --exclude .cache --exclude .vs",
|
f"set FZF_DEFAULT_COMMAND={fd_args}"
|
||||||
]
|
]
|
||||||
else:
|
else:
|
||||||
download_url = f"https://github.com/sharkdp/fd/releases/download/v{version}/fd-v{version}-x86_64-unknown-linux-musl.tar.gz"
|
download_url = f"https://github.com/sharkdp/fd/releases/download/v{version}/fd-v{version}-x86_64-unknown-linux-musl.tar.gz"
|
||||||
@ -1303,10 +1322,9 @@ def get_manifest(is_windows):
|
|||||||
exe_path = "fd"
|
exe_path = "fd"
|
||||||
add_to_devenv_script = [
|
add_to_devenv_script = [
|
||||||
"FZF_DEFAULT_OPTS=\"--multi --layout=reverse\"",
|
"FZF_DEFAULT_OPTS=\"--multi --layout=reverse\"",
|
||||||
"FZF_DEFAULT_COMMAND=\"fd --type f --strip-cwd-prefix --hidden --follow --exclude .git --exclude .cache --exclude .vs\"",
|
f"FZF_DEFAULT_COMMAND=\"{fd_args}\""
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
result.append({
|
result.append({
|
||||||
"label": "Fd",
|
"label": "Fd",
|
||||||
"manifests": [
|
"manifests": [
|
||||||
@ -1359,4 +1377,83 @@ def get_manifest(is_windows):
|
|||||||
],
|
],
|
||||||
})
|
})
|
||||||
|
|
||||||
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
|
version = "3.52.0"
|
||||||
|
symlink = []
|
||||||
|
|
||||||
|
if is_windows:
|
||||||
|
exe_path = "losslesscut.exe"
|
||||||
|
download_url = f"https://github.com/mifi/lossless-cut/releases/download/v{version}/LosslessCut-win-x64.7z"
|
||||||
|
download_checksum = "fa554d5f63f7287d6b4b6bf19ac5916c99cabfe9ac22248e7a3c39898c5b56ff"
|
||||||
|
checksum = "3cae40fa13523e9dfe760521d167174ddfc21105eb20466e905eb39b74e8ed70"
|
||||||
|
else:
|
||||||
|
exe_path = f"LosslessCut-linux-x86_64.AppImage"
|
||||||
|
download_url = f"https://github.com/mifi/lossless-cut/releases/download/v{version}/{exe_path}"
|
||||||
|
download_checksum = "28daafe9fcd07473f460c0a903164efe93d4e5ce7e682b6f318a5550c34bdb99"
|
||||||
|
checksum = download_checksum
|
||||||
|
|
||||||
|
result.append({
|
||||||
|
"label": "LosslessCut",
|
||||||
|
"manifests": [
|
||||||
|
{
|
||||||
|
"download_url": download_url,
|
||||||
|
"download_checksum": download_checksum,
|
||||||
|
"version": version,
|
||||||
|
"unzip_method": 'default',
|
||||||
|
"executables": [
|
||||||
|
{
|
||||||
|
"path": exe_path,
|
||||||
|
"symlink": symlink,
|
||||||
|
"add_to_devenv_path": False,
|
||||||
|
"checksum": checksum,
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"add_to_devenv_script": [],
|
||||||
|
}
|
||||||
|
],
|
||||||
|
})
|
||||||
|
|
||||||
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
|
version = "1.20.1"
|
||||||
|
download_url = ""
|
||||||
|
download_checksum = ""
|
||||||
|
exe_path = ""
|
||||||
|
checksum = ""
|
||||||
|
|
||||||
|
if is_windows:
|
||||||
|
exe_path = "bin/go.exe"
|
||||||
|
download_url = f"https://go.dev/dl/go{version}.windows-amd64.zip"
|
||||||
|
download_checksum = "3b493969196a6de8d9762d09f5bc5ae7a3e5814b0cfbf9cc26838c2bc1314f9c"
|
||||||
|
checksum = "89fc8e2c47f2a2a9138e60159781ce377167cf61e30d8136fbad0d77ac9303ed"
|
||||||
|
symlink = [f"go-{version}.exe"]
|
||||||
|
else:
|
||||||
|
exe_path = f"bin/go"
|
||||||
|
download_url = f"https://go.dev/dl/go{version}.linux-amd64.tar.gz"
|
||||||
|
download_checksum = "000a5b1fca4f75895f78befeb2eecf10bfff3c428597f3f1e69133b63b911b02"
|
||||||
|
checksum = "dfaaf2d9212757e0c305c9554f616cac6744de646ef6ef20f5eaf9d9634771c3"
|
||||||
|
symlink = [f"go-{version}"]
|
||||||
|
|
||||||
|
result.append({
|
||||||
|
"label": "Go",
|
||||||
|
"manifests": [
|
||||||
|
{
|
||||||
|
"download_url": download_url,
|
||||||
|
"download_checksum": download_checksum,
|
||||||
|
"version": version,
|
||||||
|
"unzip_method": 'default',
|
||||||
|
"executables": [
|
||||||
|
{
|
||||||
|
"path": exe_path,
|
||||||
|
"symlink": symlink,
|
||||||
|
"add_to_devenv_path": True,
|
||||||
|
"checksum": checksum,
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"add_to_devenv_script": [],
|
||||||
|
}
|
||||||
|
],
|
||||||
|
})
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
@ -271,8 +271,7 @@ if wezterm.target_triple == "x86_64-pc-windows-msvc" then
|
|||||||
|
|
||||||
clink_exe = string.format("%s\\\\..\\\\..\\\\{clink_exe_path_for_wezterm}", wezterm.executable_dir)
|
clink_exe = string.format("%s\\\\..\\\\..\\\\{clink_exe_path_for_wezterm}", wezterm.executable_dir)
|
||||||
devenv_bat = string.format("%s\\\\..\\\\..\\\\{dev_env_script_name}.bat", wezterm.executable_dir)
|
devenv_bat = string.format("%s\\\\..\\\\..\\\\{dev_env_script_name}.bat", wezterm.executable_dir)
|
||||||
msvc_bat = string.format("%s\\\\..\\\\..\\\\msvc\\\\msvc-{msvc_version}.bat", wezterm.executable_dir)
|
msvc_bat = "C:\\\\Program Files\\\\Microsoft Visual Studio\\\\2022\\\\Community\\\\VC\\\\Auxiliary\\\\Build\\\\vcvarsall.bat"
|
||||||
win10_sdk_bat = string.format("%s\\\\..\\\\..\\\\msvc\\\\win-sdk-{win10_sdk_version}.bat", wezterm.executable_dir)
|
|
||||||
clink_profile = string.format("%s\\\\..\\\\..\\\\{clink_profile_path_for_wezterm}", wezterm.executable_dir)
|
clink_profile = string.format("%s\\\\..\\\\..\\\\{clink_profile_path_for_wezterm}", wezterm.executable_dir)
|
||||||
|
|
||||||
-- Taken from: https://wezfurlong.org/wezterm/shell-integration.html
|
-- Taken from: https://wezfurlong.org/wezterm/shell-integration.html
|
||||||
@ -283,8 +282,7 @@ if wezterm.target_triple == "x86_64-pc-windows-msvc" then
|
|||||||
default_prog = {{"cmd.exe", "/s", "/k",
|
default_prog = {{"cmd.exe", "/s", "/k",
|
||||||
clink_exe, "inject", "--profile", clink_profile, "-q",
|
clink_exe, "inject", "--profile", clink_profile, "-q",
|
||||||
"&&", "call", devenv_bat,
|
"&&", "call", devenv_bat,
|
||||||
"&&", "call", msvc_bat,
|
"&&", "call", msvc_bat, "x64"}}
|
||||||
"&&", "call", win10_sdk_bat}}
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return {{
|
return {{
|
||||||
|
Loading…
Reference in New Issue
Block a user