Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: BF3RM/VEManager
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.2.6
Choose a base ref
...
head repository: BF3RM/VEManager
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: development
Choose a head ref
Loading
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

oldExt/*
Reality Mod Code/
.vscode
.vu

6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"lua.targetVersion": "5.2",
"todo-tree.tree.scanMode": "workspace",
"todo-tree.regex.regex": "((--|//|#|<!--|;|/\\*|^)\\s*($TAGS)|^\\s*- \\[ \\])"
"todo-tree.regex.regex": "((--|//|#|<!--|;|/\\*|^)\\s*($TAGS)|^\\s*- \\[ \\])",
"workbench.colorCustomizations": {
"minimap.background": "#00000000",
"scrollbar.shadow": "#00000000"
}
}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -8,13 +8,13 @@ https://youtube.com/playlist?list=PLqlU85EO4crIPxk10YXiKDXE67lU-dM4m

If you have questions contact IllustrisJack#5355 on Discord.

## Config Options (Shared/Config.lua):
A number of features can be switched on/off from the config file located at Shared/Config.lua
## Config Options (Shared/VEM_CONFIG.lua):
A number of features can be switched on/off from the config file located at Shared/VEM_CONFIG.lua

DEV_ENABLE_CHAT_COMMANDS = (true/false) Enables the use of these chat command
DEV_ENABLE_TEST_KEYS = (true/false) Enables the use of test keys / shortcuts

For more options, have a look in Shared/Config.lua.
For more options, have a look in Shared/VEM_CONFIG.lua.

### DEVELOPER CHAT COMMANDS
+ The following commands can be used: (provided that DEV_ENABLE_CHAT_COMMANDS is set to true)
31 changes: 31 additions & 0 deletions VEManager.vua.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"folders": [
{
"name": "Shared",
"path": "ext\\Shared"
},
{
"name": "Server",
"path": "ext\\Server"
},
{
"name": "Client",
"path": "ext\\Client"
}
],
"settings": {
"Lua.workspace.maxPreload": 10000,
"Lua.diagnostics.libraryFiles": "Disable",
"Lua.runtime.version": "Lua 5.4",
"Lua.format.enable": true,
"Lua.misc.parameters": [
"--preview"
]
},
"extensions": {
"recommendations": [
"imposter.vscode-lua-vu",
"editorconfig.editorconfig"
]
}
}
16 changes: 0 additions & 16 deletions ext/Client/.vscode/settings.json

This file was deleted.

File renamed without changes.
161 changes: 0 additions & 161 deletions ext/Client/Modules/Patches.lua

This file was deleted.

Loading