Skip to content

Commit 4356a5a

Browse files
committed
Ver.20 Release. The limit and range parameters issues.
1 parent 618e21a commit 4356a5a

3 files changed

Lines changed: 15 additions & 10 deletions

File tree

FMDataAPI.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Object-oriented class for the REST API in FileMaker Server 18/Cloud.
55
*
6-
* @version 19.0
6+
* @version 20.0
77
* @author Masayuki Nii <nii@msyk.net>
88
* @copyright 2017-2019 Masayuki Nii (FileMaker is registered trademarks of FileMaker, Inc. in the U.S. and other countries.)
99
*/
@@ -21,7 +21,7 @@
2121
* @link https://github.com/msyk/FMDataAPI GitHub Repository
2222
* @property-read FileMakerLayout $<<layout_name>> Returns the FileMakerLayout object from the layout named with the property.
2323
* If the layout doesn't exist, no error arises here. Any errors might arise on methods of FileMakerLayout class.
24-
* @version 19
24+
* @version 20
2525
* @author Masayuki Nii <nii@msyk.net>
2626
* @copyright 2017-2019 Masayuki Nii (FileMaker is registered trademarks of FileMaker, Inc. in the U.S. and other countries.)
2727
* @source 1 100000 The source code.
@@ -363,7 +363,7 @@ public function getReturnedCount()
363363
*
364364
* @package INTER-Mediator\FileMakerServer\RESTAPI
365365
* @link https://github.com/msyk/FMDataAPI GitHub Repository
366-
* @version 19
366+
* @version 20
367367
* @author Masayuki Nii <nii@msyk.net>
368368
* @copyright 2017-2019 Masayuki Nii (FileMaker is registered trademarks of FileMaker, Inc. in the U.S. and other countries.)
369369
*/
@@ -669,7 +669,7 @@ public function duplicate($recordId, $script = null)
669669
throw $e;
670670
}
671671
}
672-
672+
673673
/**
674674
* Delete on record.
675675
* @param int $recordId The valid recordId value to delete.
@@ -961,7 +961,7 @@ public function getScriptResultPresort()
961961
* @property string $<<field_name>> The field value named as the property name.
962962
* @property FileMakerRelation $<<portal_name>> FileMakerRelation object associated with the property name.
963963
* The table occurrence name of the portal can be the 'portal_name,' and also the object name of the portal.
964-
* @version 19
964+
* @version 02
965965
* @author Masayuki Nii <nii@msyk.net>
966966
* @copyright 2017-2019 Masayuki Nii (FileMaker is registered trademarks of FileMaker, Inc. in the U.S. and other countries.)
967967
*/
@@ -1441,7 +1441,7 @@ public function rewind()
14411441
*
14421442
* @package INTER-Mediator\FileMakerServer\RESTAPI
14431443
* @link https://github.com/msyk/FMDataAPI GitHub Repository
1444-
* @version 19
1444+
* @version 20
14451445
* @author Masayuki Nii <nii@msyk.net>
14461446
* @copyright 2017-2019 Masayuki Nii (FileMaker is registered trademarks of FileMaker, Inc. in the U.S. and other countries.)
14471447
*/

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# FMDataAPI Ver.19 [![Build Status](https://travis-ci.org/msyk/FMDataAPI.svg?branch=master)](https://travis-ci.org/msyk/FMDataAPI)
1+
# FMDataAPI Ver.20 [![Build Status](https://travis-ci.org/msyk/FMDataAPI.svg?branch=master)](https://travis-ci.org/msyk/FMDataAPI)
22

33
by Masayuki Nii (nii@msyk.net)
44

@@ -64,7 +64,7 @@ FMDataAPI has "composer.json," so you can add your composer.json file in your pr
6464
...
6565
"require": {
6666
...
67-
"inter-mediator/fmdataapi":"19"
67+
"inter-mediator/fmdataapi":"20"
6868
} ...
6969
```
7070

@@ -144,6 +144,8 @@ MIT License
144144
Add getTargetTable(), getTotalCount(), getFoundCount(), getReturnedCount() to FMDataAPI class.
145145
- 2019-09-12: [Ver.19]
146146
Add the duplicate() method to the FileMakerLayout class. Thanks to schube.
147+
- 2019-09-16: [Ver.20]
148+
The default values of limit and range parameters are changed to 0 and both just applied for over 0 values. Thanks to schube.
147149

148150
## API Differences between ver.8 and 7.
149151
### FMDataAPI class

composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "inter-mediator/fmdataapi",
3-
"version": "18",
4-
"time": "2019-05-27",
3+
"version": "20",
4+
"time": "2019-09-16",
55
"repositories": [
66
{
77
"type": "git",
@@ -46,6 +46,9 @@
4646
},
4747
{
4848
"name": "Craig Smith (Contributor)"
49+
},
50+
{
51+
"name": "Bernhard Schulz (Contributor)"
4952
}
5053
],
5154
"support": {

0 commit comments

Comments
 (0)