Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): Add 29 compatibility #50

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## 1.1.0 - 2024-03-08
### Added
- Nextcloud 29 compatibility

## 1.0.1 - 2023-12-13
### Added
- Added an OCC command to repair the bot
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ 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

> [!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
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,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.0.1</version>
<version>1.1.0</version>
<licence>agpl</licence>

<author>Joas Schilling</author>
Expand All @@ -26,7 +26,7 @@
<screenshot>https://raw.githubusercontent.com/nextcloud/call_summary_bot/main/docs/screenshot.png</screenshot>

<dependencies>
<nextcloud min-version="27" max-version="28" />
<nextcloud min-version="27" max-version="29" />
</dependencies>

<repair-steps>
Expand Down
Loading