From 9f07ba08433641747dc6170016c72966416538ae Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 30 Oct 2022 13:53:26 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=20Adds=20defaultIcon=20to=20schema?= =?UTF-8?q?=20and=20config=20list=20(#925)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/configuring.md | 1 + src/utils/ConfigSchema.json | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/docs/configuring.md b/docs/configuring.md index 9807070c..4c915893 100644 --- a/docs/configuring.md +++ b/docs/configuring.md @@ -112,6 +112,7 @@ The following file provides a reference of all supported configuration options. **`fontAwesomeKey`** | `string` | _Optional_ | If you have a font-awesome key, then you can use it here and make use of premium icons. It is a 10-digit alpha-numeric string from you're FA kit URL (e.g. `13014ae648`) **`faviconApi`** | `enum` | _Optional_ | Only applicable if you are using favicons for item icons. Specifies which service to use to resolve favicons. Set to `local` to do this locally, without using an API. Services running locally will use this option always. Available options are: `local`, `faviconkit`, `iconhorse`, `google`, `clearbit`, `webmasterapi` and `allesedv`. Defaults to `faviconkit`. See [Icons](/docs/icons.md#favicons) for more info **`auth`** | `object` | _Optional_ | All settings relating to user authentication. See [`auth`](#appconfigauth-optional) +**`defaultIcon`** | `string` | _Optional_ | An icon to be applied to any items, which don't already have an icon set. See [Icon Docs](/docs/icons.md#default-icon) for more info **`layout`** | `enum` | _Optional_ | Layout for homepage, either `horizontal`, `vertical` or `auto`. Defaults to `auto`. This specifies the layout and direction of how sections are positioned on the home screen. This can also be modified and overridden from the UI. **`iconSize`** | `enum` | _Optional_ | The size of link items / icons. Can be either `small`, `medium,` or `large`. Defaults to `medium`. This can also be set directly from the UI. **`colCount`** | `number` | _Optional_ | The number of columns of sections displayed on the homepage, using the default view. Should be in integer between `1` and `8`. Note that by default this is applied responsively, based on current screen size, and specifying a value here will override this behavior, which may not be desirable. diff --git a/src/utils/ConfigSchema.json b/src/utils/ConfigSchema.json index 3506bf34..bce7ddfe 100644 --- a/src/utils/ConfigSchema.json +++ b/src/utils/ConfigSchema.json @@ -193,6 +193,11 @@ "default": "allesedv", "description": "Which service to use to resolve favicons. Set to local to do this locally instead" }, + "defaultIcon": { + "title": "Default Icon", + "type": "string", + "description": "An icon to apply to any items which don't yet have the icon set" + }, "layout": { "title": "Default Layout", "type": "string",