forked from StarbloomSS13/StarbloomSS13
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reverts the recent config changes (#56606)
* Revert "Fixes included config files not loading (#56602)" This reverts commit 0749b32. * Revert "Adds configuration consistency tests (#56562)" This reverts commit 4f44014.
- Loading branch information
1 parent
ef73b28
commit dd6cea8
Showing
10 changed files
with
71 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
## Custom antag reputation values | ||
## List of job titles followed by antag rep value, all prefixed with ANTAG_REP. See code/modules/jobs/job_types for titles | ||
## e.g. | ||
# ANTAG_REP Captain 10 | ||
# ANTAG_REP Assistant 0 | ||
## e.g. | ||
## ANTAG_REP Captain 10 | ||
## ANTAG_REP Assistant 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
## External resources | ||
## Set this to the location of a .zip with the server's .rsc inside of it. | ||
## If you set this mutiple times, the server will rotate between the links. | ||
## To use this, the compile option PRELOAD_RSC must be set to 0 to keep byond from preloading resources | ||
## Resource urls can not be encrypted (https://), as they are downloaded by byond, not IE, and byond can't into encryption | ||
# External resources | ||
# Set this to the location of a .zip with the server's .rsc inside of it. | ||
# If you set this mutiple times, the server will rotate between the links. | ||
# To use this, the compile option PRELOAD_RSC must be set to 0 to keep byond from preloading resources | ||
# Resource urls can not be encrypted (https://), as they are downloaded by byond, not IE, and byond can't into encryption | ||
|
||
EXTERNAL_RSC_URLS http://tgstation13.download/byond/tgstationv2.zip | ||
|
||
|
||
######################## | ||
## Browser Asset Config # | ||
# Browser Asset Config # | ||
######################## | ||
## Browser assets are any file included in interfaces. css, images, javascript, etc. | ||
## This handles configuring how we get these to the player so interfaces can access them. | ||
# Browser assets are any file included in interfaces. css, images, javascript, etc. | ||
# This handles configuring how we get these to the player so interfaces can access them. | ||
|
||
## Asset Transport | ||
## The normal way of getting assets to clients is to use the internal byond system. This can be slow and delay the opening of interface windows. It also doesn't allow the internal IE windows byond uses to cache anything. | ||
## You can instead have the server save them to a website via a folder within the game server that the web server can read. This could be a simple webserver or something backed by a CDN. | ||
## Valid values: simple, webroot. Simple is the default. | ||
# Asset Transport | ||
# The normal way of getting assets to clients is to use the internal byond system. This can be slow and delay the opening of interface windows. It also doesn't allow the internal IE windows byond uses to cache anything. | ||
# You can instead have the server save them to a website via a folder within the game server that the web server can read. This could be a simple webserver or something backed by a CDN. | ||
# Valid values: simple, webroot. Simple is the default. | ||
#ASSET_TRANSPORT webroot | ||
|
||
|
||
## Simple asset transport configurable values. | ||
# Simple asset transport configurable values. | ||
|
||
## Uncomment this to have the server passively send all browser assets to each client in the background. (instead of waiting for them to be needed) | ||
## This should be uncommented in production and commented in development | ||
# Uncomment this to have the server passively send all browser assets to each client in the background. (instead of waiting for them to be needed) | ||
# This should be uncommented in production and commented in development | ||
#ASSET_SIMPLE_PRELOAD | ||
|
||
|
||
## Webroot asset transport configurable values. | ||
# Webroot asset transport configurable values. | ||
|
||
## Local folder to save assets to. | ||
## Assets will be saved in the format of asset.MD5HASH.EXT or in namespaces/hash/ as ASSET_FILE_NAME or asset.MD5HASH.EXT | ||
# Local folder to save assets to. | ||
# Assets will be saved in the format of asset.MD5HASH.EXT or in namespaces/hash/ as ASSET_FILE_NAME or asset.MD5HASH.EXT | ||
#ASSET_CDN_WEBROOT data/asset-store/ | ||
|
||
## URL the folder from above can be accessed from. | ||
## for best results the webserver powering this should return a long cache validity time, as all assets sent via this transport use hash based urls | ||
## Encryption (https) is supported here, but linux clients will have issues if you require higher then tls 1.0. Windows clients down to windows 7 can handle tls 1.2 no issue. | ||
## if you want to test this locally, you simpily run the `localhost-asset-webroot-server.py` python3 script to host assets stored in `data/asset-store/` via http://localhost:58715/ | ||
# URL the folder from above can be accessed from. | ||
# for best results the webserver powering this should return a long cache validity time, as all assets sent via this transport use hash based urls | ||
# Encryption (https) is supported here, but linux clients will have issues if you require higher then tls 1.0. Windows clients down to windows 7 can handle tls 1.2 no issue. | ||
# if you want to test this locally, you simpily run the `localhost-asset-webroot-server.py` python3 script to host assets stored in `data/asset-store/` via http://localhost:58715/ | ||
#ASSET_CDN_URL http://localhost:58715/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters