> For the complete documentation index, see [llms.txt](https://liko.rlib.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://liko.rlib.io/changelog/2.2.1.0.md).

# 2.2.1.0

This is a detailed changelog for the specified release above.

### ◾ Support for Materials as Wallpapers

Server owners can now specify materials for their interface background. By default, this script uses a DHTML panel to load wallpapers from external websites. The issue with this is that it can sometimes make the interface take a second or two longer to actually load.

By using materials; it can make load times significantly less; however, this requires the server owner to upload the desired materials to a Steam Workshop collection and call the image within the config:

{% tabs %}
{% tab title="linx\lua\modules\liko\cfg\sh\_cfg\_bg.lua" %}

```lua
cfg.bg.material.enabled     = true
cfg.bg.material.list        =
{
    'path/to/material_1.png',
    'path/to/material_2.png',
}
cfg.bg.material.clr         = Color( 255, 255, 255, 255 )
```

{% endtab %}
{% endtabs %}

If you decide to enable material wallpapers; it is HIGHLY recommended that you disable the other wallpaper settings for loading external images; otherwise load-times will be equally as bad:

{% tabs %}
{% tab title="linx\lua\modules\liko\cfg\sh\_cfg\_bg.lua" %}

```lua
cfg.bg.static.enabled     = false
cfg.bg.live.enabled       = false
```

{% endtab %}
{% endtabs %}

In order to create a Steam Workshop collection; you must utilize a tool such as GMPU (**Garry's Mod Publishing Utility**) which can be [**downloaded here**](https://github.com/alatnet/gmpu):

####

### ◾ News Ticker

Fixed a minor issue which would cause the news ticket to throw a nil value error.

####

### ◾ Updated Font Library

Migrated font library to new system. Nothing should be changed on the server owner's end.

####

### ◾ Optimizations

Several aspects have been updated for better load times.

####

### ◾ Updated Documentation

Several pages have been updated with better structuring so that steps are easier to follow. Also added more information related to certain steps.

####

### ◾ Updated ServerGuard permissions

ServerGuard permissions are now more easily identifiable with new names.
