From 48050de1a6f11d0cd3545649a4f74e6efe905712 Mon Sep 17 00:00:00 2001 From: Stian Thorgersen Date: Fri, 27 Mar 2015 12:07:39 +0100 Subject: [PATCH] KEYCLOAK-1128 Add changes to themes to migration guide --- .../en-US/modules/MigrationFromOlderVersions.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docbook/reference/en/en-US/modules/MigrationFromOlderVersions.xml b/docbook/reference/en/en-US/modules/MigrationFromOlderVersions.xml index cbdf5d3cdb..116219817b 100755 --- a/docbook/reference/en/en-US/modules/MigrationFromOlderVersions.xml +++ b/docbook/reference/en/en-US/modules/MigrationFromOlderVersions.xml @@ -109,6 +109,21 @@ in a future version. + + Theme changes + + The layout of themes have changed. The directory hierarchy used to be type/name + this is now changed to name/type. For example a login theme named sunrise + used to be deployed to standalone/configuration/themes/login/sunrise, which is now + moved to standalone/configuration/themes/sunrise/login. This change was done to + make it easier to have group the different types for the same theme into one folder. + + + If you deployed themes as a JAR in the past you had to create a custom theme loader which required + Java code. This has been simplified to only requiring a plain text file (META-INF/keycloak-themes.json) + to describe the themes included in a JAR. See the themes section in the docs for more information. + +
Migrating from 1.1.0.Beta2 to 1.1.0.Final