Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/bookmarks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Klehr <mklehr@gmx.net>2021-02-19 13:23:31 +0300
committerMarcel Klehr <mklehr@gmx.net>2021-02-19 13:23:31 +0300
commitab54837a90199844f29dc41f175588f3df3bc8d4 (patch)
tree70339e05095134f0e4ab3030f29a69c5a5e574d8
parent937a360bb880deacafb642f01cacd42c4108e218 (diff)
v4.1.0v4.1.0
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
-rw-r--r--CHANGELOG.md15
-rw-r--r--Makefile2
-rw-r--r--appinfo/info.xml4
-rw-r--r--package.json2
4 files changed, 19 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 048978d5..b2afb089 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,21 @@ 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.1.0] - 2021-02-19
+
+### New
+
+- Bulk tagging
+- Nextcloud 21 support
+
+### Fixed
+- Update translations
+- Run GC on cache dir and add CACHDIR.TAG
+- API: Fix renaming and deleting tags
+- TreeCacheManager: Invalidate sharees when invalidating a folder
+- Fix bookmark notes
+- Enable service worker
+
## [4.0.8] - 2021-01-26
### Fixed
diff --git a/Makefile b/Makefile
index ccad8cb9..d2d7c14c 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+=4.0.8
+version+=4.1.0
all: dev-setup build-js-production composer-no-dev
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 7714437b..0a4bb2d9 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -15,9 +15,9 @@ Requirements:
- PHP extensions:
- intl: *
- mbstring: *
- - Nextcloud v20
+ - Nextcloud v20+
]]></description>
- <version>4.0.8</version>
+ <version>4.1.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>
diff --git a/package.json b/package.json
index 71bf0a3b..4f1a946c 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "bookmarks",
- "version": "4.0.8",
+ "version": "4.1.0",
"main": "js/index.js",
"scripts": {
"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.js",