Skip to content

Commit 568f7e6

Browse files
Merge pull request #317 from nextcloud/bugfix/noid/support-22
Add support for 22
2 parents 3e3f63c + 36e2d3d commit 568f7e6

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## 1.3.0 – 2021-06-17
5+
### Added
6+
- Compatibility with Nextcloud 22
7+
48
## 1.2.1 – 2021-04-21
59
### Fixed
610
- Don't append # to the URL so the Android WebView doesn't chock on it.

appinfo/info.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This app allows users to register a new account.
2323
4. User is lead to a form where they can choose their username and password
2424
5. New account is created and is logged in automatically
2525
]]></description>
26-
<version>1.2.1</version>
26+
<version>1.3.0</version>
2727
<licence>agpl</licence>
2828
<author mail="[email protected]" homepage="https://nyllep.wordpress.com/about-2">Pellaeon Lin</author>
2929
<types>
@@ -38,7 +38,7 @@ This app allows users to register a new account.
3838
<screenshot>https://raw.githubusercontent.com/nextcloud/registration/master/docs/demo.gif</screenshot>
3939
<screenshot>https://raw.githubusercontent.com/nextcloud/registration/master/docs/admin-settings.png</screenshot>
4040
<dependencies>
41-
<nextcloud min-version="20" max-version="21" />
41+
<nextcloud min-version="20" max-version="22" />
4242
</dependencies>
4343
<settings>
4444
<admin>OCA\Registration\Settings\RegistrationSettings</admin>

css/register-button.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
#alternative-logins .button.register-button {
1+
#alternative-logins:not(.alternative-logins) .button.register-button {
22
color: var(--color-primary-element);
33
}
4+
#alternative-logins.alternative-logins .button.register-button {
5+
color: var(--color-primary-text);
6+
}
47

58
#alternative-logins .register-button:only-child {
6-
width: 220px;
9+
width: 260px;
710
margin: 0 auto;
11+
box-sizing: border-box;
812
}
913

1014
#alternative-logins .register-button.hidden {

0 commit comments

Comments
 (0)