mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-20 08:56:41 +02:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
7600fe87f9 | ||
![]() |
f756e28daf | ||
![]() |
1e10d7eb4a | ||
![]() |
ccf8e03571 |
18
CHANGELOG.md
18
CHANGELOG.md
@@ -1,5 +1,23 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.22.0 (01/10/2023)
|
||||||
|
|
||||||
|
### What's Changed
|
||||||
|
* Fix case-insensitive search for unicode characters in SQLite by @sissbruecker in https://github.com/sissbruecker/linkding/pull/520
|
||||||
|
* Add sort option to bookmark list by @sissbruecker in https://github.com/sissbruecker/linkding/pull/522
|
||||||
|
* Add button to show tags on smaller screens by @sissbruecker in https://github.com/sissbruecker/linkding/pull/529
|
||||||
|
* Make code blocks in notes scrollable by @sissbruecker in https://github.com/sissbruecker/linkding/pull/530
|
||||||
|
* Add filter for shared state by @sissbruecker in https://github.com/sissbruecker/linkding/pull/531
|
||||||
|
* Add support for exporting/importing bookmark notes by @sissbruecker in https://github.com/sissbruecker/linkding/pull/532
|
||||||
|
* Add filter for unread state by @sissbruecker in https://github.com/sissbruecker/linkding/pull/535
|
||||||
|
* Allow saving search preferences by @sissbruecker in https://github.com/sissbruecker/linkding/pull/540
|
||||||
|
* Add user profile endpoint by @sissbruecker in https://github.com/sissbruecker/linkding/pull/541
|
||||||
|
|
||||||
|
|
||||||
|
**Full Changelog**: https://github.com/sissbruecker/linkding/compare/v1.21.0...v1.22.0
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## v1.21.1 (26/09/2023)
|
## v1.21.1 (26/09/2023)
|
||||||
|
|
||||||
### What's Changed
|
### What's Changed
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
FROM node:18.13.0-alpine AS node-build
|
FROM node:18.18.0-alpine AS node-build
|
||||||
WORKDIR /etc/linkding
|
WORKDIR /etc/linkding
|
||||||
# install build dependencies
|
# install build dependencies
|
||||||
COPY package.json package-lock.json ./
|
COPY package.json package-lock.json ./
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "linkding",
|
"name": "linkding",
|
||||||
"version": "1.22.0",
|
"version": "1.22.1",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@@ -225,6 +225,11 @@ else:
|
|||||||
'ENGINE': 'django.db.backends.sqlite3',
|
'ENGINE': 'django.db.backends.sqlite3',
|
||||||
'NAME': os.path.join(BASE_DIR, 'data', 'db.sqlite3'),
|
'NAME': os.path.join(BASE_DIR, 'data', 'db.sqlite3'),
|
||||||
'OPTIONS': LD_DB_OPTIONS,
|
'OPTIONS': LD_DB_OPTIONS,
|
||||||
|
# Creating a connection loads the ICU extension into the SQLite
|
||||||
|
# connection, and also loads an ICU collation. The latter causes a
|
||||||
|
# memory leak, so try to counter that by making connections indefinitely
|
||||||
|
# persistent.
|
||||||
|
'CONN_MAX_AGE': None
|
||||||
}
|
}
|
||||||
|
|
||||||
DATABASES = {
|
DATABASES = {
|
||||||
|
@@ -1 +1 @@
|
|||||||
1.22.0
|
1.22.1
|
||||||
|
Reference in New Issue
Block a user