Releases: kiwilan/php-opds
Releases · kiwilan/php-opds
v2.1.0
v2.0.11
OpdsConfig::class
:isForceJson()
is nowisUseForceJson()
,forceExit
property allow to forceexit
on response sending, you can use constructor orforceExit()
method to set it (default isfalse
)OpdsResponse::class
:forceExit
property can be set withforceExit()
method (default isfalse),
send()method can use
exitparameter to override global
forceExitproperty, of course if
OpdsConfig::classproperty is
truethen
forceExit` will be true
v2.0.10
v2.0.0
Breaking changes
- Add
OpdsPaginate::class
based on #40 from @mikespub to handle manual pagination for issue #38 Opds
methodsend()
have now a new parameterbool $exit = false
to control if the script should exit after sending the response to replacebool $mock = false
parameter. By default,send()
will not exit the script.- Merge paginator with
paginate()
method, if you not set any parameter, it will generate pagination, if you setOpdsPaginate
object, it will generate pagination based on it - Remove
usePagination
anduseAutoPagination
fromOpdsConfig
class, now you can usepaginate()
method to handle pagination
Misc
OpdsConfig::class
can have nullableupdated
attribute
v1.0.30
v1.0.23
- Fix XML search, when some feeds present switch to feed
v1.0.22
- Fix XML search page root
v1.0.21
v1.0.2
Features by @mikespub and some bugfixes
- Update
OpdsJsonEngine
to use these options for OPDS 2.0 output - OPDS 1.2 was not adapted in this PR by @mikespub - Add
properties
option forOpdsEntryNavigation
to include extra properties (like numberOfItems for facets) by @mikespub - Add
relation
option forOpdsEntryNavigation
to specify the relation to use (instead ofcurrent
) by @mikespub - Add
identifier
option forOpdsEntryBook
to specify the actual identifier to use (instead ofurn:isbn:...
) by @mikespub - Fix XML links
type
attribute - Add
paginationQuery
property toOpdsConfig
to specify the query parameter for pagination (default:page
) - Fix bug with paginator when using
page
query parameter #30
v1.0.1
- Add
useAutoPagination
option forOpdsConfig
to enable/disable auto pagination (works only forOpdsEntryBook
)