1
0
mirror of https://github.com/nerzhul/ocsms.git synced 2025-06-07 16:06:15 +00:00

Release 1.11.2

* Rename to Nextcloud SMS (TEMP)
* Add screenshot for appstore
This commit is contained in:
Loic Blot 2016-12-15 09:24:06 +01:00
parent 218a3e61d4
commit 28fd2f91ee
4 changed files with 4 additions and 3 deletions

View File

@ -2,12 +2,12 @@
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>ocsms</id>
<name>ownCloud SMS</name>
<name>Nextcloud SMS</name>
<summary>An app to sync SMS with your cloud</summary>
<description>An app to sync SMS with your cloud</description>
<licence>agpl</licence>
<author homepage="https://www.unix-experience.fr">Loic Blot</author>
<version>1.11.1</version>
<version>1.11.2</version>
<category>multimedia</category>
<category>tools</category>
<dependencies>
@ -21,6 +21,7 @@
<website>https://github.com/nerzhul/ocsms</website>
<bugs>https://github.com/nerzhul/ocsms/issues</bugs>
<repository type="git">https://github.com/nerzhul/ocsms</repository>
<screenshot small-thumbnail="https://raw.githubusercontent.com/nerzhul/ocsms/master/screenshots/1-small.png">https://raw.githubusercontent.com/nerzhul/ocsms/master/screenshots/1.png</screenshot>
<repair-steps>
<post-migration>

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

BIN
appinfo/screenshots/1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

View File

@ -153,7 +153,7 @@ class SmsMapper extends Mapper {
$query = \OCP\DB::prepare('SELECT sms_address, sms_date, sms_msg, sms_type, sms_mailbox FROM ' .
'*PREFIX*ocsms_smsdatas WHERE user_id = ? AND sms_date > ? ORDER BY sms_date LIMIT ?');
$result = $query->execute(array($userId, $start, $limit));
$result = $query->execute(array($userId, $start, (int) $limit));
while ($row = $result->fetchRow()) {
$messageList[$row["sms_date"]] = array(
"address" => $row["sms_address"],