diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f065ec4..ccdc3bd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file. +## 4.7.4 +### Fixes +* fix(invite): send welcome email when creating guest from share dialog by @pringelmann in https://github.com/nextcloud/guests/pull/1566 + ## 4.7.3 ### Fixes * fix: apply username from backend instead of guessing by @susnux in https://github.com/nextcloud/guests/pull/1571 diff --git a/appinfo/info.xml b/appinfo/info.xml index de1e1aa8..2a482c7c 100755 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -14,7 +14,7 @@ Guests accounts can be created from the share menu by entering either the recipients email or name and choosing "create guest account", once the share is created the guest user will receive an email notification about the mail with a link to set their password. Guests users can only access files shared to them and cannot create any files outside of shares, additionally, the apps accessible to guest accounts are whitelisted.]]> - 4.7.3 + 4.7.4 agpl Nextcloud diff --git a/package-lock.json b/package-lock.json index de90badb..010b81c9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "guests", - "version": "4.7.3", + "version": "4.7.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "guests", - "version": "4.7.3", + "version": "4.7.4", "license": "agpl", "dependencies": { "@mdi/svg": "^7.4.47", diff --git a/package.json b/package.json index 08277784..420f86a4 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "guests", "description": "Create guest users which can only see files shared with them", - "version": "4.7.3", + "version": "4.7.4", "type": "module", "author": "Robin Appelman ", "contributors": [ diff --git a/src/views/GuestForm.vue b/src/views/GuestForm.vue index 5ca38faf..e3d4aba3 100644 --- a/src/views/GuestForm.vue +++ b/src/views/GuestForm.vue @@ -230,7 +230,6 @@ export default { email: this.guest.email, language: this.guest.language, groups: this.guest.groups, - sendInvite: this.integrationApp !== 'files', }) // ensure the username is set - we do not know it in advance as it is generated by the backend