diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-09-02 22:38:53 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-09-02 22:38:53 +0200 |
commit | 3efb39371de9fe750301a6fadbbe65eb81f1b797 (patch) | |
tree | d1c9c1c25314a579132411d458e7d36f20c61e72 /apps/theming/appinfo | |
parent | 87f8a8c961e97cd2e4ca1a7be317e6ff61b2d963 (diff) | |
download | nextcloud-server-3efb39371de9fe750301a6fadbbe65eb81f1b797.tar.gz nextcloud-server-3efb39371de9fe750301a6fadbbe65eb81f1b797.zip |
chore(theming): Increase app version
There were heavly breaking theming changes so increase the version number to make cache buster work.
Also fix order of entries in the appinfo.xml to fix XML validation (the order is fixed in the XSD).
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/theming/appinfo')
-rw-r--r-- | apps/theming/appinfo/info.xml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/theming/appinfo/info.xml b/apps/theming/appinfo/info.xml index 7b42d063161..2eac0fd5058 100644 --- a/apps/theming/appinfo/info.xml +++ b/apps/theming/appinfo/info.xml @@ -9,7 +9,7 @@ <name>Theming</name> <summary>Adjust the Nextcloud theme</summary> <description>Adjust the Nextcloud theme</description> - <version>2.6.0</version> + <version>2.6.1</version> <licence>agpl</licence> <author>Nextcloud</author> <namespace>Theming</namespace> @@ -24,13 +24,6 @@ <nextcloud min-version="31" max-version="31"/> </dependencies> - <settings> - <admin>OCA\Theming\Settings\Admin</admin> - <admin-section>OCA\Theming\Settings\AdminSection</admin-section> - <personal>OCA\Theming\Settings\Personal</personal> - <personal-section>OCA\Theming\Settings\PersonalSection</personal-section> - </settings> - <repair-steps> <post-migration> <step>OCA\Theming\Migration\InitBackgroundImagesMigration</step> @@ -40,4 +33,11 @@ <commands> <command>OCA\Theming\Command\UpdateConfig</command> </commands> + + <settings> + <admin>OCA\Theming\Settings\Admin</admin> + <admin-section>OCA\Theming\Settings\AdminSection</admin-section> + <personal>OCA\Theming\Settings\Personal</personal> + <personal-section>OCA\Theming\Settings\PersonalSection</personal-section> + </settings> </info> |