[mod] 20250113
This commit is contained in:
parent
59d13e309d
commit
38d3e16095
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"sessionId": "d8a1ffbb-daa4-40d9-a1d5-22c969f7681d",
|
||||||
|
"lastHeartbeat": 1736740543653
|
||||||
|
}
|
@ -1 +0,0 @@
|
|||||||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.1924 5.06738L11.8076 5.68262L6.6875 10.8027L4.19238 8.30762L4.80762 7.69238L6.6875 9.57227L11.1924 5.06738ZM8 1C8.64258 1 9.26237 1.08431 9.85938 1.25293C10.4564 1.41699 11.0146 1.65169 11.5342 1.95703C12.0537 2.25781 12.5254 2.6224 12.9492 3.05078C13.3776 3.47461 13.7422 3.94629 14.043 4.46582C14.3483 4.98535 14.583 5.54362 14.7471 6.14062C14.9157 6.73763 15 7.35742 15 8C15 8.64258 14.9157 9.26237 14.7471 9.85938C14.583 10.4564 14.3483 11.0146 14.043 11.5342C13.7422 12.0537 13.3776 12.5277 12.9492 12.9561C12.5254 13.3799 12.0537 13.7445 11.5342 14.0498C11.0146 14.3506 10.4564 14.5853 9.85938 14.7539C9.26237 14.918 8.64258 15 8 15C7.35742 15 6.73763 14.918 6.14062 14.7539C5.54362 14.5853 4.98535 14.3506 4.46582 14.0498C3.94629 13.7445 3.47233 13.3799 3.04395 12.9561C2.62012 12.5277 2.25553 12.0537 1.9502 11.5342C1.64941 11.0146 1.41471 10.4587 1.24609 9.86621C1.08203 9.26921 1 8.64714 1 8C1 7.35742 1.08203 6.73763 1.24609 6.14062C1.41471 5.54362 1.64941 4.98535 1.9502 4.46582C2.25553 3.94629 2.62012 3.47461 3.04395 3.05078C3.47233 2.6224 3.94629 2.25781 4.46582 1.95703C4.98535 1.65169 5.54134 1.41699 6.13379 1.25293C6.73079 1.08431 7.35286 1 8 1ZM8 14.125C8.56055 14.125 9.10059 14.0521 9.62012 13.9062C10.1442 13.7604 10.6318 13.5553 11.083 13.291C11.5387 13.0221 11.9535 12.7008 12.3271 12.3271C12.7008 11.9535 13.0199 11.541 13.2842 11.0898C13.5531 10.6341 13.7604 10.1465 13.9062 9.62695C14.0521 9.10742 14.125 8.5651 14.125 8C14.125 7.43945 14.0521 6.89941 13.9062 6.37988C13.7604 5.85579 13.5531 5.36816 13.2842 4.91699C13.0199 4.46126 12.7008 4.04655 12.3271 3.67285C11.9535 3.29915 11.5387 2.98014 11.083 2.71582C10.6318 2.44694 10.1442 2.23958 9.62012 2.09375C9.10059 1.94792 8.56055 1.875 8 1.875C7.43945 1.875 6.89714 1.94792 6.37305 2.09375C5.85352 2.23958 5.36589 2.44694 4.91016 2.71582C4.45898 2.98014 4.04655 3.29915 3.67285 3.67285C3.29915 4.04655 2.97786 4.46126 2.70898 4.91699C2.44466 5.36816 2.23958 5.85579 2.09375 6.37988C1.94792 6.89941 1.875 7.43945 1.875 8C1.875 8.56055 1.94792 9.10286 2.09375 9.62695C2.23958 10.1465 2.44466 10.6341 2.70898 11.0898C2.97786 11.541 3.29915 11.9535 3.67285 12.3271C4.04655 12.7008 4.45898 13.0221 4.91016 13.291C5.36589 13.5553 5.85352 13.7604 6.37305 13.9062C6.89258 14.0521 7.4349 14.125 8 14.125Z" fill="green" /></svg>
|
|
Before Width: | Height: | Size: 2.4 KiB |
@ -0,0 +1,54 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
script_file=$0
|
||||||
|
while [ -h "$script_file" ]; do
|
||||||
|
script_file=$(readlink $script_file)
|
||||||
|
done
|
||||||
|
basedir=$(dirname "$(echo "$script_file" | sed -e 's,\\,/,g')")
|
||||||
|
|
||||||
|
# This file is placed in a stable (version-independent) location
|
||||||
|
# and forwards to the currently installed version
|
||||||
|
|
||||||
|
# WSL detection borrowed from VS Code
|
||||||
|
IN_WSL=false
|
||||||
|
if [ -n "$WSL_DISTRO_NAME" ]; then
|
||||||
|
# $WSL_DISTRO_NAME is available since WSL builds 18362, also for WSL2
|
||||||
|
IN_WSL=true
|
||||||
|
else
|
||||||
|
WSL_BUILD=$(uname -r | sed -E 's/^[0-9.]+-([0-9]+)-Microsoft.*|.*/\1/')
|
||||||
|
if [ -n "$WSL_BUILD" ]; then
|
||||||
|
IN_WSL=true
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
VSCODE_PATH=$(cat "$basedir/vscode-path")
|
||||||
|
DEVCONTAINER_CLI_PATH=$script_file
|
||||||
|
REMOTE_CONTAINERS_PATH=
|
||||||
|
if [ -f "$basedir/remote-containers-path" ]; then
|
||||||
|
REMOTE_CONTAINERS_PATH=$(cat "$basedir/remote-containers-path")
|
||||||
|
if [ $IN_WSL = true ]; then
|
||||||
|
REMOTE_CONTAINERS_PATH=$(wslpath -u $REMOTE_CONTAINERS_PATH)
|
||||||
|
fi
|
||||||
|
if [ ! -f "$REMOTE_CONTAINERS_PATH/dev-containers-user-cli/cli.js" ]; then
|
||||||
|
REMOTE_CONTAINERS_PATH=
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$REMOTE_CONTAINERS_PATH" ]; then
|
||||||
|
echo "Failed to determine Dev Containers path"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ $IN_WSL = true ]; then
|
||||||
|
export WSLENV="ELECTRON_RUN_AS_NODE/w:DEVCONTAINER_CLI_PATH/p:IN_WSL:WSL_DISTRO_NAME:$WSLENV"
|
||||||
|
CLI=$(wslpath -m "$REMOTE_CONTAINERS_PATH/dev-containers-user-cli/cli.js")
|
||||||
|
ELECTRON=$(wslpath -u "$VSCODE_PATH")
|
||||||
|
|
||||||
|
# TODO - piping to `cat` is a temporary workaround for the CRLF->LF conversion
|
||||||
|
# that occurs when calling Windows Electron binary from WSL
|
||||||
|
IN_WSL=$IN_WSL DEVCONTAINER_CLI_PATH="$DEVCONTAINER_CLI_PATH" ELECTRON_RUN_AS_NODE=1 "$ELECTRON" "$CLI" "$@" | cat
|
||||||
|
exit $?
|
||||||
|
else
|
||||||
|
ELECTRON="$VSCODE_PATH"
|
||||||
|
CLI=$REMOTE_CONTAINERS_PATH/dev-containers-user-cli/cli.js
|
||||||
|
DEVCONTAINER_CLI_PATH="$DEVCONTAINER_CLI_PATH" ELECTRON_RUN_AS_NODE=1 "$ELECTRON" "$CLI" "$@"
|
||||||
|
exit $?
|
||||||
|
fi
|
@ -0,0 +1,37 @@
|
|||||||
|
@echo off
|
||||||
|
@REM This file is placed in a stable (version-independent) location
|
||||||
|
@REM and forwards to the currently installed version
|
||||||
|
|
||||||
|
setlocal
|
||||||
|
SET DEVCONTAINER_CLI_PATH=%~f0
|
||||||
|
SET VSCODE_PATH=
|
||||||
|
|
||||||
|
:vscode_path
|
||||||
|
@REM Load the Code.exe path
|
||||||
|
IF NOT exist "%~dp0vscode-path%" goto fail_vscode_path
|
||||||
|
set /p VSCODE_PATH=<"%~dp0vscode-path%"
|
||||||
|
IF exist "%VSCODE_PATH%" goto remote_container_path
|
||||||
|
|
||||||
|
:fail_vscode_path
|
||||||
|
echo Failed to determine VS Code path
|
||||||
|
exit 1
|
||||||
|
|
||||||
|
:remote_container_path
|
||||||
|
|
||||||
|
SET REMOTE_CONTAINERS_PATH=
|
||||||
|
|
||||||
|
@REM Check the remote-containers-path file
|
||||||
|
@REM This is a cache (and enables Dev Containers development)
|
||||||
|
IF NOT exist "%~dp0remote-containers-path%" goto fail_remote_container_path
|
||||||
|
set /p REMOTE_CONTAINERS_PATH=<"%~dp0remote-containers-path%"
|
||||||
|
IF exist "%REMOTE_CONTAINERS_PATH%\dev-containers-user-cli\cli.js" goto forwardcall
|
||||||
|
|
||||||
|
:fail_remote_container_path
|
||||||
|
echo Failed to determine Dev Containers path
|
||||||
|
exit 1
|
||||||
|
|
||||||
|
:forwardcall
|
||||||
|
set ELECTRON_RUN_AS_NODE=1
|
||||||
|
"%VSCODE_PATH%" "%REMOTE_CONTAINERS_PATH%\dev-containers-user-cli\\cli.js" %*
|
||||||
|
|
||||||
|
endlocal
|
@ -0,0 +1 @@
|
|||||||
|
c:\Users\user\.vscode\extensions\ms-vscode-remote.remote-containers-0.394.0
|
@ -0,0 +1 @@
|
|||||||
|
c:\Program Files\Microsoft VS Code\resources\app
|
@ -0,0 +1 @@
|
|||||||
|
575e183e33173d7303a39d47bdbf96e3a596a3ba9842f1c99ce19d5868603d78
|
@ -0,0 +1 @@
|
|||||||
|
C:\Program Files\Microsoft VS Code\Code.exe
|
@ -0,0 +1 @@
|
|||||||
|
stable
|
Binary file not shown.
Binary file not shown.
@ -1,33 +1,34 @@
|
|||||||
{
|
{
|
||||||
"telemetry.machineId": "575e183e33173d7303a39d47bdbf96e3a596a3ba9842f1c99ce19d5868603d78",
|
"telemetry.machineId": "575e183e33173d7303a39d47bdbf96e3a596a3ba9842f1c99ce19d5868603d78",
|
||||||
"theme": "vs-dark",
|
"theme": "vs-dark",
|
||||||
"themeBackground": "#1e1e1e",
|
"themeBackground": "#1f1f1f",
|
||||||
"windowSplash": {
|
"windowSplash": {
|
||||||
|
"zoomLevel": 0,
|
||||||
"baseTheme": "vs-dark",
|
"baseTheme": "vs-dark",
|
||||||
"colorInfo": {
|
"colorInfo": {
|
||||||
"foreground": "#cccccc",
|
"foreground": "#cccccc",
|
||||||
"background": "#1e1e1e",
|
"background": "#1f1f1f",
|
||||||
"editorBackground": "#1e1e1e",
|
"editorBackground": "#1f1f1f",
|
||||||
"titleBarBackground": "#3c3c3c",
|
"titleBarBackground": "#181818",
|
||||||
"activityBarBackground": "#333333",
|
"activityBarBackground": "#181818",
|
||||||
"sideBarBackground": "#252526",
|
"sideBarBackground": "#181818",
|
||||||
"statusBarBackground": "#007acc",
|
"statusBarBackground": "#181818",
|
||||||
"statusBarNoFolderBackground": "#68217a"
|
"statusBarNoFolderBackground": "#1f1f1f"
|
||||||
},
|
},
|
||||||
"layoutInfo": {
|
"layoutInfo": {
|
||||||
"sideBarSide": "left",
|
"sideBarSide": "left",
|
||||||
"editorPartMinWidth": 220,
|
"editorPartMinWidth": 220,
|
||||||
"titleBarHeight": 30,
|
"titleBarHeight": 30,
|
||||||
"activityBarWidth": 48,
|
"activityBarWidth": 48,
|
||||||
"sideBarWidth": 311,
|
"sideBarWidth": 300,
|
||||||
"statusBarHeight": 22,
|
"statusBarHeight": 22,
|
||||||
"windowBorder": false
|
"windowBorder": false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"windowsState": {
|
"windowsState": {
|
||||||
"lastActiveWindow": {
|
"lastActiveWindow": {
|
||||||
"folder": "file:///d%3A/Project/appcore",
|
"folder": "file:///d%3A/Project/LP3/Client-Core-HtmlPackage",
|
||||||
"backupPath": "C:\\Users\\user\\AppData\\Roaming\\Code\\Backups\\02ab61bf3663c3165acb4fa812ecd65b",
|
"backupPath": "C:\\Users\\user\\AppData\\Roaming\\Code\\Backups\\b00600cd29c8033bbc8b9825b59ca09f",
|
||||||
"uiState": {
|
"uiState": {
|
||||||
"mode": 0,
|
"mode": 0,
|
||||||
"x": 2368,
|
"x": 2368,
|
||||||
@ -38,5 +39,127 @@
|
|||||||
},
|
},
|
||||||
"openedWindows": []
|
"openedWindows": []
|
||||||
},
|
},
|
||||||
"pickerWorkingDir": "D:\\Project\\appcore\\temp\\quick-scripts\\dst\\assets\\CasinoScript\\Engine\\Utils\\CCExtensions"
|
"pickerWorkingDir": "D:\\Project\\appcore\\temp\\quick-scripts\\dst\\assets\\CasinoScript\\Engine\\Utils\\CCExtensions",
|
||||||
|
"telemetry.sqmId": "{10D5C9C6-7F6F-43AA-9EDE-049C2FEE303D}",
|
||||||
|
"backupWorkspaces": {
|
||||||
|
"workspaces": [],
|
||||||
|
"folders": [
|
||||||
|
{
|
||||||
|
"folderUri": "file:///d%3A/Project/LP3/Client-Core-HtmlPackage"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"emptyWindows": []
|
||||||
|
},
|
||||||
|
"userDataProfilesMigration": true,
|
||||||
|
"profileAssociations": {
|
||||||
|
"workspaces": {
|
||||||
|
"file:///d%3A/Project/LP/Client-Core_1.8/Cocos": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP/Client-Core_1.8/React": "__default__profile__",
|
||||||
|
"file:///e%3A/Project/Test/Test_Web/GuessWhoIAm": "__default__profile__",
|
||||||
|
"file:///e%3A/Project/Test/Test_NodeJS/GuessWhoIAmS": "__default__profile__",
|
||||||
|
"file:///e%3A/Project/Test/GuessWhoIAm/GuessWhoIAm": "__default__profile__",
|
||||||
|
"file:///e%3A/Project/Test/GuessWhoIAm/GuessWhoIAm/src/shared": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP2/Client-Core_1.8/React": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP2/Client-Core/React": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP/Test_Client-Core/Cocos": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP/Client-Core_Dev/Cocos": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP2/Client-Core_Dev/Cocos": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/Client-Core/React": "__default__profile__",
|
||||||
|
"file:///e%3A/Project/Test/Unity/Badminton-Scoreboard": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP3/Client-Core/React": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/Swiper": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/Swiper2": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP/Client-Core/Cocos/packages/CocosInspector": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_Line_Source/Line-Resource-Dev": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_Line2_Source/Line2-Resource-Dev": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_Line_Source/Line-Resource-Dev/game1.8": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP/Client-Core_3.8/React": "__default__profile__",
|
||||||
|
"file:///z%3A/public/bonus_casino/html5/jianmiau/LP2_Casino_Deeplink": "__default__profile__",
|
||||||
|
"file:///e%3A/Project/Test/Test_Web/LP2_Casino_Deeplink": "__default__profile__",
|
||||||
|
"file:///e%3A/Project/Test/Test_Web/Badminton": "__default__profile__",
|
||||||
|
"file:///w%3A/home/RaspberryPi/docker/homeassistant": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP3/Client-Core_diamond/Cocos": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_Line2_Source/Line2-Resource-Dev/gameDiamondHall/web-mobile": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP/Client-Core/React": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/vite-project": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP2/Client-Core_diamond/Cocos": "__default__profile__",
|
||||||
|
"file:///e%3A/Project/Test/Test_Web/LP_Casino_Deeplink": "__default__profile__",
|
||||||
|
"file:///z%3A/public/bonus_casino/html5/jianmiau/LP_Casino_Deeplink": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP/Client-Core_3.8/Cocos": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/BJ/appcore": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_LineC_Source/LineC-Resource-Dev": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/Frontend/VicKing_Util_Npm": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/Test": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP/Client-Core-WebDesign": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP3/Client-Core_newUI/Cocos": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_Line4_Source/Line4-Resource-Dev": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP/Client-Core_newUI/Cocos": "__default__profile__",
|
||||||
|
"file:///e%3A/Project/Test/GuessWhoIAm/GuessWhoIAmS": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LC1/webUI": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP/Client-Core/Cocos": "__default__profile__",
|
||||||
|
"file:///e%3A/Project/Test/Test_Web/LP_Bot": "__default__profile__",
|
||||||
|
"file:///e%3A/Project/Test/Test_NodeJS/SDServer": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/tween": "__default__profile__",
|
||||||
|
"file:///w%3A/home/www/test": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP1/Client-Core_newUI/Cocos": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP1/Client-Core/Cocos": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_Line4_Source/Line4-Resource-B2B": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP1/Official": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP2/Client-Core_newUI/Cocos": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/canvas": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/tools": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/api": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP2/official-webdesign/web": "__default__profile__",
|
||||||
|
"file:///w%3A/home/www/api": "__default__profile__",
|
||||||
|
"file:///e%3A/Project/Test/Test_Web/BadmintonTeam": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP2/Official": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP3/Official": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LC1/Official-WebDesign/official": "__default__profile__",
|
||||||
|
"file:///w%3A/home/www/line-bot-ts": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP4/Client-Core-WebDesign": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_LineC1_Source/LineC1-Resource-Dev/addtohomescreen": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_LineC2_Source/LineC2-Resource-Dev/addtohomescreen": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LC1/Official": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LC2/Html-PurchaseResultPage": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_LineC2_Source/LineC2-Resource-B2B/addtohomescreen": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_LineC2_Source/LineC2-Resource-B2B": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/vite-plugin-demo": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/vite-plugin-demo-mpa": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/vite-plugin-html-template-mpa/examples/vite-plugin-demo-mpa": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/Client-Core-HtmlPackage/build/src/views/AdNormal": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/Client-Core-HtmlPackage": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/testOK": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/complete-demo-for-mpa": "__default__profile__",
|
||||||
|
"file:///e%3A/Project/Test/Test_Cocos/JM_KA": "__default__profile__",
|
||||||
|
"file:///e%3A/Project/Test/Test_Web/jm-expense": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_LineC1_Source/LineC1-Resource-B2B": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_LineC2_Source/LineC2Resource-Out": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_LineC1/LineC1-B2B": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LC1/Html-PurchaseResultPage": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_LineC2/LineC2-Out": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_LineC1/LineC1-Out": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_Line/Line-Dev": "__default__profile__",
|
||||||
|
"file:///e%3A/Project/Test/Test_Web/LC_Bot": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/SD2": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/test": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP3/Client-Core/Cocos": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP3/Cocos-HtmlPackage": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LC1/Client-Core-WebDesign": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LC2/Client-Core-WebDesign": "__default__profile__",
|
||||||
|
"file:///d%3A/Web/Source/_Line4/Line4-B2B/addtohomescreen": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LC2/Client-Core-HtmlPackage": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP4/Client-Core/Cocos": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP2/Client-Core/Cocos": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP2/Client-Core-WebDesign": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP1/Client-Core-WebDesign": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP3/Client-Core-WebDesign": "__default__profile__",
|
||||||
|
"file:///d%3A/Users/JianMiau/Downloads/%E6%96%B0%E5%A2%9E%E8%B3%87%E6%96%99%E5%A4%BE/vite-project": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LC1/Client-Core-HtmlPackage": "__default__profile__",
|
||||||
|
"file:///d%3A/Project/LP3/Client-Core-HtmlPackage": "__default__profile__"
|
||||||
|
},
|
||||||
|
"emptyWindows": {}
|
||||||
|
},
|
||||||
|
"profileAssociationsMigration": true,
|
||||||
|
"windowControlHeight": 30,
|
||||||
|
"telemetry.devDeviceId": "3d4cbdc3-d699-4cf7-b9c8-38091b255272"
|
||||||
}
|
}
|
@ -0,0 +1,686 @@
|
|||||||
|
{
|
||||||
|
"id": "memento",
|
||||||
|
"v": "v1",
|
||||||
|
"ts": 1736740541776,
|
||||||
|
"signature": "s3537.5618000030518/3537.5674000382423",
|
||||||
|
"data": {
|
||||||
|
"machineId": "575e183e33173d7303a39d47bdbf96e3a596a3ba9842f1c99ce19d5868603d78",
|
||||||
|
"ts": 1736740541776,
|
||||||
|
"log": [
|
||||||
|
[
|
||||||
|
1731989541710,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732153007127,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732153014334,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732154446110,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732154536483,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732160329776,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732160337917,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732175002672,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732182380098,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732258202295,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732259446305,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732259452254,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732263192210,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732269317899,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732696443712,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732696450478,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732697717527,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732697726005,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1732698264291,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733101196162,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733101278522,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733101283066,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733111552783,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733278322271,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733278329769,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733278562843,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733278567879,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733293060711,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733293406294,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733300103904,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733300108760,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733301873206,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733301877562,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733305972235,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733369419020,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733369488262,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733707974124,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733708664057,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733710603671,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733819920525,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733819982168,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733821541106,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733884213946,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733886593880,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733887888103,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733888490799,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733968574647,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733968583198,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733969482270,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733984173291,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733984180506,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733984631431,
|
||||||
|
0,
|
||||||
|
"replace",
|
||||||
|
1,
|
||||||
|
"updata",
|
||||||
|
"update"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1733989939083,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734058043152,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734059028478,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734059161043,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734059167791,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734080005264,
|
||||||
|
0,
|
||||||
|
"replace",
|
||||||
|
1,
|
||||||
|
"Resquest",
|
||||||
|
"Request"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734080103400,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734080110880,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734080771410,
|
||||||
|
0,
|
||||||
|
"replace",
|
||||||
|
1,
|
||||||
|
"Resquest",
|
||||||
|
"Request"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734081012864,
|
||||||
|
0,
|
||||||
|
"replace",
|
||||||
|
1,
|
||||||
|
"Resquest",
|
||||||
|
"Request"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734401896962,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734402610536,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734402618683,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734405387988,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734407652842,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734407694550,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734407698882,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734422615981,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734422626026,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734423986809,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734424007755,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734425767845,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734945040106,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734945082398,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734945529455,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734945536171,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734945566226,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734945580614,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1734945586502,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735006798670,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735021390507,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735021397414,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735021574971,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735524214725,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735529378857,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735529506487,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735783673732,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735789158963,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735790124555,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735790611817,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735792044945,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735891984259,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735896818688,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735896824336,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1735896863479,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1736217088025,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1736233446848,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1736233450461,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1736233734048,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1736233742352,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1736319592935,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1736320339957,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1736389989001,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1736390084389,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1736390089168,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1736390476352,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1736390482448,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1736390667738,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
],
|
||||||
|
[
|
||||||
|
1736740541580,
|
||||||
|
0,
|
||||||
|
"activate",
|
||||||
|
1
|
||||||
|
]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
@ -1 +0,0 @@
|
|||||||
4.4.112
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -91,5 +91,10 @@
|
|||||||
"key": "ctrl+f5",
|
"key": "ctrl+f5",
|
||||||
"command": "-workbench.action.debug.run",
|
"command": "-workbench.action.debug.run",
|
||||||
"when": "debuggersAvailable && debugState != 'initializing'"
|
"when": "debuggersAvailable && debugState != 'initializing'"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+shift+t",
|
||||||
|
"command": "-translates.translates",
|
||||||
|
"when": "editorHasSelection"
|
||||||
}
|
}
|
||||||
]
|
]
|
365
settings.json
365
settings.json
@ -1,4 +1,5 @@
|
|||||||
{
|
{
|
||||||
|
"editor.codeLens": false,
|
||||||
"sync.autoDownload": false,
|
"sync.autoDownload": false,
|
||||||
"workbench.iconTheme": "material-icon-theme",
|
"workbench.iconTheme": "material-icon-theme",
|
||||||
"files.exclude": {
|
"files.exclude": {
|
||||||
@ -6,14 +7,15 @@
|
|||||||
"**/*.d.ts": true,
|
"**/*.d.ts": true,
|
||||||
"**/*.fbx": true,
|
"**/*.fbx": true,
|
||||||
"**/*.FBX": true,
|
"**/*.FBX": true,
|
||||||
|
"**/*.fire": true,
|
||||||
"**/*.meta": true,
|
"**/*.meta": true,
|
||||||
"build-templates/": true,
|
|
||||||
"preview-templates/": true,
|
|
||||||
"packages/": true,
|
|
||||||
"build/": true,
|
"build/": true,
|
||||||
|
"extensions/": true,
|
||||||
"library/": true,
|
"library/": true,
|
||||||
"local/": true,
|
"local/": true,
|
||||||
"node_modules": true,
|
"node_modules": true,
|
||||||
|
"packages/": true,
|
||||||
|
"preview-templates/": true,
|
||||||
"temp/": true
|
"temp/": true
|
||||||
},
|
},
|
||||||
"search.exclude": {
|
"search.exclude": {
|
||||||
@ -22,7 +24,9 @@
|
|||||||
"**/*.d.ts": true,
|
"**/*.d.ts": true,
|
||||||
"**/*.fire": true,
|
"**/*.fire": true,
|
||||||
"**/*.prefab": true,
|
"**/*.prefab": true,
|
||||||
|
"build-templates/": true,
|
||||||
"build/": true,
|
"build/": true,
|
||||||
|
"extensions/": true,
|
||||||
"library/": true,
|
"library/": true,
|
||||||
"temp/": true
|
"temp/": true
|
||||||
},
|
},
|
||||||
@ -44,26 +48,26 @@
|
|||||||
// "editor.lineHighlightBorder": "red" // "#ffffff30"
|
// "editor.lineHighlightBorder": "red" // "#ffffff30"
|
||||||
},
|
},
|
||||||
"editor.formatOnSave": true,
|
"editor.formatOnSave": true,
|
||||||
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
|
||||||
"security.workspace.trust.enabled": false,
|
"security.workspace.trust.enabled": false,
|
||||||
"editor.detectIndentation": false,
|
"editor.detectIndentation": false,
|
||||||
"editor.tabSize": 4,
|
"editor.tabSize": 4,
|
||||||
"editor.insertSpaces": false,
|
"editor.insertSpaces": false,
|
||||||
"editor.codeActionsOnSave": {
|
"editor.codeActionsOnSave": {
|
||||||
"source.organizeImports": true
|
"source.fixAll.eslint": "explicit",
|
||||||
|
"source.organizeImports": "explicit"
|
||||||
},
|
},
|
||||||
"typescript.referencesCodeLens.enabled": true,
|
"typescript.referencesCodeLens.enabled": true,
|
||||||
"typescript.referencesCodeLens.showOnAllFunctions": true,
|
"typescript.referencesCodeLens.showOnAllFunctions": true,
|
||||||
"[typescript]": {
|
"[typescript]": {
|
||||||
"files.trimFinalNewlines": true,
|
"files.trimFinalNewlines": true,
|
||||||
"files.trimTrailingWhitespace": true,
|
"files.trimTrailingWhitespace": true,
|
||||||
|
"editor.defaultFormatter": "vscode.typescript-language-features",
|
||||||
},
|
},
|
||||||
"typescript.tsdk": "node_modules\\typescript\\lib",
|
"typescript.tsdk": "node_modules\\typescript\\lib",
|
||||||
"settingsSync.ignoredSettings": [
|
"settingsSync.ignoredSettings": [
|
||||||
"git.enabled"
|
"git.enabled"
|
||||||
],
|
],
|
||||||
"tabnine.experimentalAutoImports": true,
|
|
||||||
"volar.codeLens.references": false,
|
|
||||||
"editor.codeLens": false,
|
|
||||||
"debug.allowBreakpointsEverywhere": true,
|
"debug.allowBreakpointsEverywhere": true,
|
||||||
"github.copilot.enable": {
|
"github.copilot.enable": {
|
||||||
"*": true,
|
"*": true,
|
||||||
@ -82,5 +86,350 @@
|
|||||||
"html",
|
"html",
|
||||||
"vue",
|
"vue",
|
||||||
"markdown"
|
"markdown"
|
||||||
]
|
],
|
||||||
|
"[html]": {
|
||||||
|
"editor.defaultFormatter": "vscode.html-language-features"
|
||||||
|
},
|
||||||
|
"files.associations": {
|
||||||
|
"*.manifest": "json",
|
||||||
|
"*.prefab": "json"
|
||||||
|
},
|
||||||
|
"todo-tree.tree.buttons.groupBySubTag": true,
|
||||||
|
"todo-tree.tree.buttons.scanMode": true,
|
||||||
|
"editor.unicodeHighlight.invisibleCharacters": false,
|
||||||
|
"editor.unicodeHighlight.allowedCharacters": {
|
||||||
|
" ": true,
|
||||||
|
",": true
|
||||||
|
},
|
||||||
|
"google-translate.firstLanguage": "en",
|
||||||
|
"[json]": {
|
||||||
|
"editor.defaultFormatter": "vscode.json-language-features"
|
||||||
|
},
|
||||||
|
"svg.preview.mode": "svg",
|
||||||
|
"git.autofetch": true,
|
||||||
|
"aws.suppressPrompts": {
|
||||||
|
"codeWhispererNewWelcomeMessage": true
|
||||||
|
},
|
||||||
|
"[javascript]": {
|
||||||
|
"editor.defaultFormatter": "vscode.typescript-language-features"
|
||||||
|
},
|
||||||
|
"search.useIgnoreFiles": false,
|
||||||
|
"editor.unicodeHighlight.ambiguousCharacters": false,
|
||||||
|
"typescript.updateImportsOnFileMove.enabled": "always",
|
||||||
|
"javascript.updateImportsOnFileMove.enabled": "always",
|
||||||
|
"workbench.layoutControl.enabled": false,
|
||||||
|
"[typescriptreact]": {
|
||||||
|
"editor.defaultFormatter": "vscode.typescript-language-features"
|
||||||
|
},
|
||||||
|
"git.openRepositoryInParentFolders": "always",
|
||||||
|
"update.mode": "manual",
|
||||||
|
"window.title": "${dirty}${activeEditorShort}${separator}${profileName}${separator}${folderPath}",
|
||||||
|
"window.commandCenter": false,
|
||||||
|
"editor.stickyScroll.enabled": false,
|
||||||
|
"editor.minimap.showSlider": "always",
|
||||||
|
"cSpell.userWords": [
|
||||||
|
"Addcard",
|
||||||
|
"addtohomescreen",
|
||||||
|
"advancetask",
|
||||||
|
"afterheight",
|
||||||
|
"amazonwebservices",
|
||||||
|
"androidbtn",
|
||||||
|
"androidtext",
|
||||||
|
"antd",
|
||||||
|
"anydesk",
|
||||||
|
"appdata",
|
||||||
|
"appleid",
|
||||||
|
"appspot",
|
||||||
|
"arpa",
|
||||||
|
"arror",
|
||||||
|
"asar",
|
||||||
|
"assetdb",
|
||||||
|
"automations",
|
||||||
|
"Banstring",
|
||||||
|
"bantime",
|
||||||
|
"batpath",
|
||||||
|
"battlecombination",
|
||||||
|
"Befor",
|
||||||
|
"beforeheight",
|
||||||
|
"beforeinstallprompt",
|
||||||
|
"Bigwin",
|
||||||
|
"blockinfo",
|
||||||
|
"Btns",
|
||||||
|
"buildaddversion",
|
||||||
|
"buildb",
|
||||||
|
"buildcocos",
|
||||||
|
"buildcocosb",
|
||||||
|
"builddev",
|
||||||
|
"buildexe",
|
||||||
|
"buildqa",
|
||||||
|
"buildtest",
|
||||||
|
"buildts",
|
||||||
|
"Bussiness",
|
||||||
|
"Bvalue",
|
||||||
|
"cafile",
|
||||||
|
"callapi",
|
||||||
|
"cardcount",
|
||||||
|
"Cascader",
|
||||||
|
"Catan",
|
||||||
|
"catantech",
|
||||||
|
"cccclass",
|
||||||
|
"ccclass",
|
||||||
|
"ccenum",
|
||||||
|
"CCENV",
|
||||||
|
"CCLOG",
|
||||||
|
"ceintl",
|
||||||
|
"chgroup",
|
||||||
|
"cocoscontainer",
|
||||||
|
"cocoson",
|
||||||
|
"componentsearch",
|
||||||
|
"componets",
|
||||||
|
"consoledebug",
|
||||||
|
"copyfiles",
|
||||||
|
"Cortrol",
|
||||||
|
"coverflow",
|
||||||
|
"Creater",
|
||||||
|
"Cvalue",
|
||||||
|
"Datas",
|
||||||
|
"dbaeumer",
|
||||||
|
"ddns",
|
||||||
|
"Deeplink",
|
||||||
|
"delcache",
|
||||||
|
"Delygo",
|
||||||
|
"diffcount",
|
||||||
|
"disconnet",
|
||||||
|
"Disp",
|
||||||
|
"Dispatchs",
|
||||||
|
"dlygo",
|
||||||
|
"dockable",
|
||||||
|
"Dont",
|
||||||
|
"downloadurl",
|
||||||
|
"dsznajder",
|
||||||
|
"dylygo",
|
||||||
|
"eazax",
|
||||||
|
"Editbox",
|
||||||
|
"endregion",
|
||||||
|
"Faver",
|
||||||
|
"fgspin",
|
||||||
|
"firebaseapp",
|
||||||
|
"Fitty",
|
||||||
|
"Flickity",
|
||||||
|
"fnname",
|
||||||
|
"fontawesome",
|
||||||
|
"Formkey",
|
||||||
|
"formname",
|
||||||
|
"formread",
|
||||||
|
"formtable",
|
||||||
|
"formulahendry",
|
||||||
|
"fortawesome",
|
||||||
|
"Friendlist",
|
||||||
|
"FSHADER",
|
||||||
|
"Fsiz",
|
||||||
|
"Fspath",
|
||||||
|
"fullscreen",
|
||||||
|
"gamecredit",
|
||||||
|
"gamegift",
|
||||||
|
"gameiframeoptm",
|
||||||
|
"gamein",
|
||||||
|
"gamenewui",
|
||||||
|
"gamesetting",
|
||||||
|
"gamesettings",
|
||||||
|
"gameurl",
|
||||||
|
"getformread",
|
||||||
|
"getinstance",
|
||||||
|
"getliff",
|
||||||
|
"getprivate",
|
||||||
|
"gifsicle",
|
||||||
|
"giga",
|
||||||
|
"Gitea",
|
||||||
|
"gruntfuggly",
|
||||||
|
"gsap",
|
||||||
|
"gstatic",
|
||||||
|
"gtag",
|
||||||
|
"guesswhoiam",
|
||||||
|
"guesswhoiams",
|
||||||
|
"gulpfile",
|
||||||
|
"hdlum",
|
||||||
|
"historicalfigure",
|
||||||
|
"hitron",
|
||||||
|
"htmlmin",
|
||||||
|
"htmlreplace",
|
||||||
|
"HUDV",
|
||||||
|
"iceworks",
|
||||||
|
"iframe",
|
||||||
|
"iframes",
|
||||||
|
"Immer",
|
||||||
|
"importmap",
|
||||||
|
"indexs",
|
||||||
|
"ingame",
|
||||||
|
"interactable",
|
||||||
|
"iscocos",
|
||||||
|
"isfriend",
|
||||||
|
"islocalhost",
|
||||||
|
"isnofps",
|
||||||
|
"Istest",
|
||||||
|
"Jian",
|
||||||
|
"jianmiau",
|
||||||
|
"jmengine",
|
||||||
|
"jpegtran",
|
||||||
|
"jridgewell",
|
||||||
|
"jsonmin",
|
||||||
|
"jsons",
|
||||||
|
"landingpage",
|
||||||
|
"Lanuage",
|
||||||
|
"LASTFRAME",
|
||||||
|
"Liff",
|
||||||
|
"liffid",
|
||||||
|
"linebot",
|
||||||
|
"linebotts",
|
||||||
|
"lineopen",
|
||||||
|
"lineurl",
|
||||||
|
"linewebhook",
|
||||||
|
"loadother",
|
||||||
|
"localtime",
|
||||||
|
"lppoint",
|
||||||
|
"LPUI",
|
||||||
|
"lybobet",
|
||||||
|
"MAINCONTROL",
|
||||||
|
"Mamager",
|
||||||
|
"Matm",
|
||||||
|
"Metas",
|
||||||
|
"Miau",
|
||||||
|
"middlewares",
|
||||||
|
"Milli",
|
||||||
|
"miragejs",
|
||||||
|
"modestbranding",
|
||||||
|
"Monkeytower",
|
||||||
|
"mycard",
|
||||||
|
"mycount",
|
||||||
|
"mythologyfigure",
|
||||||
|
"myvip",
|
||||||
|
"needcard",
|
||||||
|
"newclass",
|
||||||
|
"newcount",
|
||||||
|
"nodered",
|
||||||
|
"nosleep",
|
||||||
|
"Notic",
|
||||||
|
"notosanstc",
|
||||||
|
"npmpush",
|
||||||
|
"numstr",
|
||||||
|
"offcanvas",
|
||||||
|
"Officail",
|
||||||
|
"oldcount",
|
||||||
|
"oldjp",
|
||||||
|
"onclickoutside",
|
||||||
|
"Onorientation",
|
||||||
|
"opengame",
|
||||||
|
"OPENPAGE",
|
||||||
|
"opentype",
|
||||||
|
"optipng",
|
||||||
|
"otherchat",
|
||||||
|
"Pannel",
|
||||||
|
"pathes",
|
||||||
|
"PAYTABL",
|
||||||
|
"Paytable",
|
||||||
|
"pcwux",
|
||||||
|
"pkgd",
|
||||||
|
"pkief",
|
||||||
|
"playerinfo",
|
||||||
|
"playgame",
|
||||||
|
"playnow",
|
||||||
|
"playshow",
|
||||||
|
"pngtype",
|
||||||
|
"popperjs",
|
||||||
|
"popuplinesharebigwin",
|
||||||
|
"Precrod",
|
||||||
|
"prikey",
|
||||||
|
"privkey",
|
||||||
|
"proto",
|
||||||
|
"PSPS",
|
||||||
|
"PWFG",
|
||||||
|
"qrcode",
|
||||||
|
"qtcca",
|
||||||
|
"querys",
|
||||||
|
"rdplays",
|
||||||
|
"reactssr",
|
||||||
|
"Rebuy",
|
||||||
|
"Redbean",
|
||||||
|
"reflash",
|
||||||
|
"regs",
|
||||||
|
"relateurl",
|
||||||
|
"Sbmodule",
|
||||||
|
"Scrollview",
|
||||||
|
"sdserver",
|
||||||
|
"senderid",
|
||||||
|
"sendername",
|
||||||
|
"servercount",
|
||||||
|
"SERVERHOST",
|
||||||
|
"servertype",
|
||||||
|
"shareid",
|
||||||
|
"showdata",
|
||||||
|
"showinfo",
|
||||||
|
"showlanguage",
|
||||||
|
"showtype",
|
||||||
|
"sider",
|
||||||
|
"signin",
|
||||||
|
"slotid",
|
||||||
|
"Slotset",
|
||||||
|
"smartbanner",
|
||||||
|
"SOUGOU",
|
||||||
|
"sourcesearch",
|
||||||
|
"startb",
|
||||||
|
"startqa",
|
||||||
|
"starttest",
|
||||||
|
"storke",
|
||||||
|
"strary",
|
||||||
|
"strs",
|
||||||
|
"Subgame",
|
||||||
|
"Succ",
|
||||||
|
"swiper",
|
||||||
|
"swjs",
|
||||||
|
"swreg",
|
||||||
|
"systemjs",
|
||||||
|
"targetavatar",
|
||||||
|
"targetid",
|
||||||
|
"targetname",
|
||||||
|
"targetvip",
|
||||||
|
"testssr",
|
||||||
|
"testws",
|
||||||
|
"Tiktok",
|
||||||
|
"timenum",
|
||||||
|
"Topup",
|
||||||
|
"truetype",
|
||||||
|
"tsrpc",
|
||||||
|
"Ttest",
|
||||||
|
"tweenjs",
|
||||||
|
"uiparam",
|
||||||
|
"unlisten",
|
||||||
|
"URLPATH",
|
||||||
|
"urlscheme",
|
||||||
|
"userbind",
|
||||||
|
"useref",
|
||||||
|
"userid",
|
||||||
|
"userstate",
|
||||||
|
"utlis",
|
||||||
|
"uuidv",
|
||||||
|
"vconsole",
|
||||||
|
"Verts",
|
||||||
|
"vicking",
|
||||||
|
"VIPBG",
|
||||||
|
"VIPUI",
|
||||||
|
"VITE",
|
||||||
|
"VSHADER",
|
||||||
|
"vuex",
|
||||||
|
"wayou",
|
||||||
|
"wdyr",
|
||||||
|
"webglcontextlost",
|
||||||
|
"webglcontextrestored",
|
||||||
|
"webp",
|
||||||
|
"webpush",
|
||||||
|
"welldone",
|
||||||
|
"windowopen",
|
||||||
|
"winprod",
|
||||||
|
"XCOPY",
|
||||||
|
"xmark",
|
||||||
|
"xmlhttprequest",
|
||||||
|
"yellowrain",
|
||||||
|
"yoyo",
|
||||||
|
"Zorder"
|
||||||
|
],
|
||||||
}
|
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +0,0 @@
|
|||||||
{"version":2,"content":"{\"windows\":\"[]\"}"}
|
|
File diff suppressed because one or more lines are too long
1
sync/profiles/lastSyncprofiles.json
Normal file
1
sync/profiles/lastSyncprofiles.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"ref":"0","syncData":null}
|
@ -1 +0,0 @@
|
|||||||
{"version":2,"content":"{\"settings\":\"{\\r\\n \\\"security.workspace.trust.untrustedFiles\\\": \\\"open\\\"\\r\\n}\"}"}
|
|
@ -1 +0,0 @@
|
|||||||
{"version":2,"content":"{\"settings\":\"{\\r\\n \\\"security.workspace.trust.untrustedFiles\\\": \\\"open\\\"\\r\\n}\"}"}
|
|
@ -1 +0,0 @@
|
|||||||
{"version":2,"content":"{\"settings\":\"\"}"}
|
|
@ -1 +0,0 @@
|
|||||||
{"version":2,"content":"{\"settings\":\"{\\r\\n \\\"sync.gist\\\": \\\"f795d3dac8387cf20529286054b6eb95\\\",\\r\\n \\\"sync.autoDownload\\\": false,\\r\\n \\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\r\\n \\\"files.exclude\\\": {\\r\\n \\\".vscode/\\\": true,\\r\\n \\\"**/*.d.ts\\\": true,\\r\\n \\\"**/*.fbx\\\": true,\\r\\n \\\"**/*.FBX\\\": true,\\r\\n \\\"**/*.meta\\\": true,\\r\\n \\\"build-templates/\\\": true,\\r\\n \\\"build/\\\": true,\\r\\n \\\"library/\\\": true,\\r\\n \\\"local/\\\": true,\\r\\n \\\"temp/\\\": true\\r\\n },\\r\\n \\\"search.exclude\\\": {\\r\\n \\\".vscode/\\\": true,\\r\\n \\\"**/*.anim\\\": true,\\r\\n \\\"**/*.d.ts\\\": true,\\r\\n \\\"**/*.fire\\\": true,\\r\\n \\\"**/*.prefab\\\": true,\\r\\n \\\"build/\\\": true,\\r\\n \\\"library/\\\": true,\\r\\n \\\"temp/\\\": true\\r\\n },\\r\\n \\\"liveServer.settings.donotShowInfoMsg\\\": true,\\r\\n \\\"git.enabled\\\": false,\\r\\n \\\"workbench.startupEditor\\\": \\\"welcomePage\\\",\\r\\n \\\"php.validate.executablePath\\\": \\\"C:/nginx/php/php.exe\\\",\\r\\n \\\"explorer.confirmDelete\\\": false,\\r\\n \\\"tabnine.experimentalAutoImports\\\": true,\\r\\n \\\"debug.javascript.suggestPrettyPrinting\\\": false\\r\\n}\"}"}
|
|
@ -1 +0,0 @@
|
|||||||
{"version":2,"content":"{\"settings\":\"{\\n\\t\\\"sync.gist\\\": \\\"f795d3dac8387cf20529286054b6eb95\\\",\\n\\t\\\"sync.autoDownload\\\": false,\\n\\t\\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\n\\t\\\"files.exclude\\\": {\\n\\t\\t\\\".vscode/\\\": true,\\n\\t\\t\\\"**/*.d.ts\\\": true,\\n\\t\\t\\\"**/*.fbx\\\": true,\\n\\t\\t\\\"**/*.FBX\\\": true,\\n\\t\\t\\\"**/*.meta\\\": true,\\n\\t\\t\\\"build-templates/\\\": true,\\n\\t\\t\\\"build/\\\": true,\\n\\t\\t\\\"library/\\\": true,\\n\\t\\t\\\"local/\\\": true,\\n\\t\\t\\\"temp/\\\": true\\n\\t},\\n\\t\\\"search.exclude\\\": {\\n\\t\\t\\\".vscode/\\\": true,\\n\\t\\t\\\"**/*.anim\\\": true,\\n\\t\\t\\\"**/*.d.ts\\\": true,\\n\\t\\t\\\"**/*.fire\\\": true,\\n\\t\\t\\\"**/*.prefab\\\": true,\\n\\t\\t\\\"build/\\\": true,\\n\\t\\t\\\"library/\\\": true,\\n\\t\\t\\\"temp/\\\": true\\n\\t},\\n\\t\\\"git.enabled\\\": false,\\n\\t\\\"workbench.startupEditor\\\": \\\"welcomePage\\\",\\n\\t\\\"php.validate.executablePath\\\": \\\"C:/nginx/php/php.exe\\\",\\n\\t\\\"explorer.confirmDelete\\\": false,\\n\\t\\\"debug.javascript.suggestPrettyPrinting\\\": false,\\n\\t// Controls how the editor should render the current line highlight.\\n\\t// - none\\n\\t// - gutter\\n\\t// - line\\n\\t// - all: Highlights both the gutter and the current line.\\n\\t\\\"editor.renderLineHighlight\\\": \\\"line\\\",\\n\\t// Controls if the editor should render the current line highlight only when the editor is focused.\\n\\t\\\"editor.renderLineHighlightOnlyWhenFocus\\\": false,\\n\\t// Overrides colors from the currently selected color theme.\\n\\t\\\"workbench.colorCustomizations\\\": {\\n\\t\\t\\\"editor.lineHighlightBackground\\\": \\\"#49b2b93d\\\",\\n\\t\\t// \\\"editor.lineHighlightBorder\\\": \\\"red\\\" // \\\"#ffffff30\\\"\\n\\t},\\n\\t\\\"editor.formatOnSave\\\": true,\\n\\t\\\"security.workspace.trust.enabled\\\": false,\\n\\t\\\"bracketPairColorizer.depreciation-notice\\\": false,\\n\\t\\\"editor.detectIndentation\\\": false,\\n\\t\\\"editor.tabSize\\\": 4,\\n\\t\\\"editor.insertSpaces\\\": true,\\n\\t\\\"editor.codeActionsOnSave\\\": {\\n\\t\\t\\\"source.organizeImports\\\": true\\n\\t},\\n\\t\\\"typescript.referencesCodeLens.enabled\\\": true,\\n\\t\\\"typescript.referencesCodeLens.showOnAllFunctions\\\": true,\\n\\t\\\"[typescript]\\\": {\\n\\t\\t\\\"files.trimFinalNewlines\\\": true,\\n\\t\\t\\\"files.trimTrailingWhitespace\\\": true,\\n\\t},\\n\\t\\\"typescript.tsdk\\\": \\\"node_modules\\\\\\\\typescript\\\\\\\\lib\\\"\\n}\"}"}
|
|
@ -1 +0,0 @@
|
|||||||
{"version":2,"content":"{\"settings\":\"{\\n \\\"sync.gist\\\": \\\"f795d3dac8387cf20529286054b6eb95\\\",\\n \\\"sync.autoDownload\\\": false,\\n \\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\n \\\"files.exclude\\\": {\\n \\\".vscode/\\\": true,\\n \\\"**/*.d.ts\\\": true,\\n \\\"**/*.fbx\\\": true,\\n \\\"**/*.FBX\\\": true,\\n \\\"**/*.meta\\\": true,\\n \\\"build-templates/\\\": true,\\n \\\"build/\\\": true,\\n \\\"library/\\\": true,\\n \\\"local/\\\": true,\\n \\\"temp/\\\": true\\n },\\n \\\"search.exclude\\\": {\\n \\\".vscode/\\\": true,\\n \\\"**/*.anim\\\": true,\\n \\\"**/*.d.ts\\\": true,\\n \\\"**/*.fire\\\": true,\\n \\\"**/*.prefab\\\": true,\\n \\\"build/\\\": true,\\n \\\"library/\\\": true,\\n \\\"temp/\\\": true\\n },\\n \\\"workbench.startupEditor\\\": \\\"welcomePage\\\",\\n \\\"php.validate.executablePath\\\": \\\"C:/nginx/php/php.exe\\\",\\n \\\"explorer.confirmDelete\\\": false,\\n \\\"debug.javascript.suggestPrettyPrinting\\\": false,\\n // Controls how the editor should render the current line highlight.\\n // - none\\n // - gutter\\n // - line\\n // - all: Highlights both the gutter and the current line.\\n \\\"editor.renderLineHighlight\\\": \\\"line\\\",\\n // Controls if the editor should render the current line highlight only when the editor is focused.\\n \\\"editor.renderLineHighlightOnlyWhenFocus\\\": false,\\n // Overrides colors from the currently selected color theme.\\n \\\"workbench.colorCustomizations\\\": {\\n \\\"editor.lineHighlightBackground\\\": \\\"#49b2b93d\\\",\\n // \\\"editor.lineHighlightBorder\\\": \\\"red\\\" // \\\"#ffffff30\\\"\\n },\\n \\\"editor.formatOnSave\\\": true,\\n \\\"security.workspace.trust.enabled\\\": false,\\n \\\"bracketPairColorizer.depreciation-notice\\\": false,\\n \\\"editor.detectIndentation\\\": false,\\n \\\"editor.tabSize\\\": 4,\\n \\\"editor.insertSpaces\\\": true,\\n \\\"editor.codeActionsOnSave\\\": {\\n \\\"source.organizeImports\\\": true\\n },\\n \\\"typescript.referencesCodeLens.enabled\\\": true,\\n \\\"typescript.referencesCodeLens.showOnAllFunctions\\\": true,\\n \\\"[typescript]\\\": {\\n \\\"files.trimFinalNewlines\\\": true,\\n \\\"files.trimTrailingWhitespace\\\": true,\\n },\\n \\\"typescript.tsdk\\\": \\\"node_modules\\\\\\\\typescript\\\\\\\\lib\\\",\\n \\\"settingsSync.ignoredSettings\\\": [\\n \\\"git.enabled\\\"\\n ],\\n \\\"tabnine.experimentalAutoImports\\\": true,\\n \\\"git.enabled\\\": false\\n}\"}"}
|
|
@ -1 +0,0 @@
|
|||||||
{"version":2,"content":"{\"settings\":\"{\\n \\\"sync.gist\\\": \\\"f795d3dac8387cf20529286054b6eb95\\\",\\n \\\"sync.autoDownload\\\": false,\\n \\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\n \\\"files.exclude\\\": {\\n \\\".vscode/\\\": true,\\n \\\"**/*.d.ts\\\": true,\\n \\\"**/*.fbx\\\": true,\\n \\\"**/*.FBX\\\": true,\\n \\\"**/*.meta\\\": true,\\n \\\"build-templates/\\\": true,\\n \\\"build/\\\": true,\\n \\\"library/\\\": true,\\n \\\"local/\\\": true,\\n \\\"temp/\\\": true\\n },\\n \\\"search.exclude\\\": {\\n \\\".vscode/\\\": true,\\n \\\"**/*.anim\\\": true,\\n \\\"**/*.d.ts\\\": true,\\n \\\"**/*.fire\\\": true,\\n \\\"**/*.prefab\\\": true,\\n \\\"build/\\\": true,\\n \\\"library/\\\": true,\\n \\\"temp/\\\": true\\n },\\n \\\"workbench.startupEditor\\\": \\\"welcomePage\\\",\\n \\\"php.validate.executablePath\\\": \\\"C:/nginx/php/php.exe\\\",\\n \\\"explorer.confirmDelete\\\": false,\\n \\\"debug.javascript.suggestPrettyPrinting\\\": false,\\n // Controls how the editor should render the current line highlight.\\n // - none\\n // - gutter\\n // - line\\n // - all: Highlights both the gutter and the current line.\\n \\\"editor.renderLineHighlight\\\": \\\"line\\\",\\n // Controls if the editor should render the current line highlight only when the editor is focused.\\n \\\"editor.renderLineHighlightOnlyWhenFocus\\\": false,\\n // Overrides colors from the currently selected color theme.\\n \\\"workbench.colorCustomizations\\\": {\\n \\\"editor.lineHighlightBackground\\\": \\\"#49b2b93d\\\",\\n // \\\"editor.lineHighlightBorder\\\": \\\"red\\\" // \\\"#ffffff30\\\"\\n },\\n \\\"editor.formatOnSave\\\": true,\\n \\\"security.workspace.trust.enabled\\\": false,\\n \\\"bracketPairColorizer.depreciation-notice\\\": false,\\n \\\"editor.detectIndentation\\\": false,\\n \\\"editor.tabSize\\\": 4,\\n \\\"editor.insertSpaces\\\": true,\\n \\\"editor.codeActionsOnSave\\\": {\\n \\\"source.organizeImports\\\": true\\n },\\n \\\"typescript.referencesCodeLens.enabled\\\": true,\\n \\\"typescript.referencesCodeLens.showOnAllFunctions\\\": true,\\n \\\"[typescript]\\\": {\\n \\\"files.trimFinalNewlines\\\": true,\\n \\\"files.trimTrailingWhitespace\\\": true,\\n },\\n \\\"typescript.tsdk\\\": \\\"node_modules\\\\\\\\typescript\\\\\\\\lib\\\",\\n \\\"settingsSync.ignoredSettings\\\": [\\n \\\"git.enabled\\\"\\n ],\\n \\\"tabnine.experimentalAutoImports\\\": true,\\n \\\"volar.codeLens.references\\\": false,\\n \\\"editor.codeLens\\\": false\\n}\"}"}
|
|
@ -1 +0,0 @@
|
|||||||
{"version":2,"content":"{\"settings\":\"{\\n \\\"sync.gist\\\": \\\"f795d3dac8387cf20529286054b6eb95\\\",\\n \\\"sync.autoDownload\\\": false,\\n \\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\n \\\"files.exclude\\\": {\\n \\\".vscode/\\\": true,\\n \\\"**/*.d.ts\\\": true,\\n \\\"**/*.fbx\\\": true,\\n \\\"**/*.FBX\\\": true,\\n \\\"**/*.meta\\\": true,\\n \\\"build-templates/\\\": true,\\n \\\"build/\\\": true,\\n \\\"library/\\\": true,\\n \\\"local/\\\": true,\\n \\\"temp/\\\": true\\n },\\n \\\"search.exclude\\\": {\\n \\\".vscode/\\\": true,\\n \\\"**/*.anim\\\": true,\\n \\\"**/*.d.ts\\\": true,\\n \\\"**/*.fire\\\": true,\\n \\\"**/*.prefab\\\": true,\\n \\\"build/\\\": true,\\n \\\"library/\\\": true,\\n \\\"temp/\\\": true\\n },\\n \\\"workbench.startupEditor\\\": \\\"welcomePage\\\",\\n \\\"php.validate.executablePath\\\": \\\"C:/nginx/php/php.exe\\\",\\n \\\"explorer.confirmDelete\\\": false,\\n \\\"debug.javascript.suggestPrettyPrinting\\\": false,\\n // Controls how the editor should render the current line highlight.\\n // - none\\n // - gutter\\n // - line\\n // - all: Highlights both the gutter and the current line.\\n \\\"editor.renderLineHighlight\\\": \\\"line\\\",\\n // Controls if the editor should render the current line highlight only when the editor is focused.\\n \\\"editor.renderLineHighlightOnlyWhenFocus\\\": false,\\n // Overrides colors from the currently selected color theme.\\n \\\"workbench.colorCustomizations\\\": {\\n \\\"editor.lineHighlightBackground\\\": \\\"#49b2b93d\\\",\\n // \\\"editor.lineHighlightBorder\\\": \\\"red\\\" // \\\"#ffffff30\\\"\\n },\\n \\\"editor.formatOnSave\\\": true,\\n \\\"security.workspace.trust.enabled\\\": false,\\n \\\"bracketPairColorizer.depreciation-notice\\\": false,\\n \\\"editor.detectIndentation\\\": false,\\n \\\"editor.tabSize\\\": 4,\\n \\\"editor.insertSpaces\\\": true,\\n \\\"editor.codeActionsOnSave\\\": {\\n \\\"source.organizeImports\\\": true\\n },\\n \\\"typescript.referencesCodeLens.enabled\\\": true,\\n \\\"typescript.referencesCodeLens.showOnAllFunctions\\\": true,\\n \\\"[typescript]\\\": {\\n \\\"files.trimFinalNewlines\\\": true,\\n \\\"files.trimTrailingWhitespace\\\": true,\\n },\\n \\\"typescript.tsdk\\\": \\\"node_modules\\\\\\\\typescript\\\\\\\\lib\\\",\\n \\\"settingsSync.ignoredSettings\\\": [\\n \\\"git.enabled\\\"\\n ],\\n \\\"tabnine.experimentalAutoImports\\\": true,\\n \\\"volar.codeLens.references\\\": false,\\n \\\"editor.codeLens\\\": false,\\n \\\"debug.allowBreakpointsEverywhere\\\": true\\n}\"}"}
|
|
@ -1 +0,0 @@
|
|||||||
{"version":2,"content":"{\"settings\":\"{\\n \\\"sync.gist\\\": \\\"f795d3dac8387cf20529286054b6eb95\\\",\\n \\\"sync.autoDownload\\\": false,\\n \\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\n \\\"files.exclude\\\": {\\n \\\".vscode/\\\": true,\\n \\\"**/*.d.ts\\\": true,\\n \\\"**/*.fbx\\\": true,\\n \\\"**/*.FBX\\\": true,\\n \\\"**/*.meta\\\": true,\\n \\\"build-templates/\\\": true,\\n \\\"build/\\\": true,\\n \\\"library/\\\": true,\\n \\\"local/\\\": true,\\n \\\"temp/\\\": true\\n },\\n \\\"search.exclude\\\": {\\n \\\".vscode/\\\": true,\\n \\\"**/*.anim\\\": true,\\n \\\"**/*.d.ts\\\": true,\\n \\\"**/*.fire\\\": true,\\n \\\"**/*.prefab\\\": true,\\n \\\"build/\\\": true,\\n \\\"library/\\\": true,\\n \\\"temp/\\\": true\\n },\\n \\\"workbench.startupEditor\\\": \\\"welcomePage\\\",\\n \\\"php.validate.executablePath\\\": \\\"C:/nginx/php/php.exe\\\",\\n \\\"explorer.confirmDelete\\\": false,\\n \\\"debug.javascript.suggestPrettyPrinting\\\": false,\\n // Controls how the editor should render the current line highlight.\\n // - none\\n // - gutter\\n // - line\\n // - all: Highlights both the gutter and the current line.\\n \\\"editor.renderLineHighlight\\\": \\\"line\\\",\\n // Controls if the editor should render the current line highlight only when the editor is focused.\\n \\\"editor.renderLineHighlightOnlyWhenFocus\\\": false,\\n // Overrides colors from the currently selected color theme.\\n \\\"workbench.colorCustomizations\\\": {\\n \\\"editor.lineHighlightBackground\\\": \\\"#49b2b93d\\\",\\n // \\\"editor.lineHighlightBorder\\\": \\\"red\\\" // \\\"#ffffff30\\\"\\n },\\n \\\"editor.formatOnSave\\\": true,\\n \\\"security.workspace.trust.enabled\\\": false,\\n \\\"bracketPairColorizer.depreciation-notice\\\": false,\\n \\\"editor.detectIndentation\\\": false,\\n \\\"editor.tabSize\\\": 4,\\n \\\"editor.insertSpaces\\\": true,\\n \\\"editor.codeActionsOnSave\\\": {\\n \\\"source.organizeImports\\\": true\\n },\\n \\\"typescript.referencesCodeLens.enabled\\\": true,\\n \\\"typescript.referencesCodeLens.showOnAllFunctions\\\": true,\\n \\\"[typescript]\\\": {\\n \\\"files.trimFinalNewlines\\\": true,\\n \\\"files.trimTrailingWhitespace\\\": true,\\n },\\n \\\"typescript.tsdk\\\": \\\"node_modules\\\\\\\\typescript\\\\\\\\lib\\\",\\n \\\"settingsSync.ignoredSettings\\\": [\\n \\\"git.enabled\\\"\\n ],\\n \\\"tabnine.experimentalAutoImports\\\": true,\\n \\\"volar.codeLens.references\\\": false,\\n \\\"editor.codeLens\\\": false,\\n \\\"debug.allowBreakpointsEverywhere\\\": true,\\n \\\"github.copilot.enable\\\": {\\n \\\"*\\\": true,\\n \\\"yaml\\\": false,\\n \\\"plaintext\\\": true,\\n \\\"markdown\\\": false\\n }\\n}\"}"}
|
|
@ -1 +0,0 @@
|
|||||||
{"version":2,"content":"{\"settings\":\"{\\n \\\"sync.autoDownload\\\": false,\\n \\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\n \\\"files.exclude\\\": {\\n \\\".vscode/\\\": true,\\n \\\"**/*.d.ts\\\": true,\\n \\\"**/*.fbx\\\": true,\\n \\\"**/*.FBX\\\": true,\\n \\\"**/*.meta\\\": true,\\n \\\"build-templates/\\\": true,\\n \\\"build/\\\": true,\\n \\\"library/\\\": true,\\n \\\"local/\\\": true,\\n \\\"temp/\\\": true\\n },\\n \\\"search.exclude\\\": {\\n \\\".vscode/\\\": true,\\n \\\"**/*.anim\\\": true,\\n \\\"**/*.d.ts\\\": true,\\n \\\"**/*.fire\\\": true,\\n \\\"**/*.prefab\\\": true,\\n \\\"build/\\\": true,\\n \\\"library/\\\": true,\\n \\\"temp/\\\": true\\n },\\n \\\"workbench.startupEditor\\\": \\\"welcomePage\\\",\\n \\\"php.validate.executablePath\\\": \\\"C:/nginx/php/php.exe\\\",\\n \\\"explorer.confirmDelete\\\": false,\\n \\\"debug.javascript.suggestPrettyPrinting\\\": false,\\n // Controls how the editor should render the current line highlight.\\n // - none\\n // - gutter\\n // - line\\n // - all: Highlights both the gutter and the current line.\\n \\\"editor.renderLineHighlight\\\": \\\"line\\\",\\n // Controls if the editor should render the current line highlight only when the editor is focused.\\n \\\"editor.renderLineHighlightOnlyWhenFocus\\\": false,\\n // Overrides colors from the currently selected color theme.\\n \\\"workbench.colorCustomizations\\\": {\\n \\\"editor.lineHighlightBackground\\\": \\\"#49b2b93d\\\",\\n // \\\"editor.lineHighlightBorder\\\": \\\"red\\\" // \\\"#ffffff30\\\"\\n },\\n \\\"editor.formatOnSave\\\": true,\\n \\\"security.workspace.trust.enabled\\\": false,\\n \\\"bracketPairColorizer.depreciation-notice\\\": false,\\n \\\"editor.detectIndentation\\\": false,\\n \\\"editor.tabSize\\\": 4,\\n \\\"editor.insertSpaces\\\": true,\\n \\\"editor.codeActionsOnSave\\\": {\\n \\\"source.organizeImports\\\": true\\n },\\n \\\"typescript.referencesCodeLens.enabled\\\": true,\\n \\\"typescript.referencesCodeLens.showOnAllFunctions\\\": true,\\n \\\"[typescript]\\\": {\\n \\\"files.trimFinalNewlines\\\": true,\\n \\\"files.trimTrailingWhitespace\\\": true,\\n },\\n \\\"typescript.tsdk\\\": \\\"node_modules\\\\\\\\typescript\\\\\\\\lib\\\",\\n \\\"settingsSync.ignoredSettings\\\": [\\n \\\"git.enabled\\\"\\n ],\\n \\\"tabnine.experimentalAutoImports\\\": true,\\n \\\"volar.codeLens.references\\\": false,\\n \\\"editor.codeLens\\\": false,\\n \\\"debug.allowBreakpointsEverywhere\\\": true,\\n \\\"github.copilot.enable\\\": {\\n \\\"*\\\": true,\\n \\\"yaml\\\": false,\\n \\\"plaintext\\\": true,\\n \\\"markdown\\\": false\\n },\\n \\\"sync.gist\\\": \\\"f795d3dac8387cf20529286054b6eb95\\\"\\n}\"}"}
|
|
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
|||||||
{"ref":"2cc1ec05-938e-4927-bd51-7acc6e8a7356","content":"{\"version\":1,\"machineId\":\"24b5491a-eaab-451f-afac-55bb1fd68da9\",\"content\":\"{}\"}"}
|
{"ref":"2cc1ec05-938e-4927-bd51-7acc6e8a7356","syncData":{"version":1,"machineId":"24b5491a-eaab-451f-afac-55bb1fd68da9","content":"{}"}}
|
@ -1 +0,0 @@
|
|||||||
{"version":1,"content":"{\"tasks\":\"{}\"}"}
|
|
@ -1 +1 @@
|
|||||||
{"ref":"81ce00cd-acb5-4814-826f-5fea99077bf4","content":"{\"version\":1,\"machineId\":\"35bf9546-61cd-4ed4-9da8-52f481e94e18\",\"content\":\"{\\\"tasks\\\":\\\"{}\\\"}\"}"}
|
{"ref":"81ce00cd-acb5-4814-826f-5fea99077bf4","syncData":{"version":1,"machineId":"35bf9546-61cd-4ed4-9da8-52f481e94e18","content":"{\"tasks\":\"{}\"}"}}
|
@ -25,8 +25,8 @@
|
|||||||
],
|
],
|
||||||
"openTokenLink": true,
|
"openTokenLink": true,
|
||||||
"disableUpdateMessage": false,
|
"disableUpdateMessage": false,
|
||||||
"lastUpload": "2022-06-24T02:35:52.197Z",
|
"lastUpload": "2022-12-02T01:58:35.442Z",
|
||||||
"lastDownload": "2022-06-24T02:35:52.197Z",
|
"lastDownload": "2022-12-02T01:58:35.442Z",
|
||||||
"githubEnterpriseUrl": null,
|
"githubEnterpriseUrl": null,
|
||||||
"askGistDescription": false,
|
"askGistDescription": false,
|
||||||
"customFiles": {},
|
"customFiles": {},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user