From c3be1330952a26cb1e8457ce774bebe9f09ab890 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Wed, 22 Jun 2022 13:56:19 +0200 Subject: [PATCH] v10.5.0 Signed-off-by: Marcel Klehr --- CHANGELOG.md | 12 ++++++++++++ Makefile | 2 +- appinfo/info.xml | 2 +- package.json | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a547b93a5..0099b08959 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ 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). +## [10.5.0] - 2022-06-22 + +### New +- Add ClearPreviews command +- UI: Implement folder tree in AppContentList + +### Fixed +- UI: Add "K" to bookmarks count +- CrawlService: Make sure archived files always have a file ext +- Fix BackupJob check +- BookmarkMapper#findAll: Implement recursive query. Should fix some performance problems + ## [10.4.0] - 2022-06-08 ### New diff --git a/Makefile b/Makefile index 02ccf79ee6..580dc04158 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ source_dir=$(build_dir)/source sign_dir=$(build_dir)/sign package_name=$(app_name) cert_dir=$(HOME)/.nextcloud/certificates -version+=10.4.0 +version+=10.5.0 all: dev-setup build-js-production composer-no-dev diff --git a/appinfo/info.xml b/appinfo/info.xml index 15e7873777..2f7a0e999a 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -23,7 +23,7 @@ Requirements: - mbstring: * - Nextcloud v20+ ]]> - 10.4.0 + 10.5.0 agpl Marcel Klehr Arthur Schiwon diff --git a/package.json b/package.json index 43882c4f3e..31f1ccf567 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bookmarks", - "version": "10.4.0", + "version": "10.5.0", "main": "js/index.js", "scripts": { "build": "NODE_ENV=production webpack --progress --config webpack.js",