Skip to content

Commit

Permalink
Merge pull request #317 from nextcloud/bugfix/noid/support-22
Browse files Browse the repository at this point in the history
Add support for 22
  • Loading branch information
nickvergessen authored Jun 17, 2021
2 parents 3e3f63c + 36e2d3d commit 568f7e6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]" homepage="https://nyllep.wordpress.com/about-2">Pellaeon Lin</author>
<types>
Expand All @@ -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>
Expand Down
8 changes: 6 additions & 2 deletions css/register-button.css
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down

0 comments on commit 568f7e6

Please sign in to comment.