Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/registration.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2021-06-17 16:35:24 +0300
committerGitHub <noreply@github.com>2021-06-17 16:35:24 +0300
commit568f7e64a1ff37042b24d9b52868a2a07da12a28 (patch)
treef071e763161d5783909a68c358591044d04879b8
parent3e3f63c8077532d041020a4ac84126af425e4810 (diff)
parent36e2d3d59939932a08a5960ed4bbb4fb6091d871 (diff)
Merge pull request #317 from nextcloud/bugfix/noid/support-22v1.3.0
Add support for 22
-rw-r--r--CHANGELOG.md4
-rw-r--r--appinfo/info.xml4
-rw-r--r--css/register-button.css8
3 files changed, 12 insertions, 4 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
]]></description>
- <version>1.2.1</version>
+ <version>1.3.0</version>
<licence>agpl</licence>
<author mail="pellaeon@cnmc.tw" homepage="https://nyllep.wordpress.com/about-2">Pellaeon Lin</author>
<types>
@@ -38,7 +38,7 @@ This app allows users to register a new account.
<screenshot>https://raw.githubusercontent.com/nextcloud/registration/master/docs/demo.gif</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/registration/master/docs/admin-settings.png</screenshot>
<dependencies>
- <nextcloud min-version="20" max-version="21" />
+ <nextcloud min-version="20" max-version="22" />
</dependencies>
<settings>
<admin>OCA\Registration\Settings\RegistrationSettings</admin>
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 {