mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2024-11-20 08:54:15 +00:00
16f975a9d0
* Updated menu buttons and icons * Cleaned up .devcotainer * removed dockerfile from .devcontainer in favour of using image * Added JS settings, updated menu template, css, js * Updated tab width to 4 * Refactored openTab and closeAllItems, default tab content to be hidden, added polyfill for NodeList.forEach * Refactored openItem, made targeting modals easier * Refactored toggleOption * Fixed clicking tab not closing active modals * Updated aerial delay and falling aerial icons * Updated colours of defensive settings menu icons * Updated misc tab menu icon colours * Fixed oos_offset, shield_state, and shield_tilt * Fixed all tabs defaulting to active, Updated modals to be outside menu_items, Refactored JS to work with new HTML hierarchy * Updated settings to be JSON * Fixed single options not populating correctly from url * Updated menu to edit settings object when toggled * Removed updating settings from menu before exit * Refactored comments to fewer lines * Refactored to use const, Refactored to use camelCase, Refactored resetCurrentSubmenu & resetAllSubmenus * Fixed size and alignment of menu item text, Fixed size of option button's text, Fixed colour of crouch icon * Updated stroke width for crouch icon feet & arms * Updated check to use fontawesome as a base, Changed colour to have better contrast, Added outline for better contrast * Updated one-winged angel option to 1-winged angel * Updated openTab and resetCurrentMenu to play sfx
33 lines
No EOL
981 B
JSON
Vendored
33 lines
No EOL
981 B
JSON
Vendored
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.140.1/containers/docker-from-docker
|
|
{
|
|
"name": "Cargo Skyline",
|
|
"image": "jugeeya/cargo-skyline:3.0.0-dkp-beta",
|
|
"mounts": [
|
|
"source=ultimatetrainingmodpack-bashhistory,target=/commandhistory,type=volume"
|
|
],
|
|
// // Use this environment variable if you need to bind mount your local source code into a new container.
|
|
"remoteEnv": {
|
|
"LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}"
|
|
},
|
|
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"matklad.rust-analyzer",
|
|
"bungcip.better-toml",
|
|
"serayuzgur.crates",
|
|
"statiolake.vscode-rustfmt"
|
|
]
|
|
}
|
|
},
|
|
|
|
// // Add the IDs of extensions you want installed when the container is created.
|
|
"extensions": [
|
|
"ms-azuretools.vscode-docker",
|
|
"matklad.rust-analyzer",
|
|
"bungcip.better-toml",
|
|
"serayuzgur.crates",
|
|
"statiolake.vscode-rustfmt"
|
|
]
|
|
} |