Skip to content

Commit

Permalink
chore(release): Release 2.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed Sep 16, 2024
1 parent 28a9d0a commit 4d844a2
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 15 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Changelog
All notable changes to this project will be documented in this file.

## 2.0.0 - 2024-07-25
### Added
- Agenda: You can now collect topics for the agenda list before the call and the bot will post it once the call was started
- Reports, Notes and Decisions: You can now post additional bullet-list items that are summarized at the end of the call
- Timezone: Admins can now configure a timezone for the summary messages

### Fixed
- Add a note for federated users and guests in the attendee list

## 1.2.0 - 2024-07-25
### Added
- Nextcloud 30 compatibility
Expand Down
23 changes: 13 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ The call summary bot posts an overview message after the call listing all partic
### Before a call

- The bot can be used to also collect agenda points and topics with the following keywords:
- `agenda`
- `topic`
- `top`
- `- agenda`
- `- topic`
- `- top`
- You can also post multiple tasks in a single message, just put each on its own line starting with a keyword

![Screenshot showing the agenda being posted when the call was started](docs/agenda.png)

### During a call

- Any message starting with a Markdown checkbox or a keyword during a call will be recognized and used in the summary:
Expand All @@ -23,22 +25,23 @@ The call summary bot posts an overview message after the call listing all partic
- You can also post multiple tasks in a single message, just put each on its own line starting with a keyword
- At the end of the call, the bot will summarize it and list all the attendees as well as the tasks in a markdown chat message

![Screenshot showing the chat log](docs/chatlog.png)

> [!TIP]
> By default, the call summary will use UTC timezone for dates and times, as it has to be the same for all users at the moment.
> If most of your users are from the same timezone, you can set a default timezone:
> ```shell
> sudo -u www-data php occ config:app:set 'call_summary_bot' 'timezone' --value 'Europe/Berlin'
> ```
![Screenshot showing the call summary message](docs/screenshot.png)
## Installation
Since this bot is written as a Nextcloud app, simply search for "Call summary bot" in the app list of your Nextcloud server, or download it manually from the [App store](https://apps.nextcloud.com/apps/call_summary_bot)
> [!NOTE]
> By default, only calls lasting at least 60 seconds are summarized. For easier quick testing this can be reduced to 0 seconds with the following command:
> ```shell
> sudo -u www-data php occ config:app:set 'call_summary_bot' 'min-length' --value '0'
> ```
![Screenshot showing a call summary chat message](docs/screenshot.png)
## Installation
Since this bot is written as a Nextcloud app, simply search for "Call summary bot" in the app list of your Nextcloud server, or download it manually from the [App store](https://apps.nextcloud.com/apps/call_summary_bot)
11 changes: 6 additions & 5 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<description><![CDATA[### Before a call
- The bot can be used to also collect agenda points and topics with the following keywords:
- `agenda`
- `topic`
- `top`
- `- agenda`
- `- topic`
- `- top`
- You can also post multiple tasks in a single message, just put each on its own line starting with a keyword
### During a call
Expand All @@ -23,7 +23,7 @@
- You can also post multiple tasks in a single message, just put each on its own line starting with a keyword
- At the end of the call, the bot will summarize it and list all the attendees as well as the tasks in a markdown chat message]]></description>

<version>1.3.0-dev.0</version>
<version>2.0.0</version>
<licence>agpl</licence>

<author>Joas Schilling</author>
Expand All @@ -39,9 +39,10 @@
<repository>https://github.com/nextcloud/call_summary_bot.git</repository>

<screenshot>https://raw.githubusercontent.com/nextcloud/call_summary_bot/main/docs/screenshot.png</screenshot>
<screenshot>https://raw.githubusercontent.com/nextcloud/call_summary_bot/main/docs/agenda.png</screenshot>

<dependencies>
<nextcloud min-version="28" max-version="31" />
<nextcloud min-version="28" max-version="30" />
</dependencies>

<repair-steps>
Expand Down
Binary file added docs/agenda.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/chatlog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 4d844a2

Please sign in to comment.