Skip to content

Commit

Permalink
v11.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
  • Loading branch information
marcelklehr committed Jul 27, 2022
1 parent ac14f1c commit f88683d
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 18 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ 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).

## [11.0.0] - 2022-06-24

### Changed

- BookmarkMapper#findAll: Implement recursive query

### Breaking changes
- Breaks compatibility with MySQL 5.7, MySQL 8 is now required

### New

- Implement virtual scrolling
- First load time improvement: Load settings using initial state
- Bookmark: Show globe symbol while loading screenshot

### Fixed
- BgJob: Do not check notes if user has no bookmarks
- UI: Better sizing of Bookmark fallback background
- UI: Fix Item alignment in list view

## [10.5.1] - 2022-06-24

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

## [10.4.0] - 2022-06-08

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.1
version+=11.0.0

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

Expand Down
10 changes: 5 additions & 5 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
- 💼 Built-in Dashboard widgets for frequent and recent links
Requirements:
- PHP v7.3+
- PHP v7.4+
- PHP extensions:
- intl: *
- mbstring: *
- Nextcloud v20+
- when using MySQL, use at least v8.0
]]></description>
<version>10.5.1</version>
<version>11.0.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>
Expand All @@ -36,9 +36,9 @@ Requirements:
<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>

<dependencies>
<php min-version="7.3" />
<php min-version="7.4" />
<database>sqlite</database>
<database>mysql</database>
<database min-version="8.0">mysql</database>
<database>pgsql</database>
<lib>intl</lib>
<lib>mbstring</lib>
Expand Down
28 changes: 17 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bookmarks",
"version": "10.5.1",
"version": "11.0.0",
"main": "js/index.js",
"scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.js",
Expand Down

0 comments on commit f88683d

Please sign in to comment.