Skip to content

Commit b5336d1

Browse files
Remove-left-side-AI-chat-panel-and-fix-tests
1 parent 5a2b093 commit b5336d1

File tree

95 files changed

+6180
-219
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+6180
-219
lines changed

.npmrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
disturl="https://electronjs.org/headers"
2-
target="34.3.2"
3-
ms_build_id="11161073"
2+
target="39.2.6"
3+
ms_build_id="unknown"
44
runtime="electron"
55
build_from_source="true"
66
legacy-peer-deps="true"

.tools/node-v20.18.2-win-x64.zip

28.2 MB
Binary file not shown.

.tools/node-v20.18.2-win-x64/CHANGELOG.md

Lines changed: 1391 additions & 0 deletions
Large diffs are not rendered by default.

.tools/node-v20.18.2-win-x64/LICENSE

Lines changed: 2174 additions & 0 deletions
Large diffs are not rendered by default.

.tools/node-v20.18.2-win-x64/README.md

Lines changed: 894 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh
2+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3+
4+
case `uname` in
5+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
6+
esac
7+
8+
if [ -x "$basedir/node" ]; then
9+
exec "$basedir/node" "$basedir/node_modules/corepack/dist/corepack.js" "$@"
10+
else
11+
exec node "$basedir/node_modules/corepack/dist/corepack.js" "$@"
12+
fi
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@SETLOCAL
2+
@IF EXIST "%~dp0\node.exe" (
3+
"%~dp0\node.exe" "%~dp0\node_modules\corepack\dist\corepack.js" %*
4+
) ELSE (
5+
@SET PATHEXT=%PATHEXT:;.JS;=;%
6+
node "%~dp0\node_modules\corepack\dist\corepack.js" %*
7+
)
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
@echo off
2+
3+
setlocal
4+
title Install Additional Tools for Node.js
5+
6+
cls
7+
8+
echo ====================================================
9+
echo Tools for Node.js Native Modules Installation Script
10+
echo ====================================================
11+
echo.
12+
echo This script will install Python and the Visual Studio Build Tools, necessary
13+
echo to compile Node.js native modules. Note that Chocolatey and required Windows
14+
echo updates will also be installed.
15+
echo.
16+
echo This will require about 3 GiB of free disk space, plus any space necessary to
17+
echo install Windows updates. This will take a while to run.
18+
echo.
19+
echo Please close all open programs for the duration of the installation. If the
20+
echo installation fails, please ensure Windows is fully updated, reboot your
21+
echo computer and try to run this again. This script can be found in the
22+
echo Start menu under Node.js.
23+
echo.
24+
echo You can close this window to stop now. Detailed instructions to install these
25+
echo tools manually are available at https://github.com/nodejs/node-gyp#on-windows
26+
echo.
27+
pause
28+
29+
cls
30+
31+
REM Adapted from https://github.com/Microsoft/windows-dev-box-setup-scripts/blob/79bbe5bdc4867088b3e074f9610932f8e4e192c2/README.md#legal
32+
echo Using this script downloads third party software
33+
echo ------------------------------------------------
34+
echo This script will direct to Chocolatey to install packages. By using
35+
echo Chocolatey to install a package, you are accepting the license for the
36+
echo application, executable(s), or other artifacts delivered to your machine as a
37+
echo result of a Chocolatey install. This acceptance occurs whether you know the
38+
echo license terms or not. Read and understand the license terms of the packages
39+
echo being installed and their dependencies prior to installation:
40+
echo - https://chocolatey.org/packages/chocolatey
41+
echo - https://chocolatey.org/packages/python
42+
echo - https://chocolatey.org/packages/visualstudio2019-workload-vctools
43+
echo.
44+
echo This script is provided AS-IS without any warranties of any kind
45+
echo ----------------------------------------------------------------
46+
echo Chocolatey has implemented security safeguards in their process to help
47+
echo protect the community from malicious or pirated software, but any use of this
48+
echo script is at your own risk. Please read the Chocolatey's legal terms of use
49+
echo as well as how the community repository for Chocolatey.org is maintained.
50+
echo.
51+
pause
52+
53+
cls
54+
55+
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" ^
56+
-NoProfile ^
57+
-InputFormat None ^
58+
-ExecutionPolicy Bypass ^
59+
-Command Start-Process ^
60+
'%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe' ^
61+
-ArgumentList '-NoProfile -InputFormat None -ExecutionPolicy Bypass -Command ^
62+
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; ^
63+
iex ((New-Object System.Net.WebClient).DownloadString(''https://chocolatey.org/install.ps1'')); ^
64+
choco upgrade -y python visualstudio2019-workload-vctools; ^
65+
Read-Host ''Type ENTER to exit'' ' ^
66+
-Verb RunAs
66.6 MB
Binary file not shown.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
@echo off
2+
3+
rem Ensure this Node.js and npm are first in the PATH
4+
set "PATH=%APPDATA%\npm;%~dp0;%PATH%"
5+
6+
setlocal enabledelayedexpansion
7+
pushd "%~dp0"
8+
9+
rem Figure out the Node.js version.
10+
set print_version=.\node.exe -p -e "process.versions.node + ' (' + process.arch + ')'"
11+
for /F "usebackq delims=" %%v in (`%print_version%`) do set version=%%v
12+
13+
rem Print message.
14+
if exist npm.cmd (
15+
echo Your environment has been set up for using Node.js !version! and npm.
16+
) else (
17+
echo Your environment has been set up for using Node.js !version!.
18+
)
19+
20+
popd
21+
endlocal
22+
23+
rem If we're in the Node.js directory, change to the user's home dir.
24+
if "%CD%\"=="%~dp0" cd /d "%HOMEDRIVE%%HOMEPATH%"

0 commit comments

Comments
 (0)