Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2022-12-13 16:43:57 +01:00
parent ecd123c393
commit 2b15575a87
4 changed files with 22 additions and 3 deletions

View File

@ -4,6 +4,25 @@ 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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [12.0.0] - 2022-12-13
### Breaking changes
- Drop support for nc < v25
- Remove projects support
### New
- Implement sorting by URL
- Fix archived files UX
- Fix bookmarkslist getting emptied when folderoverview is hidden/shown
- Make search available on public links
- Upgrade to new NC25 design
### Fixed
- Remove ExtractFromNotesJob
- Fix WorkflowEngine integration
- ItemSkeleton: Fix background color on dark theme
- Update readability.php
- More translations
## [11.0.4] - 2022-10-10 ## [11.0.4] - 2022-10-10
### Fixed ### Fixed

View File

@ -7,7 +7,7 @@ source_dir=$(build_dir)/source
sign_dir=$(build_dir)/sign sign_dir=$(build_dir)/sign
package_name=$(app_name) package_name=$(app_name)
cert_dir=$(HOME)/.nextcloud/certificates cert_dir=$(HOME)/.nextcloud/certificates
version+=11.0.4 version+=12.0.0
all: dev-setup build-js-production composer-no-dev all: dev-setup build-js-production composer-no-dev

View File

@ -23,7 +23,7 @@ Requirements:
- mbstring: * - mbstring: *
- when using MySQL, use at least v8.0 - when using MySQL, use at least v8.0
]]></description> ]]></description>
<version>11.0.4</version> <version>12.0.0</version>
<licence>agpl</licence> <licence>agpl</licence>
<author mail="mklehr@gmx.net">Marcel Klehr</author> <author mail="mklehr@gmx.net">Marcel Klehr</author>
<author mail="blizzz@arthur-schiwon.de" homepage="https://www.arthur-schiwon.de">Arthur Schiwon</author> <author mail="blizzz@arthur-schiwon.de" homepage="https://www.arthur-schiwon.de">Arthur Schiwon</author>

View File

@ -1,6 +1,6 @@
{ {
"name": "bookmarks", "name": "bookmarks",
"version": "11.0.4", "version": "12.0.0",
"main": "js/index.js", "main": "js/index.js",
"scripts": { "scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.js", "build": "NODE_ENV=production webpack --progress --config webpack.js",