Skip to content

Commit 07ffc56

Browse files
DerDreschnerbackportbot[bot]
authored andcommitted
fix(Groupware): Apply continuous version schema for groupware apps (following RFC)
fix(Groupware): Apply continuous version schema for groupware apps (following RFC) Signed-off-by: David Dreschner <david.dreschner@nextcloud.com> [skip ci]
1 parent 4b14c80 commit 07ffc56

8 files changed

Lines changed: 47 additions & 47 deletions

File tree

admin_manual/groupware/calendar.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ calendar, and sending email notifications about upcoming events.
1212
.. figure:: images/settings_calendar-server.png
1313
:scale: 60%
1414

15-
.. versionadded:: 30 The section will be hidden if no app makes use of the CalDAV backend.
15+
.. versionadded:: 30.0.0 The section will be hidden if no app makes use of the CalDAV backend.
1616

1717
Starting from Nextcloud 30, the calendar server settings section will be hidden if no app uses the
1818
CalDAV backend.

admin_manual/groupware/contacts.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Nextcloud ships a CardDAV backend for users to store and share their address boo
99
System Address Book
1010
-------------------
1111

12-
.. versionchanged:: 27
12+
.. versionchanged:: 27.0.0
1313
The system address book is now accessible to all Nextcloud users
1414

1515
Nextcloud maintains a read-only address book containing contact information of all users of the instance.
@@ -57,7 +57,7 @@ The address book is updated automatically with every added, modified, disabled o
5757
Shared items
5858
------------
5959

60-
.. versionadded:: 5.5.0
60+
.. versionadded:: 5.5.0 Nextcloud 25 or newer
6161

6262
For this feature, the shipped `related resources app <https://apps.nextcloud.com/apps/related_resources>`_ needs to be enabled.
6363

admin_manual/groupware/mail.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ Users can share mailboxes with each other. So far, there is no UI for users to c
197197
User Interface Preference Defaults
198198
----------------------------------
199199

200-
.. versionadded:: 5.2
200+
.. versionadded:: 5.2 Nextcloud 30 or newer
201201

202202
The Mail app allows administrators to set default user interface preferences for all users, these preferences can be changed by the user afterwards. This can be useful to ensure a consistent experience across the application.
203203

@@ -224,7 +224,7 @@ Administration settings > Groupware > Mail app > Enable text processing through
224224
Thread Summary
225225
--------------
226226

227-
.. versionchanged:: 3.6.0
227+
.. versionchanged:: 3.6.0 Nextcloud 26 or newer
228228
This configuration option was merged into :ref:`mail_llm_processing`
229229

230230
The mail app supports summarizing message threads that contain 3 or more messages.
@@ -238,7 +238,7 @@ Administration settings > Groupware > Mail app > Enable thread summary
238238
Follow-up reminders
239239
-------------------
240240

241-
.. versionadded:: 4.0
241+
.. versionadded:: 4.0 Nextcloud 30 or newer
242242

243243
The Mail app will automatically remind users when their outgoing emails remain unanswered for
244244
multiple days.
@@ -249,14 +249,14 @@ The feature can be enabled through the global :ref:`mail_llm_processing` setting
249249
Translation
250250
-----------
251251

252-
.. versionadded:: 4.2
252+
.. versionadded:: 4.2 Nextcloud 30 or newer
253253

254254
The mail app can optionally provide translations for messages if the :ref:`translation API <machine_translation>` is enabled.
255255

256256
User migration
257257
--------------
258258

259-
.. versionadded:: 5.9
259+
.. versionadded:: 5.9 Nextcloud 30 or newer
260260

261261
.. important::
262262
The `User Migration App <https://apps.nextcloud.com/apps/user_migration>`_ must be installed and enabled on both

admin_manual/groupware/troubleshooting.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ The Nextcloud Mail app offers an extensive logging system to make it easier iden
161161

162162
Per mail account
163163
~~~~~~~~~~~~~~~~
164-
.. versionadded:: 5.1.0
164+
.. versionadded:: 5.1.0 Nextcloud 30 or newer
165165

166166
Starting with version 5.1.0 of the mail app, you can enable logging of outgoing IMAP/SMTP/Sieve connections limited to a specific mail account. As that saves a lot of resources on your system, this is the preferred method for debugging issues regarding IMAP/SMTP/Sieve connections.
167167

