(docs) Add plugin sdk changelogs

This commit is contained in:
MM20
2026-03-14 18:17:54 +01:00
parent a3a6bd1afd
commit 5bcbf24b75
5 changed files with 77 additions and 11 deletions

View File

@@ -1,4 +1,8 @@
# Migrate from v1.x to v2.x
# Version 2.0.0
::: info Kvaesitso version
**Version 1.31.0** (June 2024)
:::
Version 2.0.0 of the plugin SDK introduces some breaking changes:

View File

@@ -0,0 +1,9 @@
# Version 2.2.0
::: info Kvaesitso version
**Version 1.33.0** (August 2024)
:::
## Added calendar plugins
- [Docs](/docs/developer-guide/plugins/plugin-types/calendar)

View File

@@ -0,0 +1,9 @@
# Version 2.2.0
::: info Kvaesitso version
**Version 1.35.3** (April 2025)
:::
## Added contact search plugins
- [Docs](/docs/developer-guide/plugins/plugin-types/contact-search)

View File

@@ -0,0 +1,32 @@
# Version 2.3.0
::: info Kvaesitso version
**Version 1.40.0** (March 2026)
:::
## Renamed weather condition icons
Some weather condition icons have been removed or renamed in order to better reflect their meaning.
The
following table lists the old names and their replacement:
| Old name | Replacement |
|-----------------------------|-------------------------------------|
| `BrokenClouds` | `PartlyCloudy` |
| `HeavyThunderstorm` | Removed, use `Thunder` instead |
| `HeavyThunderstormWithRain` | Removed, use `Thunderstorm` instead |
| `ThunderstormWithRain` | `Thunderstorm` |
| `Showers` | `Rain` |
| `Drizzle` | `LightRain` |
| `MostlyCloudy` | Removed, use`PartlyCloudy` instead |
| `Cloudy` | `Overcast` |
| `Cold` | `ExtremeCold` |
| `Hot` | `ExtremeHeat` |
| `Storm` | `Wind` |
Old names are still available, but they have been deprecated and should not be used. They will be
removed in a later version.
## Added UV index
- `uvIndex` has been added to the weather `Forecast` type.

View File

@@ -97,21 +97,33 @@ export const DeveloperGuideSidebar: DefaultTheme.SidebarItem[] = [
text: 'Access Control',
link: '/docs/developer-guide/plugins/access-control',
},
{
text: 'SDK Changelogs',
items: [
{
text: 'v2.3.0',
link: '/docs/developer-guide/plugins/changelogs/v2.3.0',
},
{
text: 'v2.2.0',
link: '/docs/developer-guide/plugins/changelogs/v2.2.0',
},
{
text: 'v2.1.0',
link: '/docs/developer-guide/plugins/changelogs/v2.1.0',
},
{
text: 'v2.0.0',
link: '/docs/developer-guide/plugins/changelogs/v2.0.0',
},
],
},
{
text: 'Reference',
link: '/reference/index.html',
target: '_blank',
},
{
text: 'Migrations',
items: [
{
text: 'Migrate to plugin SDK v2.x',
link: '/docs/developer-guide/plugins/migrations/v2',
},
,
],
},
],
},
]