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

github.com/nextcloud/user_sql.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Łojewski <marcin.lojewski@mlojewski.me>2019-10-09 14:30:51 +0300
committerMarcin Łojewski <marcin.lojewski@mlojewski.me>2019-10-09 16:15:02 +0300
commit2fee2f340aff4fb2b4ee740d0a7158c739efff0f (patch)
tree7239739546ba55998cc29250b217526e2f99ae6e
parent34a0c65be65ed0a7352c0bb2f2161e76df975cbb (diff)
Update version, changelog for releasev4.4.0
-rw-r--r--CHANGELOG.md4
-rw-r--r--appinfo/info.xml2
-rw-r--r--js/settings.js2
3 files changed, 4 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 790bef7..13ce920 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
-## [Unreleased]
+## [4.4.0] - 2019-10-09
### Added
- Users can confirm passwords
- Support Nextcloud password_policy
@@ -134,7 +134,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed
- Supported version of ownCloud, Nextcloud: ownCloud 10, Nextcloud 12
-[Unreleased]: https://github.com/nextcloud/user_sql/compare/v4.3.0...develop
+[4.4.0]: https://github.com/nextcloud/user_sql/compare/v4.3.0...v4.4.0
[4.3.0]: https://github.com/nextcloud/user_sql/compare/v4.2.1...v4.3.0
[4.2.1]: https://github.com/nextcloud/user_sql/compare/v4.2.0...v4.2.1
[4.2.0]: https://github.com/nextcloud/user_sql/compare/v4.1.0...v4.2.0
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 2de05d9..2b9e4b0 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -8,7 +8,7 @@
Retrieve the users and groups info. Allow the users to change their passwords.
Sync the users' email addresses with the addresses stored by Nextcloud.
</description>
- <version>4.4.0-dev</version>
+ <version>4.4.0</version>
<licence>agpl</licence>
<author>Marcin Łojewski</author>
<author>Andreas Böhler</author>
diff --git a/js/settings.js b/js/settings.js
index cf49ac5..da1f8b7 100644
--- a/js/settings.js
+++ b/js/settings.js
@@ -119,7 +119,7 @@ user_sql.adminSettingsUI = function () {
);
autocomplete(
- "#db-table-user-column-uid, #db-table-user-column-email, #db-table-user-column-quota, #db-table-user-column-home, #db-table-user-column-password, #db-table-user-column-name, #db-table-user-column-active, #db-table-user-column-avatar, #db-table-user-column-salt",
+ "#db-table-user-column-uid, #db-table-user-column-email, #db-table-user-column-quota, #db-table-user-column-home, #db-table-user-column-password, #db-table-user-column-name, #db-table-user-column-active, #db-table-user-column-disabled, #db-table-user-column-avatar, #db-table-user-column-salt",
"/apps/user_sql/settings/autocomplete/table/user"
);