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-07-26 17:34:17 +0300
committerMarcel Klehr <mklehr@gmx.net>2021-07-26 17:34:17 +0300
commit3eee019e265c9bbffde232a62375b63a6605b217 (patch)
treed83713b8a7fbda178c4acccd0bbb1006c4988000
parent167650a6deb0602e2524461c607d99d36028e6aa (diff)
v4.4.0v4.4.0
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
-rw-r--r--CHANGELOG.md15
-rw-r--r--Makefile2
-rw-r--r--appinfo/info.xml2
-rw-r--r--package.json2
4 files changed, 18 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e98c72be..820b5773 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,20 @@ 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.4.0] - 2021-07-26
+
+### New
+- Use webpack code splitting for faster loading times
+- bookmark endpoint: Improve performance by introducing supporting query
+- DB: Add new composite index for bookmarks_shared_folders (performance optimzation)
+- Switch to npm7 and use latests global configs
+
+### Fixed
+ - NoBookmarks view: Don't display import and sync buttons in public view
+ - Fix: Adding same bookmark second time removes preexisting tags
+ - Fix input.focus error
+ - Fix hash endpoint: Allow hashing with tags
+
## [4.3.0] - 2021-07-18
### New
@@ -580,6 +594,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.4.0]: https://github.com/nextcloud/bookmarks/compare/v4.3.0...v4.4.0
[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
diff --git a/Makefile b/Makefile
index eb8ccb6c..9e2e1e17 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.3.0
+version+=4.4.0
all: dev-setup build-js-production composer-no-dev
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 17877cb7..a7057bbd 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -17,7 +17,7 @@ Requirements:
- mbstring: *
- Nextcloud v20+
]]></description>
- <version>4.3.0</version>
+ <version>4.4.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 3ebbe0eb..07a5992b 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "bookmarks",
- "version": "4.3.0",
+ "version": "4.4.0",
"main": "js/index.js",
"scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.js",