Skip to content

Commit 682ec24

Browse files
committed
Update More Branding... Plus automatic Icon Generation!
1 parent af313dd commit 682ec24

26 files changed

Lines changed: 482 additions & 461 deletions

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
21
VSCodium*
2+
AetherCode*
33
.DS_Store
44
*.env
55
assets/
@@ -16,4 +16,4 @@ sourcemaps/
1616
stores/snapcraft/insider/*.snap
1717
stores/snapcraft/stable/*.snap
1818
font-size/node_modules/
19-
font-size/generate-css.js
19+
font-size/generate-css.js

.vscode/settings.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"Lua.runtime.special": {
3+
"import": "require"
4+
},
5+
"Lua.runtime.version": "Lua 5.1",
6+
"Lua.runtime.pathStrict": false,
7+
"Lua.runtime.path": [
8+
"?.lua",
9+
"?/init.lua",
10+
"?/__init__.lua"
11+
],
12+
"Lua.runtime.plugin": "c:\\Users\\shado\\.vscode\\extensions\\lunarwtr.lotro-api-1.0.18\\resources\\Lua\\Plugin\\plugin.lua",
13+
"Lua.workspace.library": [
14+
"c:\\Users\\shado\\.vscode\\extensions\\lunarwtr.lotro-api-1.0.18\\resources\\Lua\\EmmyLua\\Turbine"
15+
],
16+
"Lua.diagnostics.disable": [
17+
"duplicate-set-field",
18+
"inject-field"
19+
],
20+
"xml.fileAssociations": [
21+
{
22+
"pattern": "**/*.plugin",
23+
"systemId": "c:\\Users\\shado\\.vscode\\extensions\\lunarwtr.lotro-api-1.0.18\\resources\\xsds\\lotroplugin.xsd"
24+
},
25+
{
26+
"pattern": "**/*.plugincompendium",
27+
"systemId": "c:\\Users\\shado\\.vscode\\extensions\\lunarwtr.lotro-api-1.0.18\\resources\\xsds\\plugincompendium.xsd"
28+
},
29+
{
30+
"pattern": "**/*.musiccompendium",
31+
"systemId": "c:\\Users\\shado\\.vscode\\extensions\\lunarwtr.lotro-api-1.0.18\\resources\\xsds\\musiccompendium.xsd"
32+
},
33+
{
34+
"pattern": "**/*.skincompendium",
35+
"systemId": "c:\\Users\\shado\\.vscode\\extensions\\lunarwtr.lotro-api-1.0.18\\resources\\xsds\\skincompendium.xsd"
36+
},
37+
{
38+
"pattern": "**/SkinDefinition.xml",
39+
"systemId": "c:\\Users\\shado\\.vscode\\extensions\\lunarwtr.lotro-api-1.0.18\\resources\\xsds\\lotro-skin.xsd"
40+
}
41+
]
42+
}

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
MIT License
22

3+
Copyright (c) 2026-present Limbo Development
34
Copyright (c) 2018-present The VSCodium contributors
45
Copyright (c) 2018-present Peter Squicciarini
56
Copyright (c) 2015-present Microsoft Corporation

build_cli.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ cd cli
77
export CARGO_NET_GIT_FETCH_WITH_CLI="true"
88
export VSCODE_CLI_APP_NAME="$( echo "${APP_NAME}" | awk '{print tolower($0)}' )"
99
export VSCODE_CLI_BINARY_NAME="$( node -p "require(\"../product.json\").serverApplicationName" )"
10-
export VSCODE_CLI_UPDATE_ENDPOINT="https://raw.githubusercontent.com/VSCodium/versions/refs/heads/master"
10+
export VSCODE_CLI_UPDATE_ENDPOINT="https://raw.githubusercontent.com/${GH_REPO_PATH}/versions/refs/heads/master"
1111

1212
if [[ "${VSCODE_QUALITY}" == "insider" ]]; then
13-
export VSCODE_CLI_DOWNLOAD_ENDPOINT="https://github.com/VSCodium/vscodium-insiders/releases"
13+
export VSCODE_CLI_DOWNLOAD_ENDPOINT="https://github.com/${GH_REPO_PATH}/releases"
1414
else
15-
export VSCODE_CLI_DOWNLOAD_ENDPOINT="https://github.com/VSCodium/vscodium/releases"
15+
export VSCODE_CLI_DOWNLOAD_ENDPOINT="https://github.com/${GH_REPO_PATH}/releases"
1616
fi
1717

1818
TUNNEL_APPLICATION_NAME="$( node -p "require(\"../product.json\").tunnelApplicationName" )"
@@ -62,7 +62,7 @@ else
6262

6363
if [[ "${VSCODE_ARCH}" == "arm64" ]]; then
6464
VSCODE_CLI_TARGET="aarch64-unknown-linux-gnu"
65-
65+
6666
if [[ "${CI_BUILD}" != "no" ]]; then
6767
export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc
6868
export CC_aarch64_unknown_linux_gnu=aarch64-linux-gnu-gcc
@@ -109,4 +109,4 @@ else
109109
fi
110110
fi
111111

