mirror of
https://github.com/MetaProvide/talked-client.git
synced 2025-05-12 03:41:58 +00:00
Compare commits
No commits in common. "master" and "v0.4.0" have entirely different histories.
3 changed files with 4 additions and 10 deletions
|
@ -2,12 +2,6 @@
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
## 0.5.0 - 2023-02-03
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
- Support for Nextcloud 25 (Requires v0.5.0 of Talked server)
|
|
||||||
|
|
||||||
## 0.4.0 - 2022-05-19
|
## 0.4.0 - 2022-05-19
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -65,7 +65,7 @@ To use Talked, simply use the `/recording` command in a chat room. If you don't
|
||||||
* `/recording info` - prints the version number of the Talked server.
|
* `/recording info` - prints the version number of the Talked server.
|
||||||
* `/recording help` - prints a help message with the different options.
|
* `/recording help` - prints a help message with the different options.
|
||||||
]]></description>
|
]]></description>
|
||||||
<version>0.5.0</version>
|
<version>0.4.0</version>
|
||||||
<licence>agpl</licence>
|
<licence>agpl</licence>
|
||||||
<author mail="mw@mwalbeck.org">Magnus Walbeck</author>
|
<author mail="mw@mwalbeck.org">Magnus Walbeck</author>
|
||||||
<namespace>Talked</namespace>
|
<namespace>Talked</namespace>
|
||||||
|
@ -75,7 +75,7 @@ To use Talked, simply use the `/recording` command in a chat room. If you don't
|
||||||
<bugs>https://github.com/MetaProvide/talked-client/issues</bugs>
|
<bugs>https://github.com/MetaProvide/talked-client/issues</bugs>
|
||||||
<repository>https://github.com/MetaProvide/talked-client.git</repository>
|
<repository>https://github.com/MetaProvide/talked-client.git</repository>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<nextcloud min-version="22" max-version="25"/>
|
<nextcloud min-version="22" max-version="24"/>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<commands>
|
<commands>
|
||||||
<command>OCA\Talked\Command\Record</command>
|
<command>OCA\Talked\Command\Record</command>
|
||||||
|
|
|
@ -158,7 +158,7 @@ You have the following options available:
|
||||||
|
|
||||||
curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER, true);
|
curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER, true);
|
||||||
curl_setopt($curlHandle, CURLOPT_HTTPHEADER, $headers);
|
curl_setopt($curlHandle, CURLOPT_HTTPHEADER, $headers);
|
||||||
curl_setopt($curlHandle, CURLOPT_TIMEOUT, 60);
|
curl_setopt($curlHandle, CURLOPT_TIMEOUT, 30);
|
||||||
curl_setopt($curlHandle, CURLOPT_CONNECTTIMEOUT, 10);
|
curl_setopt($curlHandle, CURLOPT_CONNECTTIMEOUT, 10);
|
||||||
$result = curl_exec($curlHandle);
|
$result = curl_exec($curlHandle);
|
||||||
$curlErrorCode = curl_errno($curlHandle);
|
$curlErrorCode = curl_errno($curlHandle);
|
||||||
|
@ -190,7 +190,7 @@ You have the following options available:
|
||||||
curl_setopt($curlHandle, CURLOPT_POST, true);
|
curl_setopt($curlHandle, CURLOPT_POST, true);
|
||||||
curl_setopt($curlHandle, CURLOPT_POSTFIELDS, json_encode($payload));
|
curl_setopt($curlHandle, CURLOPT_POSTFIELDS, json_encode($payload));
|
||||||
curl_setopt($curlHandle, CURLOPT_HTTPHEADER, $headers);
|
curl_setopt($curlHandle, CURLOPT_HTTPHEADER, $headers);
|
||||||
curl_setopt($curlHandle, CURLOPT_TIMEOUT, 60);
|
curl_setopt($curlHandle, CURLOPT_TIMEOUT, 30);
|
||||||
curl_setopt($curlHandle, CURLOPT_CONNECTTIMEOUT, 10);
|
curl_setopt($curlHandle, CURLOPT_CONNECTTIMEOUT, 10);
|
||||||
$result = curl_exec($curlHandle);
|
$result = curl_exec($curlHandle);
|
||||||
$curlErrorCode = curl_errno($curlHandle);
|
$curlErrorCode = curl_errno($curlHandle);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue