mirror of
https://github.com/jimeh/.vscode.d.git
synced 2026-02-19 03:16:39 +00:00
chore(extensions): update lock files with new version information for cursor, vscode, vscode-insiders, and windsurf extensions
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
# cursor Extensions
|
||||
# Generated on Mon Nov 17 10:18:11 GMT 2025
|
||||
# Generated on Mon Nov 17 10:34:59 GMT 2025
|
||||
# Version: 2.0.77 (ba90f2f88e4911312761abab9492c42442117cf0, arm64)
|
||||
|
||||
ahmadalli.vscode-nginx-conf@0.3.5
|
||||
alefragnani.project-manager@12.8.0
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
# vscode-insiders Extensions
|
||||
# Generated on Mon Nov 17 10:20:03 GMT 2025
|
||||
# Generated on Mon Nov 17 10:35:03 GMT 2025
|
||||
# Version: 1.107.0-insider (7ba6cc6685504e207bf21dcefde21eb300cfa132, arm64)
|
||||
|
||||
ahmadalli.vscode-nginx-conf@0.3.5
|
||||
alefragnani.project-manager@12.8.0
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
# vscode Extensions
|
||||
# Generated on Mon Nov 17 10:25:45 GMT 2025
|
||||
# Generated on Mon Nov 17 10:35:02 GMT 2025
|
||||
# Version: 1.106.0 (ac4cbdf48759c7d8c3eb91ffe6bb04316e263c57, arm64)
|
||||
|
||||
ahmadalli.vscode-nginx-conf@0.3.5
|
||||
alefragnani.project-manager@12.8.0
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
# windsurf Extensions
|
||||
# Generated on Mon Nov 17 10:33:45 GMT 2025
|
||||
# Generated on Mon Nov 17 10:35:06 GMT 2025
|
||||
# Version: 1.105.0 (7d21465dc744144f86d675c2ad6a13cacd743c2e, arm64)
|
||||
|
||||
ahmadalli.vscode-nginx-conf@0.3.5
|
||||
alefragnani.project-manager@12.8.0
|
||||
|
||||
15
siren
15
siren
@@ -1166,9 +1166,24 @@ do_dump_extensions() {
|
||||
local extensions_lock
|
||||
extensions_lock="$(get_extensions_lock)"
|
||||
|
||||
# Capture editor version information
|
||||
local version_output
|
||||
local editor_version=""
|
||||
local editor_commit=""
|
||||
local editor_arch=""
|
||||
|
||||
if version_output=$("${editor_cmd}" --version 2> /dev/null); then
|
||||
editor_version=$(echo "${version_output}" | sed -n '1p' | tr -d '\r')
|
||||
editor_commit=$(echo "${version_output}" | sed -n '2p' | tr -d '\r')
|
||||
editor_arch=$(echo "${version_output}" | sed -n '3p' | tr -d '\r')
|
||||
fi
|
||||
|
||||
{
|
||||
echo "# ${SETUP_EDITOR} Extensions"
|
||||
echo "# Generated on ${current_date}"
|
||||
if [[ -n "${editor_version}" && -n "${editor_commit}" && -n "${editor_arch}" ]]; then
|
||||
echo "# Version: ${editor_version} (${editor_commit}, ${editor_arch})"
|
||||
fi
|
||||
echo
|
||||
"${editor_cmd}" --list-extensions --show-versions 2> /dev/null |
|
||||
strip_ansi_sequences |
|
||||
|
||||
Reference in New Issue
Block a user