From 3271f8b206ca8902610067483a83773334dde951 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 17 Jun 2021 14:47:38 +0200 Subject: [PATCH 1/2] Fix compatibility with Nextcloud 22 Signed-off-by: Joas Schilling --- CHANGELOG.md | 4 ++++ appinfo/info.xml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb63af9..20b6bd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. +## 1.3.0 – 2021-06-17 +### Added +- Compatibility with Nextcloud 22 + ## 1.2.1 – 2021-04-21 ### Fixed - Don't append # to the URL so the Android WebView doesn't chock on it. diff --git a/appinfo/info.xml b/appinfo/info.xml index afdd631..0e410bd 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -23,7 +23,7 @@ This app allows users to register a new account. 4. User is lead to a form where they can choose their username and password 5. New account is created and is logged in automatically ]]> - 1.2.1 + 1.3.0 agpl Pellaeon Lin @@ -38,7 +38,7 @@ This app allows users to register a new account. https://raw.githubusercontent.com/nextcloud/registration/master/docs/demo.gif https://raw.githubusercontent.com/nextcloud/registration/master/docs/admin-settings.png - + OCA\Registration\Settings\RegistrationSettings From 36e2d3d59939932a08a5960ed4bbb4fb6091d871 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 17 Jun 2021 14:48:27 +0200 Subject: [PATCH 2/2] Fix button width and styling of registration button Signed-off-by: Joas Schilling --- css/register-button.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/css/register-button.css b/css/register-button.css index b6f2fb5..2d33514 100644 --- a/css/register-button.css +++ b/css/register-button.css @@ -1,10 +1,14 @@ -#alternative-logins .button.register-button { +#alternative-logins:not(.alternative-logins) .button.register-button { color: var(--color-primary-element); } +#alternative-logins.alternative-logins .button.register-button { + color: var(--color-primary-text); +} #alternative-logins .register-button:only-child { - width: 220px; + width: 260px; margin: 0 auto; + box-sizing: border-box; } #alternative-logins .register-button.hidden {