diff --git a/debian/changelog b/debian/changelog index b634e785..d5ecba97 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,25 @@ +yunohost-admin (3.7.1) stable; urgency=low + + - [fix] Misc fixes for action / config panel (#289, #282) + - [enh] Add a note about some apps that need to be exposed to visitors for external client to work + + -- Alexandre Aubin Thu, 9 April 2020 16:09:00 +0000 + +yunohost-admin (3.7.0.4) stable; urgency=low + + - [enh] Adding easter egg for April first ;) + + -- Alexandre Aubin Web, 01 Apr 2020 00:55:00 +0000 + +yunohost-admin (3.7.0.3) stable; urgency=low + + - [enh] Friendlier / more rewarding messages when everything is up to date + - [i18n] Improve translations for Bengali, Catalan, Chinese, Dutch, Esperanto, French, German, Greek, Hindi, Hungarian, Nepali, Occitan, Polish, Portuguese, Spanish, Turkish + + Thanks to all contributors <3 ! (Abdulkadir F. Ş., Aeris One, amirale qt, Armando F., Gustavo M., Hem S., Jeroen F., Juan, Patrick B., Quentí, xaloc33, Yifei D.) + + -- Alexandre Aubin Fri, 27 Mar 2020 21:15:00 +0000 + yunohost-admin (3.7.0.2) stable; urgency=low - [fix] Disabling security.rss for now diff --git a/debian/control b/debian/control index 77af6c94..d99ee5d7 100644 --- a/debian/control +++ b/debian/control @@ -12,7 +12,7 @@ Architecture: all Conflicts: yunohost-apps-admin Replaces: yunohost-apps-admin Depends: ${misc:Depends} - , yunohost (>= 2.7.6) + , yunohost (>= 3.7) Description: web administration interface for yunohost YunoHost aims to make self-hosting accessible to everyone. It configures an email, Web and IM server alongside a LDAP base. It also provides diff --git a/src/locales/en.json b/src/locales/en.json index 2ef9a749..6d1d5311 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -130,6 +130,7 @@ "group_new": "New group", "group_explain_all_users": "This is a special group containing all users accounts on the server", "group_explain_visitors": "This is a special group representing anonymous visitors", + "group_explain_visitors_needed_for_external_client": "Be careful that you need to keep some applications allowed to visitors if you intend to use them with external clients. For example, this is the case for Nextcloud if you want intend to use a synchronization client on your smartphone or desktop computer.", "group_specific_permissions": "User specific permissions", "groups": "Groups", "groups_and_permissions": "Groups and permissions", diff --git a/src/views/user/group_list.ms b/src/views/user/group_list.ms index a6643f79..932f8f33 100644 --- a/src/views/user/group_list.ms +++ b/src/views/user/group_list.ms @@ -69,6 +69,9 @@
{{#if special}}
{{t (concat 'group_explain_' @key)}}
+ {{#if (eq @key 'visitors')}} +
{{t 'group_explain_visitors_needed_for_external_client'}}
+ {{/if}} {{else}} {{> labelsLine display=../displayUser icon="user" type="member" items=members inv=membersInv group=@key}} {{/if}}