@@ -185,7 +185,7 @@ Globally
185185
~~~~~~~~
186186
This enables logging of the IMAP/SMTP/Sieve connections for **all** mail accounts configured on the server. This should be used with caution as it can put a lot of strain on large environments.
187187

188-
.. versionadded:: 5.1.0
188+
.. versionadded:: 5.1.0 Nextcloud 30 or newer
189189

190190
To enable the global debug logging on versions 5.1.0 and above, just run the following command on the server:
191191

@@ -202,7 +202,7 @@ The global debug logging can be disabled once you've collected the necessary dat
202202
sudo -E -u www-data php occ config:system:set app.mail.debug --value false --type bool
203203

204204
.. note:: The following steps only apply to version 1.6.2 up to 5.0.8. Restrict logging of outgoing connections to a specific mail account is not available there.
205-
.. versionadded:: 1.6.2
205+
.. versionadded:: 1.6.2 Nextcloud 20 or newer
206206

207207
To enable the global debug logging, it's necessary to enable both the debug mode as well as debug logging for the whole nextcloud instance by running the following commands on the server:
208208

developer_manual/digging_deeper/groupware/calendar_provider.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Please be aware that there are some security considerations to take into account
9595
Access through CalDAV
9696
~~~~~~~~~~~~~~~~~~~~~
9797

98-
.. versionadded:: 27
98+
.. versionadded:: 27.0.0
9999

100100
As with the built-in calendars, calendars provided by ``ICalendarProvider`` can be accessed using CalDAV. Therefore, permissions of the ``ICalendar`` are automatically mapped to the DAV object.
101101
Write support is also supported. Please note that deleting entities is currently implemented by setting the entity to the canceled state and passing it to the ``createFromString`` method.

user_manual/groupware/calendar.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ Finished. Your calendar subscriptions will be updated regularly.
175175
Subscribe to a Holiday Calendar
176176
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
177177

178-
.. versionadded:: 4.4
178+
.. versionadded:: 4.4 Nextcloud 25 or newer
179179

180180
You can subscribe to a read-only holiday calendar provided by `Thunderbird <https://www.thunderbird.net/calendar/holidays/>`_.
181181

@@ -252,7 +252,7 @@ Attendees may be other users on your Nextcloud instances, contacts in your addre
252252
.. figure:: images/calendar_event_invitation_level.png
253253
:scale: 80%
254254

255-
.. versionchanged:: 25
255+
.. versionchanged:: 25.0.0
256256
Attendee email response links no longer offer inputs to add a comment or invite additional guests to the event.
257257

258258
.. tip:: When adding other Nextcloud users as attendees to an event, you may access their free-busy information if available, helping you determine when the best time slot for your event is. Set your :ref:`working hours<calendar-working-hours>` to let others know when you are available. Free-busy information is only available for other users on the same Nextcloud instance.
@@ -289,7 +289,7 @@ Similar to attendees you can add rooms and resources to your events. The system
289289

290290
Room availability
291291
~~~~~~~~~~~~~~~~~
292-
.. versionadded:: 5.0
292+
.. versionadded:: 5.0 Nextcloud 30 or newer
293293

294294
If the "Calendar Rooms and Resources" app is installed on your instance, you can now find ``Room availability`` the ``Resources`` section. It lists all the existing rooms. You can check the availability of each room in a manner similar to checking the free/busy status of event attendees.
295295

@@ -494,7 +494,7 @@ You can create a Talk room directly from the calendar app for a booked appointme
494494
Proposals
495495
---------
496496

497-
.. versionadded:: 6.0.0
497+
.. versionadded:: 6.0 Nextcloud 32 or newer
498498

499499
Finding a meeting time for a group of participants can be challenging. As of Calendar v6, a new feature was introduced that allows users to create proposals for meeting times.
500500
This means that instead of just booking a time, or searching for a available time in the free busy view, participants can vote on a set of proposed times for a meeting.

user_manual/groupware/contacts.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ When this option is enabled, the team can no longer be directly added as a membe
246246

247247
Shared items
248248
~~~~~~~~~~~~
249-
.. versionadded:: 5.5
249+
.. versionadded:: 5.5 Nextcloud 25 or newer
250250

251251
.. figure:: ./images/shared-items.png
252252

0 commit comments

Comments
 (0)