Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2021-07-18 18:48:25 +02:00
parent 3a5ae52d36
commit b98149bc7c
4 changed files with 18 additions and 4 deletions

View File

@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [4.3.0] - 2021-07-18
### New
- Support Nextcloud 22
- New screenshots
### Fixed
- Fix OrphanedTreeItemsRepairStep
- Fix multiselect in sidebar (see #1554)
- Fix uncaught UrlParseErrors (see #1598)
- API: Permission errors now have status 403 instead of 405 (see #1602)
- Add clickcount db index (see #1588)
## [4.2.2] - 2021-06-09
### Fixed
@ -567,6 +580,7 @@ Supported are NC 15 and 16, provided you are using PHP v7.1 and have gmp, intl a
- FIX folder collapse css
- FIX: Speed up findBookmarks SQL query
[4.3.0]: https://github.com/nextcloud/bookmarks/compare/v4.2.2...v4.3.0
[4.2.2]: https://github.com/nextcloud/bookmarks/compare/v4.2.1...v4.2.2
[4.2.1]: https://github.com/nextcloud/bookmarks/compare/v4.2.0...v4.2.1
[4.2.0]: https://github.com/nextcloud/bookmarks/compare/v4.1.0...v4.2.0

View File

@ -7,7 +7,7 @@ source_dir=$(build_dir)/source
sign_dir=$(build_dir)/sign
package_name=$(app_name)
cert_dir=$(HOME)/.nextcloud/certificates
version+=4.2.2
version+=4.3.0
all: dev-setup build-js-production composer-no-dev

View File

@ -17,7 +17,7 @@ Requirements:
- mbstring: *
- Nextcloud v20+
]]></description>
<version>4.2.2</version>
<version>4.3.0</version>
<licence>agpl</licence>
<author mail="mklehr@gmx.net">Marcel Klehr</author>
<author mail="blizzz@arthur-schiwon.de" homepage="https://www.arthur-schiwon.de">Arthur Schiwon</author>
@ -33,7 +33,7 @@ Requirements:
<php min-version="7.3" />
<lib>intl</lib>
<lib>mbstring</lib>
<nextcloud min-version="20" max-version="21" />
<nextcloud min-version="20" max-version="22" />
</dependencies>
<background-jobs>
<job>OCA\Bookmarks\BackgroundJobs\CrawlJob</job>

View File

@ -1,6 +1,6 @@
{
"name": "bookmarks",
"version": "4.2.2",
"version": "4.3.0",
"main": "js/index.js",
"scripts": {
"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.js",