112-
cd ..
112+
cd ..

dev/build.sh

Lines changed: 10 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -2,46 +2,23 @@
22
# shellcheck disable=SC1091,SC2129
33

44
### Windows
5-
# to run with Bash: "C:\Program Files\Git\bin\bash.exe" ./dev/build.sh
5+
# to run with Bash: "C:\Program Files\Git\bin\git-bash.exe" ./dev/build.sh
66
###
77

88
export APP_NAME="AetherCode"
99
export ASSETS_REPOSITORY="Limbo-Development/aethercode"
1010
export BINARY_NAME="aethercode"
1111
export CI_BUILD="no"
1212
export GH_REPO_PATH="Limbo-Development/aethercode"
13-
export ORG_NAME="Limbo-Development"
13+
export ORG_NAME="Limbo Development"
1414
export SHOULD_BUILD="yes"
1515
export SKIP_ASSETS="yes"
1616
export SKIP_BUILD="no"
17-
export SKIP_SOURCE="no"
17+
export SKIP_SOURCE="yes"
1818
export VSCODE_LATEST="no"
1919
export VSCODE_QUALITY="stable"
2020
export VSCODE_SKIP_NODE_VERSION_CHECK="yes"
21-
22-
while getopts ":ilops" opt; do
23-
case "$opt" in
24-
i)
25-
export ASSETS_REPOSITORY="VSCodium/vscodium-insiders"
26-
export BINARY_NAME="codium-insiders"
27-
export VSCODE_QUALITY="insider"
28-
;;
29-
l)
30-
export VSCODE_LATEST="yes"
31-
;;
32-
o)
33-
export SKIP_BUILD="yes"
34-
;;
35-
p)
36-
export SKIP_ASSETS="no"
37-
;;
38-
s)
39-
export SKIP_SOURCE="yes"
40-
;;
41-
*)
42-
;;
43-
esac
44-
done
21+
export DISABLE_UPDATE="yes"
4522

4623
case "${OSTYPE}" in
4724
darwin*)
@@ -80,6 +57,7 @@ echo "SKIP_ASSETS=\"${SKIP_ASSETS}\""
8057
echo "VSCODE_ARCH=\"${VSCODE_ARCH}\""
8158
echo "VSCODE_LATEST=\"${VSCODE_LATEST}\""
8259
echo "VSCODE_QUALITY=\"${VSCODE_QUALITY}\""
60+
echo "DISABLE_UPDATE=\"${DISABLE_UPDATE}\""
8361

8462
if [[ "${SKIP_SOURCE}" == "no" ]]; then
8563
rm -rf vscode* VSCode*
@@ -112,7 +90,7 @@ if [[ "${SKIP_BUILD}" == "no" ]]; then
11290
git add .
11391
git reset -q --hard HEAD
11492

115-
while [[ -n "$( git log -1 | grep "VSCODIUM HELPER" )" ]]; do
93+
while [[ -n "$( git log -1 | grep "AETHERCODE HELPER" )" ]]; do
11694
git reset -q --hard HEAD~
11795
done
11896

@@ -127,9 +105,9 @@ if [[ "${SKIP_BUILD}" == "no" ]]; then
127105
mkdir -p ~/.gyp
128106

129107
if [[ -f "${HOME}/.gyp/include.gypi" ]]; then
130-
mv ~/.gyp/include.gypi ~/.gyp/include.gypi.pre-vscodium
108+
mv ~/.gyp/include.gypi ~/.gyp/include.gypi.pre-${APP_NAME_LC}
131109
else
132-
echo "{}" > ~/.gyp/include.gypi.pre-vscodium
110+
echo "{}" > ~/.gyp/include.gypi.pre-${APP_NAME_LC}
133111
fi
134112

135113
cp ./build/osx/include.gypi ~/.gyp/include.gypi
@@ -138,7 +116,7 @@ if [[ "${SKIP_BUILD}" == "no" ]]; then
138116
. build.sh
139117

140118
if [[ -f "./include_${OS_NAME}.gypi" ]]; then
141-
mv ~/.gyp/include.gypi.pre-vscodium ~/.gyp/include.gypi
119+
mv ~/.gyp/include.gypi.pre-${APP_NAME_LC} ~/.gyp/include.gypi
142120
fi
143121

144122
if [[ "${VSCODE_LATEST}" == "yes" ]]; then
@@ -159,4 +137,4 @@ if [[ "${SKIP_ASSETS}" == "no" ]]; then
159137
fi
160138

161139
. prepare_assets.sh
162-
fi
140+
fi

dev/build_docker.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33

44
exists() { type -t "$1" &> /dev/null; }
55

6-
export APP_NAME="VSCodium"
6+
export APP_NAME="AetherCode"
77
export CI_BUILD="no"
88
export OS_NAME="linux"
99
export SHOULD_BUILD="yes"
1010
export SKIP_ASSETS="yes"
1111
export VSCODE_LATEST="no"
1212
export VSCODE_QUALITY="stable"
13+
export DISABLE_UPDATE="yes"
1314

