You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix config indentation to be consistent.
* Fix configs to use consistent wording.
* Improve config phrasing.
* Add missing config defaults (and example).
* Add sentence punctuation to the configs.
And some other stuff I forgot.
* Unhyphenate the config comments where not needed.
Copy file name to clipboardExpand all lines: common/src/main/resources/de/bluecolored/bluemap/config/core.conf
+17-17Lines changed: 17 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -4,45 +4,45 @@
4
4
## ##
5
5
6
6
# By changing the setting (accept-download) below to TRUE you are indicating that you have accepted mojang's EULA (https://account.mojang.com/documents/minecraft_eula),
7
-
# you confirm that you own a license to Minecraft (Java Edition)
8
-
# and you agree that BlueMap will download and use a minecraft-client file (depending on the minecraft-version) from mojangs servers (https://piston-meta.mojang.com/) for you.
7
+
# you confirm that you own a license to Minecraft (Java Edition),
8
+
# and you agree that BlueMap will download and use a minecraftclient file (depending on the minecraftversion) from mojangs servers (https://piston-meta.mojang.com/) for you.
9
9
# This file contains resources that belong to mojang and you must not redistribute it or do anything else that is not compliant with mojang's EULA.
10
-
# BlueMap uses resources in this file to generate the 3D-Models used for the map and texture them. (BlueMap will not work without those resources.)
10
+
# BlueMap uses resources in this file to generate the 3D models used for the map and texture them. (BlueMap will not work without those resources).
11
11
# ${timestamp}
12
12
accept-download: false
13
13
14
-
# The folder where bluemap saves data-files it needs during runtime or to save e.g. the render-progress to resume it later.
14
+
# The folder where BlueMap saves datafiles it needs during runtime or to save (for example) the renderprogress file to resume it later.
15
15
# Default is "bluemap"
16
16
data: "${data}"
17
17
18
18
# This changes the amount of threads that BlueMap will use to render the maps.
19
-
# A higher value can improve render-speed but could impact performance on the host machine.
20
-
# This should be always below or equal to the number of available processor-cores.
21
-
# Zero or a negative value means the amount of available processor-cores subtracted by the value.
22
-
# (So a value of -2 with 6 cores results in 4 render-processes)
19
+
# A higher value can improve the renderspeed, but could impact performance on the host machine.
20
+
# This should be always below or equal to the number of available processorcores.
21
+
# Zero or a negative value means the amount of available processorcores subtracted by the value.
22
+
# (So a value of -2 with 6 cores results in 4 render threads).
23
23
# Default is 1
24
24
render-thread-count: ${render-thread-count}
25
25
26
-
# Controls whether BlueMap should try to find and load mod-resources and datapacks from the server/world-directories.
26
+
# Controls whether BlueMap should try to find and load modresources and datapacks from the server/worlddirectories.
27
27
# Default is true
28
28
scan-for-mod-resources: true
29
29
${metrics<<
30
-
# If this is true, BlueMap might send really basic metrics reports containing only the implementation-type and the version that is being used to https://metrics.bluecolored.de/bluemap/
30
+
# If this is true, BlueMap might send really basic metric reports containing only the implementationtype and the version that is being used to https://metrics.bluecolored.de/bluemap/
31
31
# This allows me to track the basic usage of BlueMap and helps me stay motivated to further develop this tool! Please leave it on :)
32
32
# An example report looks like this: {"implementation":"${implementation}","version":"${version}","mcVersion":"${mcVersion}"}
33
33
# Default is true
34
34
metrics: true
35
35
>>}
36
-
# Config-section for debug-logging
36
+
# Config-section for debuglogging:
37
37
log: {
38
-
# The file where the debug-log will be written to.
39
-
# Comment out to disable debug-logging completely.
40
-
# Java String formatting syntax can be used to add time, see: https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html
41
-
# Default is no logging
38
+
# The file where the debuglog will be written to.
39
+
# Comment out to disable debuglogging completely.
40
+
# Java String formatting syntax can be used to add timestamps, see: https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html
41
+
# Default is no logging.
42
42
file: "${logfile}"
43
43
#file: "${logfile-with-time}"
44
44
45
-
# Whether the logger should append to an existing file, or overwrite it
46
-
# Default is false
45
+
# Whether the logger should append to an existing file, or overwrite it.
0 commit comments