Updated Bukkit Configuration (markdown)

Rsl1122 2017-11-02 13:43:40 +02:00
parent 7bfa126aa3
commit 160eb584ae
1 changed files with 38 additions and 2 deletions

@ -7,7 +7,7 @@ For Bungee see [[Bungee Configuration]]
Settings are provided with the Settings Enum class that reads the config.
- [Settings class](https://github.com/Rsl1122/Plan-PlayerAnalytics/blob/master/Plan/src/main/java/com/djrapitops/plan/Settings.java)
Page version: **4.0.0**
Page version: **4.0.5**
# Settings
@ -67,8 +67,44 @@ Commands.CombineCommandAliases | true | Combines command aliases to the main com
## Customization
Setting | Default | Description
-- | -- | --
UseServerTime | true | Force HighCharts to use Server TimeZone
Display.SessionsAsTable | false | Replaces Session Harmonica with a Table
Formatting.DecimalPoints | '#.##' | How many decimal points should be displayed
Formatting.TimeAmount | | Time amounts are formatted by replacing the placeholders of these settings. If a %zero% is added to Hours, Minutes or Seconds, a zero will be added to single digit numbers, e.g. %zero%%seconds% -> 04. This allows time display of 04:43:23 for example.
Formatting.TimeAmount | | Time amounts are formatted by replacing the placeholders of these settings. More below.
WorldAliases |  | List of Worlds and the aliases used in graph generation. You can lump worlds together by setting their alias as the same value.
### Formatting.TimeAmount Examples
Default:
Time | Formatted
-- | --
400 days, 12 hours, 30 minutes and 20 seconds | 1 year, 1 month, 5d 12h 30m 20s
400 days | 1 year, 1 month, 5d
12 hours 20 sec. | 12h 20s
0 sec. | 0s
Extra Zeros
```
TimeAmount:
Year: '1 year, '
Years: '%years% years, '
Month: '1 month, '
Months: '%months% months, '
Day: '1d '
Days: '%days%d '
Hours: '%zero%%hours%:'
Minutes: '%hours%%zero%%minutes%:'
Seconds: '%minutes%%zero%%seconds%'
Zero: '00:00:00'
```
Time | Formatted
-- | --
400 days, 12 hours, 30 minutes and 20 seconds | 1 year, 1 month, 5d 12:30:20
400 days | 1 year, 1 month, 5d
12 hours 20 sec. | 12:00:20
30 minutes | 00:30:00
20 sec. | 00:00:20
0 sec. | 00:00:00
## Theme