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>2019-10-06 00:50:43 +0300
committerMarcel Klehr <mklehr@gmx.net>2019-10-06 00:50:43 +0300
commit0913e3bf6c9a72a6d1416bf825619164e6f6c32d (patch)
tree29a148fe41889a9c381320bf5c20fd6ab1900bd0
parentd8c8dcd52e34ce52d42ee45915ed55b042534c3b (diff)
v2.2.0v2.2.0
-rw-r--r--CHANGELOG.md18
-rw-r--r--Makefile2
-rw-r--r--appinfo/info.xml2
-rw-r--r--package-lock.json2
-rw-r--r--package.json2
5 files changed, 22 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5616ed97..f2ca7309 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,21 @@
+## v2.2.0
+
+- NEW: Use routes history mode instead of hash URLs
+- FIX: Sort folders alphabetically
+- FIX: Allow canceling page fetches
+- FIX: Import
+- UI: Fixgrid view, descriptions in list view & bread crumbs
+
+## v2.1.1
+
+- FIX: Fix build script
+
+## v2.1.0
+
+- NEW: Rewrite UI
+- NEW: Allow limiting the number of bookmarks per user
+- NEW: Allow disabling web requests to bookmarked web pages
+
## v2.0.3
- NEW: Properly specify dependencies in app manifest (allows conditional support for nc 15 again)
diff --git a/Makefile b/Makefile
index 53f57c1d..f63ef0b6 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+=2.1.1
+version+=2.2.0
all: dev-setup lint build-js-production test test-php
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 561a9fb5..7d26a481 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -9,7 +9,7 @@ This app provides you with a web interface for collecting and organizing bookmar
Check out the third-party clients listed here: https://github.com/nextcloud/bookmarks#third-party-clients
]]></description>
- <version>2.1.1</version>
+ <version>2.2.0</version>
<licence>agpl</licence>
<author mail="blizzz@arthur-schiwon.de" homepage="https://www.arthur-schiwon.de">Arthur Schiwon</author>
<author mail="mklehr@gmx.net">Marcel Klehr</author>
diff --git a/package-lock.json b/package-lock.json
index da271344..11d93c97 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "bookmarks",
- "version": "2.1.1",
+ "version": "2.2.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index ec045e1f..9169137a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "bookmarks",
- "version": "2.1.1",
+ "version": "2.2.0",
"main": "js/index.js",
"scripts": {
"dev": "webpack --config webpack.dev.js",