Skip to content

Commit f88683d

Browse files
committed
v11.0.0
Signed-off-by: Marcel Klehr <[email protected]>
1 parent ac14f1c commit f88683d

File tree

5 files changed

+47
-18
lines changed

5 files changed

+47
-18
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [11.0.0] - 2022-06-24
8+
9+
### Changed
10+
11+
- BookmarkMapper#findAll: Implement recursive query
12+
13+
### Breaking changes
14+
- Breaks compatibility with MySQL 5.7, MySQL 8 is now required
15+
16+
### New
17+
18+
- Implement virtual scrolling
19+
- First load time improvement: Load settings using initial state
20+
- Bookmark: Show globe symbol while loading screenshot
21+
22+
### Fixed
23+
- BgJob: Do not check notes if user has no bookmarks
24+
- UI: Better sizing of Bookmark fallback background
25+
- UI: Fix Item alignment in list view
26+
727
## [10.5.1] - 2022-06-24
828

929
### Fixed
@@ -21,6 +41,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2141
- CrawlService: Make sure archived files always have a file ext
2242
- Fix BackupJob check
2343
- BookmarkMapper#findAll: Implement recursive query. Should fix some performance problems
44+
- BookmarksList: Do not show FirstRun view when on public link
45+
- Fix COPY_SELECTION to not remove bookmark
46+
- FirstRun view: Fix button style
2447

2548
## [10.4.0] - 2022-06-08
2649

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ source_dir=$(build_dir)/source
77
sign_dir=$(build_dir)/sign
88
package_name=$(app_name)
99
cert_dir=$(HOME)/.nextcloud/certificates
10-
version+=10.5.1
10+
version+=11.0.0
1111

1212
all: dev-setup build-js-production composer-no-dev
1313

appinfo/info.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
- 💼 Built-in Dashboard widgets for frequent and recent links
1818
1919
Requirements:
20-
- PHP v7.3+
20+
- PHP v7.4+
2121
- PHP extensions:
2222
- intl: *
2323
- mbstring: *
24-
- Nextcloud v20+
24+
- when using MySQL, use at least v8.0
2525
]]></description>
26-
<version>10.5.1</version>
26+
<version>11.0.0</version>
2727
<licence>agpl</licence>
2828
<author mail="[email protected]">Marcel Klehr</author>
2929
<author mail="[email protected]" homepage="https://www.arthur-schiwon.de">Arthur Schiwon</author>
@@ -36,9 +36,9 @@ Requirements:
3636
<screenshot small-thumbnail="https://raw.githubusercontent.com/nextcloud/bookmarks/master/screenshots/Bookmarks-small.png">https://raw.githubusercontent.com/nextcloud/bookmarks/master/screenshots/Bookmarks.png</screenshot>
3737

3838
<dependencies>
39-
<php min-version="7.3" />
39+
<php min-version="7.4" />
4040
<database>sqlite</database>
41-
<database>mysql</database>
41+
<database min-version="8.0">mysql</database>
4242
<database>pgsql</database>
4343
<lib>intl</lib>
4444
<lib>mbstring</lib>

package-lock.json

Lines changed: 17 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bookmarks",
3-
"version": "10.5.1",
3+
"version": "11.0.0",
44
"main": "js/index.js",
55
"scripts": {
66
"build": "NODE_ENV=production webpack --progress --config webpack.js",

0 commit comments

Comments
 (0)