1415
while getopts ":ilp" opt; do
1516
case "$opt" in
@@ -50,4 +51,4 @@ rm -rf vscode* VSCode*
5051

5152
if [[ "${SKIP_ASSETS}" == "no" ]]; then
5253
. prepare_assets.sh
53-
fi
54+
fi

dev/cli.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
export CARGO_NET_GIT_FETCH_WITH_CLI="true"
2-
export VSCODE_CLI_APP_NAME="vscodium"
3-
export VSCODE_CLI_BINARY_NAME="codium-server-insiders"
4-
export VSCODE_CLI_DOWNLOAD_URL="https://github.com/VSCodium/vscodium-insiders/releases"
2+
export VSCODE_CLI_APP_NAME="${APP_NAME_LC}"
3+
export VSCODE_CLI_BINARY_NAME="${APP_NAME_LC}-server-insiders"
4+
export VSCODE_CLI_DOWNLOAD_URL="https://github.com/${GH_REPO_PATH}/releases"
55
export VSCODE_CLI_QUALITY="insider"
6-
export VSCODE_CLI_UPDATE_URL="https://raw.githubusercontent.com/VSCodium/versions/refs/heads/master"
6+
export VSCODE_CLI_UPDATE_URL="https://raw.githubusercontent.com/${GH_REPO_PATH}/versions/refs/heads/master"
77

88
cargo build --release --target aarch64-apple-darwin --bin=code
99

10-
cp target/aarch64-apple-darwin/release/code "../../VSCode-darwin-arm64/VSCodium - Insiders.app/Contents/Resources/app/bin/codium-tunnel-insiders"
10+
cp "target/aarch64-apple-darwin/release/code" "../../VSCode-darwin-arm64/${APP_NAME} - Insiders.app/Contents/Resources/app/bin/${APP_NAME_LC}-tunnel-insiders"
1111

12-
"../../VSCode-darwin-arm64/VSCodium - Insiders.app/Contents/Resources/app/bin/codium-insiders" serve-web
12+
"../../VSCode-darwin-arm64/${APP_NAME} - Insiders.app/Contents/Resources/app/bin/${APP_NAME_LC}-insiders" serve-web

dev/merge-patches.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ cd vscode || { echo "'vscode' dir not found"; exit 1; }
2121
git add .
2222
git reset -q --hard HEAD
2323

24-
while [[ -n "$( git log -1 | grep "VSCODIUM HELPER" )" ]]; do
24+
while [[ -n "$( git log -1 | grep "AETHERCODE HELPER" )" ]]; do
2525
git reset -q --hard HEAD~
2626
done
2727

2828
git apply --reject "../patches/helper/settings.patch"
2929
git add .
30-
git commit --no-verify -q -m "VSCODIUM HELPER"
30+
git commit --no-verify -q -m "AETHERCODE HELPER"
3131

3232
while [ $# -gt 1 ]; do
3333
normalize_file "${1}"

dev/patch.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ cd vscode || { echo "'vscode' dir not found"; exit 1; }
2424
git add .
2525
git reset -q --hard HEAD
2626

27-
while [[ -n "$( git log -1 | grep "VSCODIUM HELPER" )" ]]; do
27+
while [[ -n "$( git log -1 | grep "AETHERCODE HELPER" )" ]]; do
2828
git reset -q --hard HEAD~
2929
done
3030

@@ -44,9 +44,9 @@ if [[ "${FILE}" != "../patches/helper/settings.patch" ]]; then
4444
done
4545

4646
git add .
47-
git commit --no-verify -q -m "VSCODIUM HELPER"
47+
git commit --no-verify -q -m "AETHERCODE HELPER"
4848

49-
normalize_file "${1}"
49+
shift
5050
else
5151
normalize_file "${1}"
5252

@@ -98,7 +98,7 @@ if [[ "${FILE}" != "../patches/helper/settings.patch" ]]; then
9898
fi
9999

100100
git add .
101-
git commit --no-verify -q -m "VSCODIUM HELPER"
101+
git commit --no-verify -q -m "AETHERCODE HELPER"
102102

103103
normalize_file "${1}"
104104
fi

dev/update_patches.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ check_file() {
9595
if [[ -f "${1}" ]]; then
9696
git apply --reject "../patches/helper/settings.patch"
9797
git add .
98-
git commit --no-verify -q -m "VSCODIUM HELPER"
98+
git commit --no-verify -q -m "AETHERCODE HELPER"
9999

100100
echo applying patch: "${1}"
101101

@@ -143,7 +143,7 @@ cd vscode || { echo "'vscode' dir not found"; exit 1; }
143143
git add .
144144
git reset -q --hard HEAD
145145

146-
while [[ -n "$( git log -1 | grep "VSCODIUM HELPER" )" ]]; do
146+
while [[ -n "$( git log -1 | grep "AETHERCODE HELPER" )" ]]; do
147147
git reset -q --hard HEAD~
148148
done
149149

0 commit comments

Comments
 (0)