siyuan/app/src/protyle/render/av/render.ts

287 lines
17 KiB
TypeScript
Raw Normal View History

import {fetchPost} from "../../../util/fetch";
2023-09-21 10:54:41 +08:00
import {getColIconByType} from "./col";
import {Constants} from "../../../constants";
import {getCalcValue} from "./cell";
import * as dayjs from "dayjs";
import {unicode2Emoji} from "../../../emoji";
import {focusBlock} from "../../util/selection";
import {resizeAV} from "../../util/resize";
2023-11-07 11:01:01 +08:00
import {isMac} from "../../util/compatibility";
export const avRender = (element: Element, protyle: IProtyle, cb?: () => void) => {
let avElements: Element[] = [];
if (element.getAttribute("data-type") === "NodeAttributeView") {
// 编辑器内代码块编辑渲染
avElements = [element];
} else {
avElements = Array.from(element.querySelectorAll('[data-type="NodeAttributeView"]'));
}
if (avElements.length === 0) {
return;
}
if (avElements.length > 0) {
avElements.forEach((e: HTMLElement) => {
if (e.getAttribute("data-render") === "true") {
return;
}
2023-10-12 20:23:18 +08:00
let time: number;
if (e.firstElementChild.innerHTML === "") {
2023-10-14 00:04:16 +08:00
e.style.alignSelf = "";
2023-10-12 20:21:53 +08:00
time = new Date().getTime();
let html = "";
2023-10-12 20:21:53 +08:00
[1, 2, 3].forEach(() => {
html += `<div class="av__row">
2023-10-14 10:01:42 +08:00
<div style="width: 24px;flex-shrink: 0"></div>
<div class="av__cell" style="width: 200px"><span class="av__pulse"></span></div>
<div class="av__cell" style="width: 200px"><span class="av__pulse"></span></div>
<div class="av__cell" style="width: 200px"><span class="av__pulse"></span></div>
<div class="av__cell" style="width: 200px"><span class="av__pulse"></span></div>
</div>`;
2023-10-12 20:23:18 +08:00
});
e.firstElementChild.innerHTML = html;
}
const left = e.querySelector(".av__scroll")?.scrollLeft || 0;
2023-10-12 11:54:15 +08:00
const headerTransform = (e.querySelector(".av__row--header") as HTMLElement)?.style.transform;
const footerTransform = (e.querySelector(".av__row--footer") as HTMLElement)?.style.transform;
let selectCellId = "";
const selectCellElement = e.querySelector(".av__cell--select") as HTMLElement;
if (selectCellElement) {
selectCellId = selectCellElement.parentElement.dataset.id + Constants.ZWSP + selectCellElement.getAttribute("data-col-id");
}
fetchPost("/api/av/renderAttributeView", {
id: e.getAttribute("data-av-id"),
}, (response) => {
const data = response.data.view as IAVTable;
// header
Improve adaptive width for `Attributes View` (#9280) * :art: Attrs View adaptive width * :art: Add CSS class `av__body` * :art: add margins for attribute view * :art: add max-width for attribute view * Squashed commit of the following: commit 642d041513898c9c3fc551f7a8625dc075c6d08a Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:36:25 2023 +0800 :bookmark: Release v2.10.8 commit 43e53672b023ad6c13c28d1d2911bfddfa7e9435 Merge: 6b0f8e00a 0e3b78020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:32 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b0f8e00a8a30c313fbc88fa36334eba971cb2f4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:08 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9334 commit 0e3b7802015cf0ef4834f9bbab471f358c3c726e Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:03:48 2023 +0800 :memo: Update changelogs commit cc3b4e320ef8d57df43a3bea9adc4630d58dcdf5 Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:01:11 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 29f34fe8b8abe05d07bb0c4a2056af4ea6e74896 Author: Daniel <845765@qq.com> Date: Tue Oct 3 12:56:13 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 7556d1c3a28c152ebb5f6655236694d6083c9306 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:49:12 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 558422c4079bc79f4b9997f0cf1183e5ea8ad1c0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:46:25 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 433cb91d7515ccfa5ba9dbb279902187d3c820e0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 10:33:41 2023 +0800 :arrow_up: Upgrade kernel deps commit c5a25fe88f1497f55d5bb4979093c831c572c0e1 Author: Daniel <845765@qq.com> Date: Tue Oct 3 08:52:33 2023 +0800 :bug: Database render deleted block https://ld246.com/article/1695790906050/comment/1696234209062?r=88250#comments commit f6a8ca20cdc7a5df253b202ff637b8bea655e612 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 08:39:36 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 11cc108893b325774e78a4d1f7ba80a2b76bbc8a Author: Daniel <845765@qq.com> Date: Tue Oct 3 07:57:36 2023 +0800 :bug: Create doc with ref Fix https://github.com/siyuan-note/siyuan/issues/9329 commit d869aef346ccdab9044edf8e832be5fb6026b143 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:46:36 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit 3d7bf2eb0fd1c4f9d033970997687030e478fb53 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:39:08 2023 +0800 :art: Remove the access authorization code setting item on the browser-end https://github.com/siyuan-note/siyuan/issues/9331 commit 279e17e8b587694b83b58d730eeb774278ecc670 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:15:33 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit d2356754ddd4d4c9e99e74e50e691ce8c26c1824 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:41:51 2023 +0800 :memo: Update changelogs commit 4fdd0ddef046cefd8f0149e7198020d2677e9af2 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:37:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b4bded40e3a5134e4387b090c56f83567a8942ab Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:24:16 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit bfd27a62d1ec270cd52594a55f766862e9961c05 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:22:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 0aa61fe5b7eb44941410c5591e654ce7850b46d0 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:14:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 7d1e1bf2e59b3ea77986309ac872d1ef4e16dbdf Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:02:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 8c31eb0eac956e63b8e172617ee5cdc783b7658a Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:59:16 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 37892e786b511dd4bd4d5cedc603cc0a438bb651 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:58:48 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit f965ef0945c65f2affa5180cf762c0d498681aac Merge: b709c8458 b2f5ab570 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit b709c8458508b1955ddcef020457e643990e0bb0 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:00 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit b2f5ab5700f4ad30d04c645a466512448225b5d8 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:36:22 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b833087cb6287cd4e7a39d6b50ad42e9394df930 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:33:53 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit dbdddd7ff36da2da3ff03a779ef3af5f4fcc2a69 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:16:08 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b981fa08a04e769793a19862e8916985beefc13f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:05:06 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 6e475e185709e81b39a6ef5d0eae028a3c034369 Author: Daniel <845765@qq.com> Date: Sun Oct 1 11:05:24 2023 +0800 :memo: Update changelogs commit df38f89f4077e30ccafb0fae8da1ca38b781fb4f Merge: 465375422 b69e8d335 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:02:11 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 46537542210a82aab15b991692bfe3b63da31b8f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:01:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9291 commit b69e8d335726fb64e35b4d80b844e4e30e5d6344 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:58:46 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit df487a7c6aace2accba9d3fd576c38f3705d021f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:49:52 2023 +0800 :bug: flash card zoomin status commit c0424caf679ae463aef8b39e003b256263f0e978 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:42:12 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit e8359edebc8867e79dce7b918bf709de15e28242 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:27:07 2023 +0800 :rotating_light: commit c3212235b75352cc23da2e42e14435a3f0ab7aa4 Merge: 64900706b 702926430 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:51 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 64900706b21df441edbe91db3887a81008c19286 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:31 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9313 commit 702926430014c14fd3dbec9fa3a7cbb8fde0122e Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:03:07 2023 +0800 :memo: Update changelogs commit 29d155d0cd617a22a0aa0b65e27c2ae0dc428390 Author: Daniel <845765@qq.com> Date: Sun Oct 1 09:37:46 2023 +0800 :art: Improve missing line breaks when exporting RTF Fix https://github.com/siyuan-note/siyuan/issues/9325 commit 05cfcf7c2b8bda82eb9d0ccd67a4707b9da18a65 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:46:00 2023 +0800 :art: https://ld246.com/article/1695361968294 commit 67e0dad0a750e6c34caa2628e652d294de600ea7 Merge: 856445a6e fee908d01 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:21 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 856445a6ef7af178818ec33ce28ea337ed53e35a Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:06 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9323 commit fee908d01e23b692b5ee8da73611e1205f7be95f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:19:26 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 11d2f7c580176c94dc1708a37d322c752425a08f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:18:27 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 83dce4f3e6577152f931a80bd47e436118af7e61 Merge: 1f2faecf4 49d92538d Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1f2faecf4d63202cb3087d988400dea06dfe8082 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:01 2023 +0800 :zap: breadcrumb commit 49d92538dfa76a70afa5f057274bb2afb99384d3 Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:52:26 2023 +0800 :bug: The subdoc creation path is unstable when a parent doc with the same name exists Fix https://github.com/siyuan-note/siyuan/issues/9322 commit 17dd264479cd0aa40320cb69592af848a751378a Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:34:28 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit e74733b4e1af49977fd77b3df6e37277089ec2de Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:57:23 2023 +0800 :recycle: Refactor create doc by hpath commit f608da26a5d572c981b73d7b53e189f558512a4a Merge: 6b2a4ff0a 121d33e74 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:39 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b2a4ff0aa2e1aeae2f7afedf2e3f752ef7c6cb6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9317 commit 121d33e74d773def64c35d6f9476ad8aa238fa8b Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:56:47 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit 82bed847e6c327cd4bbb3b5cf77e1726ebfe4fff Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 14:40:45 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9320 commit f8b272d596f67cafbd83e3d4d69a2fc4d5c90fae Merge: 2dae1200b ca855c1fa Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2dae1200b48b3813252e9fbcbeb1d77dffd275e6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:40 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9316 commit ca855c1fa54756b5ff9afd1270f4c4d7aa444b9f Author: Daniel <845765@qq.com> Date: Sat Sep 30 11:57:37 2023 +0800 :art: Attribute Panel - Database sort attributes by view column order https://github.com/siyuan-note/siyuan/issues/9319 commit 1063f503756f89afe12125bb59b256e8b9a201b3 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 11:21:46 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/9318 commit 1f899aaf3c3a9aa4d566a51584a4165d8b8b24bd Author: Vanessa <lly219@gmail.com> Date: Fri Sep 29 21:41:14 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9281 commit 2b9bec8e8b07c9fc6280b272a2ea31569ebf0b2f Author: Daniel <845765@qq.com> Date: Fri Sep 29 17:33:18 2023 +0800 :art: Ctrl+N should follow notebook create save path https://ld246.com/article/1695965429553 commit 41e35ea795fd4fe1408e99e5c2b5b1b6c91f2c9b Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:45:23 2023 +0800 :rotating_light: commit 6a37b8661304a6afa9a95716203c407dc2f9c688 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:44 2023 +0800 :rotating_light: commit 4c6b695dae9e132cce01c4f36ed7657a89c322ff Merge: df3f444e4 dc03a5cf3 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:18 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit df3f444e480057ea3bb7582eb180a72cc0f842cd Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:40:44 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9300 commit dc03a5cf38601690649b1536624d3bb6f8985cc2 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:46:29 2023 +0800 :arrow_up: Upgrade kernel deps commit 172b7ed0180d573ad796f1ff6dd6c1aea9384064 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:39:12 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit 6354d04e4bae7a5184847baa30bcba24397b18d8 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:22:17 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit b2a27bb54ca2f761fdfe6c182b463a58132b1861 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Thu Sep 28 22:38:49 2023 +0800 Refactor code language and ts types (#9300) * :art: Code block language list adds custom languages * Update index.d.ts * :art: Improve global variable type definition * :art: Improve global variable type definition * :art: Add constant `EXTRA_CODE_LANGUAGES` commit 17d2a16a9477453691c325bbabf47c1a42d9b4ea Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 22:31:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9264 commit ceb9aef1d6710c806728dd08289906a93d775344 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 17:25:18 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9303 * :art: Improve the width of image in attribute view cell * :art: Adjust the style of rows' gutter * Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of rows' gutter * :bug: Improve the style of icon in attribute view * :art: Improve preview text fields * Revert Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of image in attribute view cell * :art: Improve the style of firstcol * :bug: Fix check icon click event handle * Merge tag 'v2.10.9-dev3' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.9' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.10' into feat/attrs-view-adaptive-width * Squashed commit of the following: commit c8924e37ae8eeffb4b49c30560372722458d4f84 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 12:14:12 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9409 commit 879fdd827d8aa1b817c3df7ca2026413e2a916ba Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:56:16 2023 +0800 :lipstick: dragover commit 9978827389d3ec49e14b7ed9d7dfe506a208e8df Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:34:42 2023 +0800 :art: 数据库块适配外观和宽度调整 commit a20ffeb12b67e87968676d0d7a1b17b1870e7144 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:20:17 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9412 commit f2075fafac55e31468d2519ede6dc98675fc8496 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:04:23 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 5e2910a4e60d61a6b4d64def65aeac9cbdbf8698 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:00:46 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit ac7f8d36dfc7bf73903b4fa3129417475ec6eb9b Merge: 9ae8400b4 d78a0205f Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:40 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9ae8400b474e913e5ed4b3fc26dae5464a1692fe Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:21 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit d78a0205f5a04e342b1dd4b2522ff294d30f952f Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:51:46 2023 +0800 :art: Database table view breadcrumb commit 6b1a2925c9c6404b4bf53007aea17f97675aea5a Merge: 25109b906 9766020b8 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:46 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 25109b906fc4df4d19ea8aa507ed278307b43322 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:35 2023 +0800 :art: 数据库块适配外观和宽度调整 commit 9766020b8950762b6b1e44de48e4e1159cc8c89c Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:08:57 2023 +0800 :art: Update text commit ab673896505f038d99497ab3880352b100d2d916 Merge: 7d6f9bb0d 39c5744f2 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 7d6f9bb0dff9b9cbbc6071a25b25276ab998a652 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:42 2023 +0800 :art: 数据库不能设置布局 commit 39c5744f2fa1d0c8d07ea14ce6a9dbd72ba3bc03 Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:46:29 2023 +0800 :bug: Database table view export does not display select content Fix https://github.com/siyuan-note/siyuan/issues/9428 commit 87ecb7f24acc3c5a20b763979781e7adfa86134d Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:37:47 2023 +0800 :art: Update text commit 69d8c93c98dfee2aa24b7ed1c8a663dfed6546b6 Merge: 623f30b5f f6780c126 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:54 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 623f30b5fc3de9e900ab574555c8af0f254f37e4 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:44 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit f6780c126abfd4576963470ba11a40933c17246e Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:20:51 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit fd94e9df0cdbaa13cbd5478fdf14d55e29bec42a Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 00:04:16 2023 +0800 :art: commit 51f66879ccc5808524c5e65802951cd9bff8eab3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:50:31 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 49305b8911249ab5f2548c7433afa816b9506e95 Merge: 2f0f563e1 8399aba10 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:26:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2f0f563e121ceacdf0ca0e1f53b6718812f0d5e7 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:25:58 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 8399aba10b53c701859402432efbd426f137a800 Author: Daniel <845765@qq.com> Date: Fri Oct 13 23:22:17 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 22efb3d5235fbbe1951fee9caf1009638e4e56c4 Merge: f95084e96 c3d1c04af Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:07:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f95084e96a3ca62add6cc27ac283132b4e7cd1be Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:06:53 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit c3d1c04af4066c231363d72fa18bd65d600b8dca Author: Daniel <845765@qq.com> Date: Fri Oct 13 22:50:11 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit a11ea9c3479aaa74db18ca7a22b0d4616f18f665 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:37:15 2023 +0800 :lipstick: commit 99ec5c10a4ed614e13a6a935dace95637716977f Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:32:17 2023 +0800 :art: showHiddenFiles commit 49426ac916279cc000670580e4586c2b4df51c72 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:15:20 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9425 commit d445c5401ffb4a1b2fcf01abc062734efc6c6cb2 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:54:35 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 0c4aee7388c03202a4bb3d11c7b89b0e21e48d85 Merge: c34d84ce2 daa9ddfd5 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c34d84ce29b8ccbb78dbcc96584804253997c0d1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit daa9ddfd50eebdc98084d3aba28f09008294ba54 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:43:43 2023 +0800 :art: Don't load plugin when the user hasn't agreed to trust bazaar content yet Fix https://github.com/siyuan-note/siyuan/issues/9426 commit 01b19ea2c85c7f039ff427b03d6a2f0d7f4b0488 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:03:41 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 7a9a85ea323e79e8a122d5e19a4dfb9618a2ce41 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:55:27 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 1815ec1b39ba30b427d366d41754582476b8f6a4 Merge: 73edee57a 00ed190ad Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 73edee57a4f755e293ac7a2b04e2381813839550 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:32 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 00ed190ad76f357ec780d68888a04dbd5f402ea5 Author: Daniel <845765@qq.com> Date: Fri Oct 13 13:21:53 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 48e871c75e59cbf7de299e8908a1ba25ddf76278 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 12:33:29 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 3554333da9be4b22d844af83b8c540a7b6feb874 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:55:51 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit af810b279d6e6535947a143987627b3aa1e066c0 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:34:19 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 673c952f079d4a7aa42f6bf59a348f27cfcaf360 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:30:44 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 3b87a0d9ed8c313ecc75c29c7c990c7d17d68bab Merge: ed31305d1 3de7781b1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:09:07 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed31305d1d291010c3d4b6b223b924823b7be95e Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:08:56 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 3de7781b1c78fb35ba3e90b729015bd0d9cfaa45 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:44:29 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 2304921feefff56d34d4b673cba8a491f399f2a6 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:42:51 2023 +0800 :art: Update flashcard user guide commit 55fb8b19abf9d91f40fd4d177dc5f20758e1a3b3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 10:14:11 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit 8998de9d812eeb67060a7dd3e7eacec28abea656 Merge: 5b38e79be df9b55c71 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:35 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 5b38e79be75e32f33332a6f700263e1460d645bf Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:24 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit df9b55c71ba6aea40617a2fc17ad9d4908edc81c Author: Daniel <845765@qq.com> Date: Fri Oct 13 08:46:29 2023 +0800 :art: Database template columns support sort commit 3da9f0f1e133d5e69e5af674d6b8f83b9f6136f2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:40:09 2023 +0800 :bug: 新增行后弹出的输入框 commit 79a88dfbece66248b9eaa39a1821b4e2a8025148 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:23:18 2023 +0800 :rotating_light: commit 40a1e6d5cc8107abfa7addb27c347f6677a1e4fe Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:21:53 2023 +0800 :lipstick: database loading commit 2872dab9eb9c40e06d43886728ddad84c1c18722 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:11:59 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 025a8ea5a7b38b444957a73ddbcde7c2f1a054ed Merge: 02ec0f6e5 0ea9b8f5a Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 02ec0f6e5a68e7810545f8a5e132465719dc0442 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:01 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 0ea9b8f5a7223bcdab3b8f8e5e890d908e164c34 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:58:32 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit 1590913db73d8def51a05544b8a2b5e654285aa3 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:55:57 2023 +0800 :art: Update attr panel for av commit d257caff8d5d12a1751c3d18d3ca972cd5ef453d Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:38:37 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit fdaf8d7e595f11e3e0d67b01427a0485532191c6 Merge: 70e82cd98 238609f25 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 70e82cd981e5890aaad782631741521f5cd7ef41 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:19 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9416 commit 238609f25f39c42fa28bf14d4fa767f8c912b41e Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:33:23 2023 +0800 :zap: Improve performance of loading database table view commit 2dd558b6090b96cc77db2dac0002db67b5b772ce Merge: fe0b1e8d6 8fb35f556 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit fe0b1e8d6023c5d3e02614bf2515b93dd19b0b5e Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:31 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9415 commit 8fb35f5565c197617f57f02def80f8bd6b374d3d Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:15:36 2023 +0800 :art: Database template columns support number filter Fix https://github.com/siyuan-note/siyuan/issues/9414 commit 01670f2b00f31b1421ebdef9795d880863f09cdc Merge: f792d141f ffcdb5d39 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:48 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f792d141fc412a54165a9fda87216d497258c5da Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:09 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9408 commit ffcdb5d398da4b70a6cc4c06478a1f97085bf482 Author: Daniel <845765@qq.com> Date: Thu Oct 12 16:37:09 2023 +0800 :bug: SVG images cannot be displayed on some systems https://github.com/siyuan-note/siyuan/issues/9413 commit fb1f80cf4de0bdd45b140facf351c86fa243c757 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:22:55 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9406 commit da51aded35aaf8b5b0d475b49a98d179865992de Merge: a4bcae87e 09ef5fddf Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:42 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a4bcae87ee24a2592c8c43b669efc9d284a588c2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:29 2023 +0800 :bug: 数据库数字填0无效 commit 09ef5fddf9335f8a2e14b5eb197509ba80324e1f Author: Daniel <845765@qq.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: Database template columns support calculations https://github.com/siyuan-note/siyuan/issues/9408 commit 1b595d014a739094cede52527606d6d45e3ed35c Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: #9408 commit 21d1a0515ae46352a1bace0e17beac571d32c088 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:54:15 2023 +0800 :lipstick: 编辑后表头不固定 commit c5206f70843c866746d4db87c7e33681b98e48d2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:14:29 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9405 commit f0f55d3b026446f996e7c83fd49580d9db8592a9 Merge: 019412404 92151f715 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:19 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 01941240470a9bac540655507d2aa354bf5f46a1 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:09 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9403 commit 92151f71504332d96456f52087423ba967c02f78 Author: Daniel <845765@qq.com> Date: Thu Oct 12 10:12:44 2023 +0800 :art: Change database template column custom attribute action Fix https://github.com/siyuan-note/siyuan/issues/9401 commit b8e8aa0593576563e9c462df3e18900fb3ec41d6 Author: Daniel <845765@qq.com> Date: Wed Oct 11 17:00:21 2023 +0800 :hammer: Clean code commit b17aff577300a63cf77f63e2a9665cc0a2692f1e Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:54:40 2023 +0800 :bug: commit 11174958bc87bc00937d957f6004854f5105dd09 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:50:28 2023 +0800 :bug: 预览模式下点击只读 commit 130884d758774fac373c41a8540ce6d90c741ba6 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:23:01 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9404 commit 7486e1a6e22f765cffd4d231b0adb984bfe70089 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 17:28:40 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9402 commit eb93255cf32782a93d3c9b3a6d8bb3cb9f0ff7ef Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:57:14 2023 +0800 :hammer: Clean code commit fd46593815f5666f8b08e01d1e3ff9b75eab1ca3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:55:06 2023 +0800 :bookmark: Release v2.10.10 commit 337c79571d6e2b073435d95f642634130a5d0bf0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:59:25 2023 +0800 :art: Improve install new version on Windows commit f6f1148de11044c5e58ad786722087d631d8cbb4 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:08:44 2023 +0800 :memo: Update changelogs commit f0ad3268baf62bcc2be569eb21019ceaf4e1861c Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:30:00 2023 +0800 :art: commit 2eb89f067317cbb1ec13c7c4ae4cc7fc62b7fcac Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:25:21 2023 +0800 :rotating_light: commit 0db516e4b9455a87e5e29808ea77712adc4b4371 Merge: 23c3f9f15 e43cf4cf5 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:41 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 23c3f9f154326aefa8743a2d2c9b6596611722af Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:29 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9383 commit e43cf4cf55de73c37a5dc603017b957b15a34499 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:52:10 2023 +0800 :memo: Update changelogs commit b30cb0984aec2ae2248863f056bbef4f701980d5 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:49:04 2023 +0800 :memo: Update changelogs commit d4a3226a566421d01a0bcf9e9ad00cac1cb38ae3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:40 2023 +0800 :memo: Update changelogs commit 65adab61c9f63ab0d692890ff977c567d1628845 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:29 2023 +0800 :art: Adding row overwriting data after enabling filter in database https://github.com/siyuan-note/siyuan/issues/9395 commit 210a3ac5472245eed820a7c76aadb09d50029bb0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:04:39 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 37f950ba4f6028f993786958eb9b3a0d2dca066b Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:39:22 2023 +0800 :lipstick: icon commit 7b1c30bc26b796116e7bd936436b3f9e3e1cb316 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:30:13 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit 6ef13aba784dd6df37b9ac61573b8d8123488743 Merge: acd2eb167 e4907e789 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit acd2eb167707ad5cfa7e5cc7d9e06a6adfe8d92d Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit e4907e7896ceb014a3064565e05631eb621a1f3a Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:16:57 2023 +0800 :art: The block in the editor shows the database icon https://github.com/siyuan-note/siyuan/issues/8894 commit 6f249d768f954e58dad876010927fdcf43b3b05b Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:15:03 2023 +0800 :arrow_up: Upgrade kernel deps commit bb04bf9f705b1169d4efb44c441daf1ecb56cf91 Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:04:39 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 30b0dd08face947c3a9ad0a8c468862a93424cac Merge: c1de5e148 ccb65454a Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c1de5e1488963eb63c9230ff8c691573febb3791 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:44 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/8894 commit ccb65454a2bad059a33cf360aef8f0a895030dbf Author: Daniel <845765@qq.com> Date: Wed Oct 11 08:50:13 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 28e4e1ef2fe1c373b9524a2c3f1cca85eb5452f4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:31:46 2023 +0800 :art: Rename the .sya annotation file when renaming a PDF asset https://github.com/siyuan-note/siyuan/issues/9390 commit 964c822c2b7322f956234726f0bbb15106da35e4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:02:46 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f404d7fe85a66babc255e151fe18ad656dbb5eb2 Merge: ed7084c7b 301b6d9f7 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed7084c7be222cb76a9567c32a5b3b92897e12b3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:43 2023 +0800 :lipstick: commit 301b6d9f70ec0166b0567e925d71d241999a9cd8 Author: Daniel <845765@qq.com> Date: Tue Oct 10 21:55:43 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f62be4719eaba196b83b5972e9c0dcfc1e4b6020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:50:36 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9385 commit 8e2565f347337806eaca57489ab0666c314899c4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:39:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9386 commit e54d8f1a4d2c979f2a3147a292330ad36a83c0fb Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:31:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9393 commit 1fb7187936646643216e6ca96344576738f7019b Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:23:29 2023 +0800 :memo: fix https://github.com/siyuan-note/siyuan/issues/9392 commit ea00753f380f1045ff357447b0e7acc9dd117a28 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9392 commit 4318aa446369eaf4ea85982ba4919b5d47340552 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:51:28 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9376 commit f1d4f8472b63c379b0bd51ee973b1505e615b12c Merge: 3f4c00efc 64df2ffa4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 3f4c00efcddb7030e39616eadc9587dc3e1d17d8 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9376 commit 64df2ffa42df2804778f401ec75203319fe5cba4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:37:51 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 691a0bea33e430f94d46a65f2887e187080c199d Merge: 0e5cae300 7e9243d8d Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:41:05 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 0e5cae30015f960637b1a22a935d55e64e499ef5 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:40:38 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit 7e9243d8dc063bd481e202f73c2b16d367c6cbea Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:05:48 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 7aa4aacfc3e4c356db033305a8e8a9e268c8c427 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:30:10 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit d02381d3f2cabe4a0fa7a5518b79c7030dae8c0e Merge: 449d2dbf8 6e9099ea1 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:14 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 449d2dbf87d838409351fc8c4b7a42af59dc65c3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:03 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9256 commit 6e9099ea12ba692b4aab7cef34bc61458eb6ec14 Author: Daniel <845765@qq.com> Date: Tue Oct 10 16:52:40 2023 +0800 :lock: Authenticate requests of assets other than 127.0.0.1 Fix https://github.com/siyuan-note/siyuan/issues/9388 commit 11786381cf6b1d5f58c862ab99a0993ac6ab4ad4 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Tue Oct 10 16:21:50 2023 +0800 Improve event bus `open-siyuan-url-plugin` (#9256) * :art: Improve plugin event bus `open-siyuan-url-plugin` * :bug: Avoid plug-in names with the same prefix * Update onGetConfig.ts commit 2c36af78bc789505c8d2d461c70aa9e36a782d2f Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 16:15:24 2023 +0800 :rotating_light: commit b0e3efa774c0d500567c96e1f1720cd11271dd0e Author: Daniel <845765@qq.com> Date: Tue Oct 10 11:41:46 2023 +0800 :bookmark: Release v2.10.9 commit d690475ae63c41f486eb752de203fe2a90b7e2c2 Merge: c8a6f4185 811bac942 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:58:46 2023 +0800 Merge remote-tracking branch 'origin/master' commit c8a6f4185e25813687883ab241a18d21ae8a5b22 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:18:57 2023 +0800 :bookmark: Release v2.10.9 commit cdcec7e58dd597b87967c456107e062db90c41e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:29:25 2023 +0800 :memo: Update changelogs commit 1eccb8ba4d6e7f9a9b37f18f9bd444920d93744c Merge: a3094fe3e 3827753b7 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:26:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a3094fe3ead644f67886324f165e6157818ed680 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:25:48 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9384 commit 3827753b7c7391680af13c9ea5812ab4247e8381 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:07:34 2023 +0800 :art: Upgrade Electron https://github.com/siyuan-note/siyuan/issues/9342 commit 567394afba01704c66a4e65bc54260becc2eb034 Author: Daniel <845765@qq.com> Date: Mon Oct 9 22:42:39 2023 +0800 :memo: Update changelogs commit ff6220abaa2d8316e4ad1771985e47885eac1a45 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Mon Oct 9 21:51:39 2023 +0800 :art: add `@electron/remote` dependency (#9381) commit da0fa0853f46a957c35a282235a53c3fd8e10163 Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:45:36 2023 +0800 :art: Replace non-breaking spaces with normal spaces when copying https://github.com/siyuan-note/siyuan/issues/9382 commit 0ed68847618c241704702757c3324493a3fb8c2a Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:09:35 2023 +0800 :bug: Update av Fix https://github.com/siyuan-note/siyuan/issues/9380 commit 288eb24474ed21416c69d6ec366f22ef67189d8e Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:30:19 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 4965b7b8458edd974efa85483aed8ba4f7a6b106 Merge: 803069d80 902849153 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 803069d8071240447567a233c5ad104bb5962511 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 902849153a87eb75b200ab37b9ff674e8ba382d0 Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:17:40 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit faadbf5960997f42ad22884d7394d2b3fd6bf3e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 16:48:28 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit 9ca11625bd71b67b50e5091f680932762e02862a Merge: 43f06e57d 644e0319d Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:45:06 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 43f06e57d9125ed62f2db0e8d0c10f53ef0d8e0a Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:44:46 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 811bac942ddbdc48f29e587ea6ffb8f68ce2e4ac Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:36 2023 +0800 :art: Free disk space for docker image building GitHub Action commit 66aa802765998feb6af7883e678cc835702d689a Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:28 2023 +0800 :art: Free disk space for docker image building GitHub Action * Update anno.ts * Update index.ts * :art: Adapt to align styles * :art: Adapt to using arrow keys/Esc to select a cell/row * Update row.ts * :art: Adjusted the cell width in attribute view * :bug: Fixed the issue that the first column was misaligned * Update index.ts * Update action.ts
2023-11-09 16:35:49 +08:00
let tableHTML = '<div class="av__row av__row--header"><div class="av__firstcol"><svg class="icon__check"><use xlink:href="#iconUncheck"></use></svg></div>';
2023-07-15 23:19:40 +08:00
let calcHTML = "";
data.columns.forEach((column: IAVColumn) => {
if (column.hidden) {
return;
}
Improve adaptive width for `Attributes View` (#9280) * :art: Attrs View adaptive width * :art: Add CSS class `av__body` * :art: add margins for attribute view * :art: add max-width for attribute view * Squashed commit of the following: commit 642d041513898c9c3fc551f7a8625dc075c6d08a Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:36:25 2023 +0800 :bookmark: Release v2.10.8 commit 43e53672b023ad6c13c28d1d2911bfddfa7e9435 Merge: 6b0f8e00a 0e3b78020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:32 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b0f8e00a8a30c313fbc88fa36334eba971cb2f4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:08 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9334 commit 0e3b7802015cf0ef4834f9bbab471f358c3c726e Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:03:48 2023 +0800 :memo: Update changelogs commit cc3b4e320ef8d57df43a3bea9adc4630d58dcdf5 Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:01:11 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 29f34fe8b8abe05d07bb0c4a2056af4ea6e74896 Author: Daniel <845765@qq.com> Date: Tue Oct 3 12:56:13 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 7556d1c3a28c152ebb5f6655236694d6083c9306 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:49:12 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 558422c4079bc79f4b9997f0cf1183e5ea8ad1c0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:46:25 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 433cb91d7515ccfa5ba9dbb279902187d3c820e0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 10:33:41 2023 +0800 :arrow_up: Upgrade kernel deps commit c5a25fe88f1497f55d5bb4979093c831c572c0e1 Author: Daniel <845765@qq.com> Date: Tue Oct 3 08:52:33 2023 +0800 :bug: Database render deleted block https://ld246.com/article/1695790906050/comment/1696234209062?r=88250#comments commit f6a8ca20cdc7a5df253b202ff637b8bea655e612 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 08:39:36 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 11cc108893b325774e78a4d1f7ba80a2b76bbc8a Author: Daniel <845765@qq.com> Date: Tue Oct 3 07:57:36 2023 +0800 :bug: Create doc with ref Fix https://github.com/siyuan-note/siyuan/issues/9329 commit d869aef346ccdab9044edf8e832be5fb6026b143 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:46:36 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit 3d7bf2eb0fd1c4f9d033970997687030e478fb53 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:39:08 2023 +0800 :art: Remove the access authorization code setting item on the browser-end https://github.com/siyuan-note/siyuan/issues/9331 commit 279e17e8b587694b83b58d730eeb774278ecc670 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:15:33 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit d2356754ddd4d4c9e99e74e50e691ce8c26c1824 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:41:51 2023 +0800 :memo: Update changelogs commit 4fdd0ddef046cefd8f0149e7198020d2677e9af2 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:37:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b4bded40e3a5134e4387b090c56f83567a8942ab Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:24:16 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit bfd27a62d1ec270cd52594a55f766862e9961c05 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:22:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 0aa61fe5b7eb44941410c5591e654ce7850b46d0 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:14:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 7d1e1bf2e59b3ea77986309ac872d1ef4e16dbdf Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:02:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 8c31eb0eac956e63b8e172617ee5cdc783b7658a Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:59:16 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 37892e786b511dd4bd4d5cedc603cc0a438bb651 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:58:48 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit f965ef0945c65f2affa5180cf762c0d498681aac Merge: b709c8458 b2f5ab570 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit b709c8458508b1955ddcef020457e643990e0bb0 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:00 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit b2f5ab5700f4ad30d04c645a466512448225b5d8 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:36:22 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b833087cb6287cd4e7a39d6b50ad42e9394df930 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:33:53 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit dbdddd7ff36da2da3ff03a779ef3af5f4fcc2a69 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:16:08 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b981fa08a04e769793a19862e8916985beefc13f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:05:06 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 6e475e185709e81b39a6ef5d0eae028a3c034369 Author: Daniel <845765@qq.com> Date: Sun Oct 1 11:05:24 2023 +0800 :memo: Update changelogs commit df38f89f4077e30ccafb0fae8da1ca38b781fb4f Merge: 465375422 b69e8d335 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:02:11 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 46537542210a82aab15b991692bfe3b63da31b8f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:01:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9291 commit b69e8d335726fb64e35b4d80b844e4e30e5d6344 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:58:46 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit df487a7c6aace2accba9d3fd576c38f3705d021f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:49:52 2023 +0800 :bug: flash card zoomin status commit c0424caf679ae463aef8b39e003b256263f0e978 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:42:12 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit e8359edebc8867e79dce7b918bf709de15e28242 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:27:07 2023 +0800 :rotating_light: commit c3212235b75352cc23da2e42e14435a3f0ab7aa4 Merge: 64900706b 702926430 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:51 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 64900706b21df441edbe91db3887a81008c19286 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:31 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9313 commit 702926430014c14fd3dbec9fa3a7cbb8fde0122e Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:03:07 2023 +0800 :memo: Update changelogs commit 29d155d0cd617a22a0aa0b65e27c2ae0dc428390 Author: Daniel <845765@qq.com> Date: Sun Oct 1 09:37:46 2023 +0800 :art: Improve missing line breaks when exporting RTF Fix https://github.com/siyuan-note/siyuan/issues/9325 commit 05cfcf7c2b8bda82eb9d0ccd67a4707b9da18a65 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:46:00 2023 +0800 :art: https://ld246.com/article/1695361968294 commit 67e0dad0a750e6c34caa2628e652d294de600ea7 Merge: 856445a6e fee908d01 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:21 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 856445a6ef7af178818ec33ce28ea337ed53e35a Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:06 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9323 commit fee908d01e23b692b5ee8da73611e1205f7be95f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:19:26 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 11d2f7c580176c94dc1708a37d322c752425a08f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:18:27 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 83dce4f3e6577152f931a80bd47e436118af7e61 Merge: 1f2faecf4 49d92538d Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1f2faecf4d63202cb3087d988400dea06dfe8082 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:01 2023 +0800 :zap: breadcrumb commit 49d92538dfa76a70afa5f057274bb2afb99384d3 Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:52:26 2023 +0800 :bug: The subdoc creation path is unstable when a parent doc with the same name exists Fix https://github.com/siyuan-note/siyuan/issues/9322 commit 17dd264479cd0aa40320cb69592af848a751378a Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:34:28 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit e74733b4e1af49977fd77b3df6e37277089ec2de Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:57:23 2023 +0800 :recycle: Refactor create doc by hpath commit f608da26a5d572c981b73d7b53e189f558512a4a Merge: 6b2a4ff0a 121d33e74 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:39 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b2a4ff0aa2e1aeae2f7afedf2e3f752ef7c6cb6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9317 commit 121d33e74d773def64c35d6f9476ad8aa238fa8b Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:56:47 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit 82bed847e6c327cd4bbb3b5cf77e1726ebfe4fff Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 14:40:45 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9320 commit f8b272d596f67cafbd83e3d4d69a2fc4d5c90fae Merge: 2dae1200b ca855c1fa Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2dae1200b48b3813252e9fbcbeb1d77dffd275e6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:40 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9316 commit ca855c1fa54756b5ff9afd1270f4c4d7aa444b9f Author: Daniel <845765@qq.com> Date: Sat Sep 30 11:57:37 2023 +0800 :art: Attribute Panel - Database sort attributes by view column order https://github.com/siyuan-note/siyuan/issues/9319 commit 1063f503756f89afe12125bb59b256e8b9a201b3 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 11:21:46 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/9318 commit 1f899aaf3c3a9aa4d566a51584a4165d8b8b24bd Author: Vanessa <lly219@gmail.com> Date: Fri Sep 29 21:41:14 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9281 commit 2b9bec8e8b07c9fc6280b272a2ea31569ebf0b2f Author: Daniel <845765@qq.com> Date: Fri Sep 29 17:33:18 2023 +0800 :art: Ctrl+N should follow notebook create save path https://ld246.com/article/1695965429553 commit 41e35ea795fd4fe1408e99e5c2b5b1b6c91f2c9b Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:45:23 2023 +0800 :rotating_light: commit 6a37b8661304a6afa9a95716203c407dc2f9c688 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:44 2023 +0800 :rotating_light: commit 4c6b695dae9e132cce01c4f36ed7657a89c322ff Merge: df3f444e4 dc03a5cf3 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:18 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit df3f444e480057ea3bb7582eb180a72cc0f842cd Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:40:44 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9300 commit dc03a5cf38601690649b1536624d3bb6f8985cc2 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:46:29 2023 +0800 :arrow_up: Upgrade kernel deps commit 172b7ed0180d573ad796f1ff6dd6c1aea9384064 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:39:12 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit 6354d04e4bae7a5184847baa30bcba24397b18d8 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:22:17 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit b2a27bb54ca2f761fdfe6c182b463a58132b1861 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Thu Sep 28 22:38:49 2023 +0800 Refactor code language and ts types (#9300) * :art: Code block language list adds custom languages * Update index.d.ts * :art: Improve global variable type definition * :art: Improve global variable type definition * :art: Add constant `EXTRA_CODE_LANGUAGES` commit 17d2a16a9477453691c325bbabf47c1a42d9b4ea Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 22:31:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9264 commit ceb9aef1d6710c806728dd08289906a93d775344 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 17:25:18 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9303 * :art: Improve the width of image in attribute view cell * :art: Adjust the style of rows' gutter * Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of rows' gutter * :bug: Improve the style of icon in attribute view * :art: Improve preview text fields * Revert Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of image in attribute view cell * :art: Improve the style of firstcol * :bug: Fix check icon click event handle * Merge tag 'v2.10.9-dev3' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.9' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.10' into feat/attrs-view-adaptive-width * Squashed commit of the following: commit c8924e37ae8eeffb4b49c30560372722458d4f84 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 12:14:12 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9409 commit 879fdd827d8aa1b817c3df7ca2026413e2a916ba Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:56:16 2023 +0800 :lipstick: dragover commit 9978827389d3ec49e14b7ed9d7dfe506a208e8df Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:34:42 2023 +0800 :art: 数据库块适配外观和宽度调整 commit a20ffeb12b67e87968676d0d7a1b17b1870e7144 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:20:17 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9412 commit f2075fafac55e31468d2519ede6dc98675fc8496 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:04:23 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 5e2910a4e60d61a6b4d64def65aeac9cbdbf8698 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:00:46 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit ac7f8d36dfc7bf73903b4fa3129417475ec6eb9b Merge: 9ae8400b4 d78a0205f Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:40 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9ae8400b474e913e5ed4b3fc26dae5464a1692fe Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:21 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit d78a0205f5a04e342b1dd4b2522ff294d30f952f Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:51:46 2023 +0800 :art: Database table view breadcrumb commit 6b1a2925c9c6404b4bf53007aea17f97675aea5a Merge: 25109b906 9766020b8 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:46 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 25109b906fc4df4d19ea8aa507ed278307b43322 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:35 2023 +0800 :art: 数据库块适配外观和宽度调整 commit 9766020b8950762b6b1e44de48e4e1159cc8c89c Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:08:57 2023 +0800 :art: Update text commit ab673896505f038d99497ab3880352b100d2d916 Merge: 7d6f9bb0d 39c5744f2 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 7d6f9bb0dff9b9cbbc6071a25b25276ab998a652 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:42 2023 +0800 :art: 数据库不能设置布局 commit 39c5744f2fa1d0c8d07ea14ce6a9dbd72ba3bc03 Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:46:29 2023 +0800 :bug: Database table view export does not display select content Fix https://github.com/siyuan-note/siyuan/issues/9428 commit 87ecb7f24acc3c5a20b763979781e7adfa86134d Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:37:47 2023 +0800 :art: Update text commit 69d8c93c98dfee2aa24b7ed1c8a663dfed6546b6 Merge: 623f30b5f f6780c126 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:54 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 623f30b5fc3de9e900ab574555c8af0f254f37e4 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:44 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit f6780c126abfd4576963470ba11a40933c17246e Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:20:51 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit fd94e9df0cdbaa13cbd5478fdf14d55e29bec42a Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 00:04:16 2023 +0800 :art: commit 51f66879ccc5808524c5e65802951cd9bff8eab3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:50:31 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 49305b8911249ab5f2548c7433afa816b9506e95 Merge: 2f0f563e1 8399aba10 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:26:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2f0f563e121ceacdf0ca0e1f53b6718812f0d5e7 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:25:58 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 8399aba10b53c701859402432efbd426f137a800 Author: Daniel <845765@qq.com> Date: Fri Oct 13 23:22:17 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 22efb3d5235fbbe1951fee9caf1009638e4e56c4 Merge: f95084e96 c3d1c04af Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:07:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f95084e96a3ca62add6cc27ac283132b4e7cd1be Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:06:53 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit c3d1c04af4066c231363d72fa18bd65d600b8dca Author: Daniel <845765@qq.com> Date: Fri Oct 13 22:50:11 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit a11ea9c3479aaa74db18ca7a22b0d4616f18f665 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:37:15 2023 +0800 :lipstick: commit 99ec5c10a4ed614e13a6a935dace95637716977f Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:32:17 2023 +0800 :art: showHiddenFiles commit 49426ac916279cc000670580e4586c2b4df51c72 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:15:20 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9425 commit d445c5401ffb4a1b2fcf01abc062734efc6c6cb2 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:54:35 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 0c4aee7388c03202a4bb3d11c7b89b0e21e48d85 Merge: c34d84ce2 daa9ddfd5 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c34d84ce29b8ccbb78dbcc96584804253997c0d1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit daa9ddfd50eebdc98084d3aba28f09008294ba54 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:43:43 2023 +0800 :art: Don't load plugin when the user hasn't agreed to trust bazaar content yet Fix https://github.com/siyuan-note/siyuan/issues/9426 commit 01b19ea2c85c7f039ff427b03d6a2f0d7f4b0488 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:03:41 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 7a9a85ea323e79e8a122d5e19a4dfb9618a2ce41 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:55:27 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 1815ec1b39ba30b427d366d41754582476b8f6a4 Merge: 73edee57a 00ed190ad Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 73edee57a4f755e293ac7a2b04e2381813839550 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:32 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 00ed190ad76f357ec780d68888a04dbd5f402ea5 Author: Daniel <845765@qq.com> Date: Fri Oct 13 13:21:53 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 48e871c75e59cbf7de299e8908a1ba25ddf76278 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 12:33:29 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 3554333da9be4b22d844af83b8c540a7b6feb874 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:55:51 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit af810b279d6e6535947a143987627b3aa1e066c0 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:34:19 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 673c952f079d4a7aa42f6bf59a348f27cfcaf360 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:30:44 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 3b87a0d9ed8c313ecc75c29c7c990c7d17d68bab Merge: ed31305d1 3de7781b1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:09:07 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed31305d1d291010c3d4b6b223b924823b7be95e Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:08:56 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 3de7781b1c78fb35ba3e90b729015bd0d9cfaa45 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:44:29 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 2304921feefff56d34d4b673cba8a491f399f2a6 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:42:51 2023 +0800 :art: Update flashcard user guide commit 55fb8b19abf9d91f40fd4d177dc5f20758e1a3b3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 10:14:11 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit 8998de9d812eeb67060a7dd3e7eacec28abea656 Merge: 5b38e79be df9b55c71 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:35 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 5b38e79be75e32f33332a6f700263e1460d645bf Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:24 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit df9b55c71ba6aea40617a2fc17ad9d4908edc81c Author: Daniel <845765@qq.com> Date: Fri Oct 13 08:46:29 2023 +0800 :art: Database template columns support sort commit 3da9f0f1e133d5e69e5af674d6b8f83b9f6136f2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:40:09 2023 +0800 :bug: 新增行后弹出的输入框 commit 79a88dfbece66248b9eaa39a1821b4e2a8025148 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:23:18 2023 +0800 :rotating_light: commit 40a1e6d5cc8107abfa7addb27c347f6677a1e4fe Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:21:53 2023 +0800 :lipstick: database loading commit 2872dab9eb9c40e06d43886728ddad84c1c18722 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:11:59 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 025a8ea5a7b38b444957a73ddbcde7c2f1a054ed Merge: 02ec0f6e5 0ea9b8f5a Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 02ec0f6e5a68e7810545f8a5e132465719dc0442 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:01 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 0ea9b8f5a7223bcdab3b8f8e5e890d908e164c34 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:58:32 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit 1590913db73d8def51a05544b8a2b5e654285aa3 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:55:57 2023 +0800 :art: Update attr panel for av commit d257caff8d5d12a1751c3d18d3ca972cd5ef453d Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:38:37 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit fdaf8d7e595f11e3e0d67b01427a0485532191c6 Merge: 70e82cd98 238609f25 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 70e82cd981e5890aaad782631741521f5cd7ef41 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:19 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9416 commit 238609f25f39c42fa28bf14d4fa767f8c912b41e Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:33:23 2023 +0800 :zap: Improve performance of loading database table view commit 2dd558b6090b96cc77db2dac0002db67b5b772ce Merge: fe0b1e8d6 8fb35f556 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit fe0b1e8d6023c5d3e02614bf2515b93dd19b0b5e Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:31 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9415 commit 8fb35f5565c197617f57f02def80f8bd6b374d3d Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:15:36 2023 +0800 :art: Database template columns support number filter Fix https://github.com/siyuan-note/siyuan/issues/9414 commit 01670f2b00f31b1421ebdef9795d880863f09cdc Merge: f792d141f ffcdb5d39 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:48 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f792d141fc412a54165a9fda87216d497258c5da Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:09 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9408 commit ffcdb5d398da4b70a6cc4c06478a1f97085bf482 Author: Daniel <845765@qq.com> Date: Thu Oct 12 16:37:09 2023 +0800 :bug: SVG images cannot be displayed on some systems https://github.com/siyuan-note/siyuan/issues/9413 commit fb1f80cf4de0bdd45b140facf351c86fa243c757 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:22:55 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9406 commit da51aded35aaf8b5b0d475b49a98d179865992de Merge: a4bcae87e 09ef5fddf Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:42 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a4bcae87ee24a2592c8c43b669efc9d284a588c2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:29 2023 +0800 :bug: 数据库数字填0无效 commit 09ef5fddf9335f8a2e14b5eb197509ba80324e1f Author: Daniel <845765@qq.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: Database template columns support calculations https://github.com/siyuan-note/siyuan/issues/9408 commit 1b595d014a739094cede52527606d6d45e3ed35c Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: #9408 commit 21d1a0515ae46352a1bace0e17beac571d32c088 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:54:15 2023 +0800 :lipstick: 编辑后表头不固定 commit c5206f70843c866746d4db87c7e33681b98e48d2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:14:29 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9405 commit f0f55d3b026446f996e7c83fd49580d9db8592a9 Merge: 019412404 92151f715 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:19 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 01941240470a9bac540655507d2aa354bf5f46a1 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:09 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9403 commit 92151f71504332d96456f52087423ba967c02f78 Author: Daniel <845765@qq.com> Date: Thu Oct 12 10:12:44 2023 +0800 :art: Change database template column custom attribute action Fix https://github.com/siyuan-note/siyuan/issues/9401 commit b8e8aa0593576563e9c462df3e18900fb3ec41d6 Author: Daniel <845765@qq.com> Date: Wed Oct 11 17:00:21 2023 +0800 :hammer: Clean code commit b17aff577300a63cf77f63e2a9665cc0a2692f1e Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:54:40 2023 +0800 :bug: commit 11174958bc87bc00937d957f6004854f5105dd09 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:50:28 2023 +0800 :bug: 预览模式下点击只读 commit 130884d758774fac373c41a8540ce6d90c741ba6 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:23:01 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9404 commit 7486e1a6e22f765cffd4d231b0adb984bfe70089 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 17:28:40 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9402 commit eb93255cf32782a93d3c9b3a6d8bb3cb9f0ff7ef Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:57:14 2023 +0800 :hammer: Clean code commit fd46593815f5666f8b08e01d1e3ff9b75eab1ca3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:55:06 2023 +0800 :bookmark: Release v2.10.10 commit 337c79571d6e2b073435d95f642634130a5d0bf0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:59:25 2023 +0800 :art: Improve install new version on Windows commit f6f1148de11044c5e58ad786722087d631d8cbb4 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:08:44 2023 +0800 :memo: Update changelogs commit f0ad3268baf62bcc2be569eb21019ceaf4e1861c Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:30:00 2023 +0800 :art: commit 2eb89f067317cbb1ec13c7c4ae4cc7fc62b7fcac Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:25:21 2023 +0800 :rotating_light: commit 0db516e4b9455a87e5e29808ea77712adc4b4371 Merge: 23c3f9f15 e43cf4cf5 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:41 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 23c3f9f154326aefa8743a2d2c9b6596611722af Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:29 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9383 commit e43cf4cf55de73c37a5dc603017b957b15a34499 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:52:10 2023 +0800 :memo: Update changelogs commit b30cb0984aec2ae2248863f056bbef4f701980d5 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:49:04 2023 +0800 :memo: Update changelogs commit d4a3226a566421d01a0bcf9e9ad00cac1cb38ae3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:40 2023 +0800 :memo: Update changelogs commit 65adab61c9f63ab0d692890ff977c567d1628845 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:29 2023 +0800 :art: Adding row overwriting data after enabling filter in database https://github.com/siyuan-note/siyuan/issues/9395 commit 210a3ac5472245eed820a7c76aadb09d50029bb0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:04:39 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 37f950ba4f6028f993786958eb9b3a0d2dca066b Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:39:22 2023 +0800 :lipstick: icon commit 7b1c30bc26b796116e7bd936436b3f9e3e1cb316 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:30:13 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit 6ef13aba784dd6df37b9ac61573b8d8123488743 Merge: acd2eb167 e4907e789 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit acd2eb167707ad5cfa7e5cc7d9e06a6adfe8d92d Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit e4907e7896ceb014a3064565e05631eb621a1f3a Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:16:57 2023 +0800 :art: The block in the editor shows the database icon https://github.com/siyuan-note/siyuan/issues/8894 commit 6f249d768f954e58dad876010927fdcf43b3b05b Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:15:03 2023 +0800 :arrow_up: Upgrade kernel deps commit bb04bf9f705b1169d4efb44c441daf1ecb56cf91 Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:04:39 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 30b0dd08face947c3a9ad0a8c468862a93424cac Merge: c1de5e148 ccb65454a Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c1de5e1488963eb63c9230ff8c691573febb3791 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:44 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/8894 commit ccb65454a2bad059a33cf360aef8f0a895030dbf Author: Daniel <845765@qq.com> Date: Wed Oct 11 08:50:13 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 28e4e1ef2fe1c373b9524a2c3f1cca85eb5452f4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:31:46 2023 +0800 :art: Rename the .sya annotation file when renaming a PDF asset https://github.com/siyuan-note/siyuan/issues/9390 commit 964c822c2b7322f956234726f0bbb15106da35e4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:02:46 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f404d7fe85a66babc255e151fe18ad656dbb5eb2 Merge: ed7084c7b 301b6d9f7 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed7084c7be222cb76a9567c32a5b3b92897e12b3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:43 2023 +0800 :lipstick: commit 301b6d9f70ec0166b0567e925d71d241999a9cd8 Author: Daniel <845765@qq.com> Date: Tue Oct 10 21:55:43 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f62be4719eaba196b83b5972e9c0dcfc1e4b6020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:50:36 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9385 commit 8e2565f347337806eaca57489ab0666c314899c4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:39:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9386 commit e54d8f1a4d2c979f2a3147a292330ad36a83c0fb Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:31:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9393 commit 1fb7187936646643216e6ca96344576738f7019b Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:23:29 2023 +0800 :memo: fix https://github.com/siyuan-note/siyuan/issues/9392 commit ea00753f380f1045ff357447b0e7acc9dd117a28 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9392 commit 4318aa446369eaf4ea85982ba4919b5d47340552 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:51:28 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9376 commit f1d4f8472b63c379b0bd51ee973b1505e615b12c Merge: 3f4c00efc 64df2ffa4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 3f4c00efcddb7030e39616eadc9587dc3e1d17d8 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9376 commit 64df2ffa42df2804778f401ec75203319fe5cba4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:37:51 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 691a0bea33e430f94d46a65f2887e187080c199d Merge: 0e5cae300 7e9243d8d Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:41:05 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 0e5cae30015f960637b1a22a935d55e64e499ef5 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:40:38 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit 7e9243d8dc063bd481e202f73c2b16d367c6cbea Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:05:48 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 7aa4aacfc3e4c356db033305a8e8a9e268c8c427 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:30:10 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit d02381d3f2cabe4a0fa7a5518b79c7030dae8c0e Merge: 449d2dbf8 6e9099ea1 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:14 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 449d2dbf87d838409351fc8c4b7a42af59dc65c3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:03 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9256 commit 6e9099ea12ba692b4aab7cef34bc61458eb6ec14 Author: Daniel <845765@qq.com> Date: Tue Oct 10 16:52:40 2023 +0800 :lock: Authenticate requests of assets other than 127.0.0.1 Fix https://github.com/siyuan-note/siyuan/issues/9388 commit 11786381cf6b1d5f58c862ab99a0993ac6ab4ad4 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Tue Oct 10 16:21:50 2023 +0800 Improve event bus `open-siyuan-url-plugin` (#9256) * :art: Improve plugin event bus `open-siyuan-url-plugin` * :bug: Avoid plug-in names with the same prefix * Update onGetConfig.ts commit 2c36af78bc789505c8d2d461c70aa9e36a782d2f Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 16:15:24 2023 +0800 :rotating_light: commit b0e3efa774c0d500567c96e1f1720cd11271dd0e Author: Daniel <845765@qq.com> Date: Tue Oct 10 11:41:46 2023 +0800 :bookmark: Release v2.10.9 commit d690475ae63c41f486eb752de203fe2a90b7e2c2 Merge: c8a6f4185 811bac942 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:58:46 2023 +0800 Merge remote-tracking branch 'origin/master' commit c8a6f4185e25813687883ab241a18d21ae8a5b22 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:18:57 2023 +0800 :bookmark: Release v2.10.9 commit cdcec7e58dd597b87967c456107e062db90c41e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:29:25 2023 +0800 :memo: Update changelogs commit 1eccb8ba4d6e7f9a9b37f18f9bd444920d93744c Merge: a3094fe3e 3827753b7 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:26:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a3094fe3ead644f67886324f165e6157818ed680 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:25:48 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9384 commit 3827753b7c7391680af13c9ea5812ab4247e8381 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:07:34 2023 +0800 :art: Upgrade Electron https://github.com/siyuan-note/siyuan/issues/9342 commit 567394afba01704c66a4e65bc54260becc2eb034 Author: Daniel <845765@qq.com> Date: Mon Oct 9 22:42:39 2023 +0800 :memo: Update changelogs commit ff6220abaa2d8316e4ad1771985e47885eac1a45 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Mon Oct 9 21:51:39 2023 +0800 :art: add `@electron/remote` dependency (#9381) commit da0fa0853f46a957c35a282235a53c3fd8e10163 Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:45:36 2023 +0800 :art: Replace non-breaking spaces with normal spaces when copying https://github.com/siyuan-note/siyuan/issues/9382 commit 0ed68847618c241704702757c3324493a3fb8c2a Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:09:35 2023 +0800 :bug: Update av Fix https://github.com/siyuan-note/siyuan/issues/9380 commit 288eb24474ed21416c69d6ec366f22ef67189d8e Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:30:19 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 4965b7b8458edd974efa85483aed8ba4f7a6b106 Merge: 803069d80 902849153 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 803069d8071240447567a233c5ad104bb5962511 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 902849153a87eb75b200ab37b9ff674e8ba382d0 Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:17:40 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit faadbf5960997f42ad22884d7394d2b3fd6bf3e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 16:48:28 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit 9ca11625bd71b67b50e5091f680932762e02862a Merge: 43f06e57d 644e0319d Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:45:06 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 43f06e57d9125ed62f2db0e8d0c10f53ef0d8e0a Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:44:46 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 811bac942ddbdc48f29e587ea6ffb8f68ce2e4ac Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:36 2023 +0800 :art: Free disk space for docker image building GitHub Action commit 66aa802765998feb6af7883e678cc835702d689a Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:28 2023 +0800 :art: Free disk space for docker image building GitHub Action * Update anno.ts * Update index.ts * :art: Adapt to align styles * :art: Adapt to using arrow keys/Esc to select a cell/row * Update row.ts * :art: Adjusted the cell width in attribute view * :bug: Fixed the issue that the first column was misaligned * Update index.ts * Update action.ts
2023-11-09 16:35:49 +08:00
tableHTML += `<div class="av__cell" data-col-id="${column.id}" data-icon="${column.icon}" data-dtype="${column.type}" data-wrap="${column.wrap}"
style="width: ${column.width || "200px"};
${column.wrap ? "" : "white-space: nowrap;"}">
<div draggable="true" class="av__cellheader">
${column.icon ? unicode2Emoji(column.icon, "av__cellicon", true) : `<svg class="av__cellicon"><use xlink:href="#${getColIconByType(column.type)}"></use></svg>`}
<span class="av__celltext">${column.name}</span>
</div>
<div class="av__widthdrag"></div>
2023-06-08 22:56:52 +08:00
</div>`;
calcHTML += `<div class="av__calc${calcHTML ? "" : " av__calc--show"}${column.calc && column.calc.operator !== "" ? " av__calc--ashow" : ""}" data-col-id="${column.id}" data-dtype="${column.type}" data-operator="${column.calc?.operator || ""}"
style="width: ${column.width || "200px"}">${getCalcValue(column) || '<svg><use xlink:href="#iconDown"></use></svg>' + window.siyuan.languages.calc}</div>`;
});
tableHTML += `<div class="block__icons" style="min-height: auto">
<div class="block__icon block__icon--show" data-type="av-header-add"><svg><use xlink:href="#iconAdd"></use></svg></div>
<div class="fn__space"></div>
<div class="block__icon block__icon--show" data-type="av-header-more"><svg><use xlink:href="#iconMore"></use></svg></div>
</div>
</div>`;
// body
data.rows.forEach((row: IAVRow) => {
tableHTML += `<div class="av__row" data-id="${row.id}">
Improve adaptive width for `Attributes View` (#9280) * :art: Attrs View adaptive width * :art: Add CSS class `av__body` * :art: add margins for attribute view * :art: add max-width for attribute view * Squashed commit of the following: commit 642d041513898c9c3fc551f7a8625dc075c6d08a Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:36:25 2023 +0800 :bookmark: Release v2.10.8 commit 43e53672b023ad6c13c28d1d2911bfddfa7e9435 Merge: 6b0f8e00a 0e3b78020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:32 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b0f8e00a8a30c313fbc88fa36334eba971cb2f4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:08 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9334 commit 0e3b7802015cf0ef4834f9bbab471f358c3c726e Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:03:48 2023 +0800 :memo: Update changelogs commit cc3b4e320ef8d57df43a3bea9adc4630d58dcdf5 Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:01:11 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 29f34fe8b8abe05d07bb0c4a2056af4ea6e74896 Author: Daniel <845765@qq.com> Date: Tue Oct 3 12:56:13 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 7556d1c3a28c152ebb5f6655236694d6083c9306 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:49:12 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 558422c4079bc79f4b9997f0cf1183e5ea8ad1c0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:46:25 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 433cb91d7515ccfa5ba9dbb279902187d3c820e0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 10:33:41 2023 +0800 :arrow_up: Upgrade kernel deps commit c5a25fe88f1497f55d5bb4979093c831c572c0e1 Author: Daniel <845765@qq.com> Date: Tue Oct 3 08:52:33 2023 +0800 :bug: Database render deleted block https://ld246.com/article/1695790906050/comment/1696234209062?r=88250#comments commit f6a8ca20cdc7a5df253b202ff637b8bea655e612 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 08:39:36 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 11cc108893b325774e78a4d1f7ba80a2b76bbc8a Author: Daniel <845765@qq.com> Date: Tue Oct 3 07:57:36 2023 +0800 :bug: Create doc with ref Fix https://github.com/siyuan-note/siyuan/issues/9329 commit d869aef346ccdab9044edf8e832be5fb6026b143 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:46:36 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit 3d7bf2eb0fd1c4f9d033970997687030e478fb53 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:39:08 2023 +0800 :art: Remove the access authorization code setting item on the browser-end https://github.com/siyuan-note/siyuan/issues/9331 commit 279e17e8b587694b83b58d730eeb774278ecc670 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:15:33 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit d2356754ddd4d4c9e99e74e50e691ce8c26c1824 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:41:51 2023 +0800 :memo: Update changelogs commit 4fdd0ddef046cefd8f0149e7198020d2677e9af2 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:37:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b4bded40e3a5134e4387b090c56f83567a8942ab Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:24:16 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit bfd27a62d1ec270cd52594a55f766862e9961c05 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:22:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 0aa61fe5b7eb44941410c5591e654ce7850b46d0 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:14:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 7d1e1bf2e59b3ea77986309ac872d1ef4e16dbdf Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:02:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 8c31eb0eac956e63b8e172617ee5cdc783b7658a Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:59:16 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 37892e786b511dd4bd4d5cedc603cc0a438bb651 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:58:48 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit f965ef0945c65f2affa5180cf762c0d498681aac Merge: b709c8458 b2f5ab570 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit b709c8458508b1955ddcef020457e643990e0bb0 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:00 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit b2f5ab5700f4ad30d04c645a466512448225b5d8 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:36:22 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b833087cb6287cd4e7a39d6b50ad42e9394df930 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:33:53 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit dbdddd7ff36da2da3ff03a779ef3af5f4fcc2a69 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:16:08 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b981fa08a04e769793a19862e8916985beefc13f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:05:06 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 6e475e185709e81b39a6ef5d0eae028a3c034369 Author: Daniel <845765@qq.com> Date: Sun Oct 1 11:05:24 2023 +0800 :memo: Update changelogs commit df38f89f4077e30ccafb0fae8da1ca38b781fb4f Merge: 465375422 b69e8d335 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:02:11 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 46537542210a82aab15b991692bfe3b63da31b8f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:01:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9291 commit b69e8d335726fb64e35b4d80b844e4e30e5d6344 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:58:46 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit df487a7c6aace2accba9d3fd576c38f3705d021f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:49:52 2023 +0800 :bug: flash card zoomin status commit c0424caf679ae463aef8b39e003b256263f0e978 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:42:12 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit e8359edebc8867e79dce7b918bf709de15e28242 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:27:07 2023 +0800 :rotating_light: commit c3212235b75352cc23da2e42e14435a3f0ab7aa4 Merge: 64900706b 702926430 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:51 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 64900706b21df441edbe91db3887a81008c19286 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:31 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9313 commit 702926430014c14fd3dbec9fa3a7cbb8fde0122e Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:03:07 2023 +0800 :memo: Update changelogs commit 29d155d0cd617a22a0aa0b65e27c2ae0dc428390 Author: Daniel <845765@qq.com> Date: Sun Oct 1 09:37:46 2023 +0800 :art: Improve missing line breaks when exporting RTF Fix https://github.com/siyuan-note/siyuan/issues/9325 commit 05cfcf7c2b8bda82eb9d0ccd67a4707b9da18a65 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:46:00 2023 +0800 :art: https://ld246.com/article/1695361968294 commit 67e0dad0a750e6c34caa2628e652d294de600ea7 Merge: 856445a6e fee908d01 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:21 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 856445a6ef7af178818ec33ce28ea337ed53e35a Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:06 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9323 commit fee908d01e23b692b5ee8da73611e1205f7be95f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:19:26 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 11d2f7c580176c94dc1708a37d322c752425a08f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:18:27 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 83dce4f3e6577152f931a80bd47e436118af7e61 Merge: 1f2faecf4 49d92538d Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1f2faecf4d63202cb3087d988400dea06dfe8082 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:01 2023 +0800 :zap: breadcrumb commit 49d92538dfa76a70afa5f057274bb2afb99384d3 Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:52:26 2023 +0800 :bug: The subdoc creation path is unstable when a parent doc with the same name exists Fix https://github.com/siyuan-note/siyuan/issues/9322 commit 17dd264479cd0aa40320cb69592af848a751378a Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:34:28 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit e74733b4e1af49977fd77b3df6e37277089ec2de Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:57:23 2023 +0800 :recycle: Refactor create doc by hpath commit f608da26a5d572c981b73d7b53e189f558512a4a Merge: 6b2a4ff0a 121d33e74 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:39 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b2a4ff0aa2e1aeae2f7afedf2e3f752ef7c6cb6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9317 commit 121d33e74d773def64c35d6f9476ad8aa238fa8b Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:56:47 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit 82bed847e6c327cd4bbb3b5cf77e1726ebfe4fff Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 14:40:45 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9320 commit f8b272d596f67cafbd83e3d4d69a2fc4d5c90fae Merge: 2dae1200b ca855c1fa Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2dae1200b48b3813252e9fbcbeb1d77dffd275e6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:40 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9316 commit ca855c1fa54756b5ff9afd1270f4c4d7aa444b9f Author: Daniel <845765@qq.com> Date: Sat Sep 30 11:57:37 2023 +0800 :art: Attribute Panel - Database sort attributes by view column order https://github.com/siyuan-note/siyuan/issues/9319 commit 1063f503756f89afe12125bb59b256e8b9a201b3 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 11:21:46 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/9318 commit 1f899aaf3c3a9aa4d566a51584a4165d8b8b24bd Author: Vanessa <lly219@gmail.com> Date: Fri Sep 29 21:41:14 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9281 commit 2b9bec8e8b07c9fc6280b272a2ea31569ebf0b2f Author: Daniel <845765@qq.com> Date: Fri Sep 29 17:33:18 2023 +0800 :art: Ctrl+N should follow notebook create save path https://ld246.com/article/1695965429553 commit 41e35ea795fd4fe1408e99e5c2b5b1b6c91f2c9b Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:45:23 2023 +0800 :rotating_light: commit 6a37b8661304a6afa9a95716203c407dc2f9c688 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:44 2023 +0800 :rotating_light: commit 4c6b695dae9e132cce01c4f36ed7657a89c322ff Merge: df3f444e4 dc03a5cf3 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:18 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit df3f444e480057ea3bb7582eb180a72cc0f842cd Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:40:44 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9300 commit dc03a5cf38601690649b1536624d3bb6f8985cc2 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:46:29 2023 +0800 :arrow_up: Upgrade kernel deps commit 172b7ed0180d573ad796f1ff6dd6c1aea9384064 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:39:12 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit 6354d04e4bae7a5184847baa30bcba24397b18d8 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:22:17 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit b2a27bb54ca2f761fdfe6c182b463a58132b1861 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Thu Sep 28 22:38:49 2023 +0800 Refactor code language and ts types (#9300) * :art: Code block language list adds custom languages * Update index.d.ts * :art: Improve global variable type definition * :art: Improve global variable type definition * :art: Add constant `EXTRA_CODE_LANGUAGES` commit 17d2a16a9477453691c325bbabf47c1a42d9b4ea Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 22:31:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9264 commit ceb9aef1d6710c806728dd08289906a93d775344 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 17:25:18 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9303 * :art: Improve the width of image in attribute view cell * :art: Adjust the style of rows' gutter * Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of rows' gutter * :bug: Improve the style of icon in attribute view * :art: Improve preview text fields * Revert Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of image in attribute view cell * :art: Improve the style of firstcol * :bug: Fix check icon click event handle * Merge tag 'v2.10.9-dev3' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.9' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.10' into feat/attrs-view-adaptive-width * Squashed commit of the following: commit c8924e37ae8eeffb4b49c30560372722458d4f84 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 12:14:12 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9409 commit 879fdd827d8aa1b817c3df7ca2026413e2a916ba Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:56:16 2023 +0800 :lipstick: dragover commit 9978827389d3ec49e14b7ed9d7dfe506a208e8df Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:34:42 2023 +0800 :art: 数据库块适配外观和宽度调整 commit a20ffeb12b67e87968676d0d7a1b17b1870e7144 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:20:17 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9412 commit f2075fafac55e31468d2519ede6dc98675fc8496 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:04:23 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 5e2910a4e60d61a6b4d64def65aeac9cbdbf8698 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:00:46 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit ac7f8d36dfc7bf73903b4fa3129417475ec6eb9b Merge: 9ae8400b4 d78a0205f Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:40 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9ae8400b474e913e5ed4b3fc26dae5464a1692fe Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:21 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit d78a0205f5a04e342b1dd4b2522ff294d30f952f Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:51:46 2023 +0800 :art: Database table view breadcrumb commit 6b1a2925c9c6404b4bf53007aea17f97675aea5a Merge: 25109b906 9766020b8 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:46 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 25109b906fc4df4d19ea8aa507ed278307b43322 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:35 2023 +0800 :art: 数据库块适配外观和宽度调整 commit 9766020b8950762b6b1e44de48e4e1159cc8c89c Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:08:57 2023 +0800 :art: Update text commit ab673896505f038d99497ab3880352b100d2d916 Merge: 7d6f9bb0d 39c5744f2 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 7d6f9bb0dff9b9cbbc6071a25b25276ab998a652 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:42 2023 +0800 :art: 数据库不能设置布局 commit 39c5744f2fa1d0c8d07ea14ce6a9dbd72ba3bc03 Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:46:29 2023 +0800 :bug: Database table view export does not display select content Fix https://github.com/siyuan-note/siyuan/issues/9428 commit 87ecb7f24acc3c5a20b763979781e7adfa86134d Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:37:47 2023 +0800 :art: Update text commit 69d8c93c98dfee2aa24b7ed1c8a663dfed6546b6 Merge: 623f30b5f f6780c126 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:54 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 623f30b5fc3de9e900ab574555c8af0f254f37e4 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:44 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit f6780c126abfd4576963470ba11a40933c17246e Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:20:51 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit fd94e9df0cdbaa13cbd5478fdf14d55e29bec42a Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 00:04:16 2023 +0800 :art: commit 51f66879ccc5808524c5e65802951cd9bff8eab3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:50:31 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 49305b8911249ab5f2548c7433afa816b9506e95 Merge: 2f0f563e1 8399aba10 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:26:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2f0f563e121ceacdf0ca0e1f53b6718812f0d5e7 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:25:58 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 8399aba10b53c701859402432efbd426f137a800 Author: Daniel <845765@qq.com> Date: Fri Oct 13 23:22:17 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 22efb3d5235fbbe1951fee9caf1009638e4e56c4 Merge: f95084e96 c3d1c04af Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:07:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f95084e96a3ca62add6cc27ac283132b4e7cd1be Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:06:53 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit c3d1c04af4066c231363d72fa18bd65d600b8dca Author: Daniel <845765@qq.com> Date: Fri Oct 13 22:50:11 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit a11ea9c3479aaa74db18ca7a22b0d4616f18f665 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:37:15 2023 +0800 :lipstick: commit 99ec5c10a4ed614e13a6a935dace95637716977f Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:32:17 2023 +0800 :art: showHiddenFiles commit 49426ac916279cc000670580e4586c2b4df51c72 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:15:20 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9425 commit d445c5401ffb4a1b2fcf01abc062734efc6c6cb2 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:54:35 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 0c4aee7388c03202a4bb3d11c7b89b0e21e48d85 Merge: c34d84ce2 daa9ddfd5 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c34d84ce29b8ccbb78dbcc96584804253997c0d1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit daa9ddfd50eebdc98084d3aba28f09008294ba54 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:43:43 2023 +0800 :art: Don't load plugin when the user hasn't agreed to trust bazaar content yet Fix https://github.com/siyuan-note/siyuan/issues/9426 commit 01b19ea2c85c7f039ff427b03d6a2f0d7f4b0488 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:03:41 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 7a9a85ea323e79e8a122d5e19a4dfb9618a2ce41 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:55:27 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 1815ec1b39ba30b427d366d41754582476b8f6a4 Merge: 73edee57a 00ed190ad Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 73edee57a4f755e293ac7a2b04e2381813839550 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:32 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 00ed190ad76f357ec780d68888a04dbd5f402ea5 Author: Daniel <845765@qq.com> Date: Fri Oct 13 13:21:53 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 48e871c75e59cbf7de299e8908a1ba25ddf76278 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 12:33:29 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 3554333da9be4b22d844af83b8c540a7b6feb874 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:55:51 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit af810b279d6e6535947a143987627b3aa1e066c0 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:34:19 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 673c952f079d4a7aa42f6bf59a348f27cfcaf360 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:30:44 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 3b87a0d9ed8c313ecc75c29c7c990c7d17d68bab Merge: ed31305d1 3de7781b1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:09:07 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed31305d1d291010c3d4b6b223b924823b7be95e Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:08:56 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 3de7781b1c78fb35ba3e90b729015bd0d9cfaa45 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:44:29 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 2304921feefff56d34d4b673cba8a491f399f2a6 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:42:51 2023 +0800 :art: Update flashcard user guide commit 55fb8b19abf9d91f40fd4d177dc5f20758e1a3b3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 10:14:11 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit 8998de9d812eeb67060a7dd3e7eacec28abea656 Merge: 5b38e79be df9b55c71 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:35 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 5b38e79be75e32f33332a6f700263e1460d645bf Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:24 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit df9b55c71ba6aea40617a2fc17ad9d4908edc81c Author: Daniel <845765@qq.com> Date: Fri Oct 13 08:46:29 2023 +0800 :art: Database template columns support sort commit 3da9f0f1e133d5e69e5af674d6b8f83b9f6136f2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:40:09 2023 +0800 :bug: 新增行后弹出的输入框 commit 79a88dfbece66248b9eaa39a1821b4e2a8025148 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:23:18 2023 +0800 :rotating_light: commit 40a1e6d5cc8107abfa7addb27c347f6677a1e4fe Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:21:53 2023 +0800 :lipstick: database loading commit 2872dab9eb9c40e06d43886728ddad84c1c18722 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:11:59 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 025a8ea5a7b38b444957a73ddbcde7c2f1a054ed Merge: 02ec0f6e5 0ea9b8f5a Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 02ec0f6e5a68e7810545f8a5e132465719dc0442 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:01 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 0ea9b8f5a7223bcdab3b8f8e5e890d908e164c34 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:58:32 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit 1590913db73d8def51a05544b8a2b5e654285aa3 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:55:57 2023 +0800 :art: Update attr panel for av commit d257caff8d5d12a1751c3d18d3ca972cd5ef453d Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:38:37 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit fdaf8d7e595f11e3e0d67b01427a0485532191c6 Merge: 70e82cd98 238609f25 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 70e82cd981e5890aaad782631741521f5cd7ef41 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:19 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9416 commit 238609f25f39c42fa28bf14d4fa767f8c912b41e Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:33:23 2023 +0800 :zap: Improve performance of loading database table view commit 2dd558b6090b96cc77db2dac0002db67b5b772ce Merge: fe0b1e8d6 8fb35f556 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit fe0b1e8d6023c5d3e02614bf2515b93dd19b0b5e Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:31 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9415 commit 8fb35f5565c197617f57f02def80f8bd6b374d3d Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:15:36 2023 +0800 :art: Database template columns support number filter Fix https://github.com/siyuan-note/siyuan/issues/9414 commit 01670f2b00f31b1421ebdef9795d880863f09cdc Merge: f792d141f ffcdb5d39 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:48 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f792d141fc412a54165a9fda87216d497258c5da Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:09 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9408 commit ffcdb5d398da4b70a6cc4c06478a1f97085bf482 Author: Daniel <845765@qq.com> Date: Thu Oct 12 16:37:09 2023 +0800 :bug: SVG images cannot be displayed on some systems https://github.com/siyuan-note/siyuan/issues/9413 commit fb1f80cf4de0bdd45b140facf351c86fa243c757 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:22:55 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9406 commit da51aded35aaf8b5b0d475b49a98d179865992de Merge: a4bcae87e 09ef5fddf Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:42 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a4bcae87ee24a2592c8c43b669efc9d284a588c2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:29 2023 +0800 :bug: 数据库数字填0无效 commit 09ef5fddf9335f8a2e14b5eb197509ba80324e1f Author: Daniel <845765@qq.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: Database template columns support calculations https://github.com/siyuan-note/siyuan/issues/9408 commit 1b595d014a739094cede52527606d6d45e3ed35c Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: #9408 commit 21d1a0515ae46352a1bace0e17beac571d32c088 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:54:15 2023 +0800 :lipstick: 编辑后表头不固定 commit c5206f70843c866746d4db87c7e33681b98e48d2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:14:29 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9405 commit f0f55d3b026446f996e7c83fd49580d9db8592a9 Merge: 019412404 92151f715 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:19 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 01941240470a9bac540655507d2aa354bf5f46a1 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:09 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9403 commit 92151f71504332d96456f52087423ba967c02f78 Author: Daniel <845765@qq.com> Date: Thu Oct 12 10:12:44 2023 +0800 :art: Change database template column custom attribute action Fix https://github.com/siyuan-note/siyuan/issues/9401 commit b8e8aa0593576563e9c462df3e18900fb3ec41d6 Author: Daniel <845765@qq.com> Date: Wed Oct 11 17:00:21 2023 +0800 :hammer: Clean code commit b17aff577300a63cf77f63e2a9665cc0a2692f1e Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:54:40 2023 +0800 :bug: commit 11174958bc87bc00937d957f6004854f5105dd09 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:50:28 2023 +0800 :bug: 预览模式下点击只读 commit 130884d758774fac373c41a8540ce6d90c741ba6 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:23:01 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9404 commit 7486e1a6e22f765cffd4d231b0adb984bfe70089 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 17:28:40 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9402 commit eb93255cf32782a93d3c9b3a6d8bb3cb9f0ff7ef Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:57:14 2023 +0800 :hammer: Clean code commit fd46593815f5666f8b08e01d1e3ff9b75eab1ca3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:55:06 2023 +0800 :bookmark: Release v2.10.10 commit 337c79571d6e2b073435d95f642634130a5d0bf0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:59:25 2023 +0800 :art: Improve install new version on Windows commit f6f1148de11044c5e58ad786722087d631d8cbb4 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:08:44 2023 +0800 :memo: Update changelogs commit f0ad3268baf62bcc2be569eb21019ceaf4e1861c Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:30:00 2023 +0800 :art: commit 2eb89f067317cbb1ec13c7c4ae4cc7fc62b7fcac Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:25:21 2023 +0800 :rotating_light: commit 0db516e4b9455a87e5e29808ea77712adc4b4371 Merge: 23c3f9f15 e43cf4cf5 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:41 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 23c3f9f154326aefa8743a2d2c9b6596611722af Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:29 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9383 commit e43cf4cf55de73c37a5dc603017b957b15a34499 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:52:10 2023 +0800 :memo: Update changelogs commit b30cb0984aec2ae2248863f056bbef4f701980d5 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:49:04 2023 +0800 :memo: Update changelogs commit d4a3226a566421d01a0bcf9e9ad00cac1cb38ae3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:40 2023 +0800 :memo: Update changelogs commit 65adab61c9f63ab0d692890ff977c567d1628845 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:29 2023 +0800 :art: Adding row overwriting data after enabling filter in database https://github.com/siyuan-note/siyuan/issues/9395 commit 210a3ac5472245eed820a7c76aadb09d50029bb0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:04:39 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 37f950ba4f6028f993786958eb9b3a0d2dca066b Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:39:22 2023 +0800 :lipstick: icon commit 7b1c30bc26b796116e7bd936436b3f9e3e1cb316 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:30:13 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit 6ef13aba784dd6df37b9ac61573b8d8123488743 Merge: acd2eb167 e4907e789 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit acd2eb167707ad5cfa7e5cc7d9e06a6adfe8d92d Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit e4907e7896ceb014a3064565e05631eb621a1f3a Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:16:57 2023 +0800 :art: The block in the editor shows the database icon https://github.com/siyuan-note/siyuan/issues/8894 commit 6f249d768f954e58dad876010927fdcf43b3b05b Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:15:03 2023 +0800 :arrow_up: Upgrade kernel deps commit bb04bf9f705b1169d4efb44c441daf1ecb56cf91 Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:04:39 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 30b0dd08face947c3a9ad0a8c468862a93424cac Merge: c1de5e148 ccb65454a Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c1de5e1488963eb63c9230ff8c691573febb3791 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:44 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/8894 commit ccb65454a2bad059a33cf360aef8f0a895030dbf Author: Daniel <845765@qq.com> Date: Wed Oct 11 08:50:13 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 28e4e1ef2fe1c373b9524a2c3f1cca85eb5452f4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:31:46 2023 +0800 :art: Rename the .sya annotation file when renaming a PDF asset https://github.com/siyuan-note/siyuan/issues/9390 commit 964c822c2b7322f956234726f0bbb15106da35e4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:02:46 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f404d7fe85a66babc255e151fe18ad656dbb5eb2 Merge: ed7084c7b 301b6d9f7 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed7084c7be222cb76a9567c32a5b3b92897e12b3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:43 2023 +0800 :lipstick: commit 301b6d9f70ec0166b0567e925d71d241999a9cd8 Author: Daniel <845765@qq.com> Date: Tue Oct 10 21:55:43 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f62be4719eaba196b83b5972e9c0dcfc1e4b6020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:50:36 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9385 commit 8e2565f347337806eaca57489ab0666c314899c4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:39:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9386 commit e54d8f1a4d2c979f2a3147a292330ad36a83c0fb Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:31:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9393 commit 1fb7187936646643216e6ca96344576738f7019b Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:23:29 2023 +0800 :memo: fix https://github.com/siyuan-note/siyuan/issues/9392 commit ea00753f380f1045ff357447b0e7acc9dd117a28 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9392 commit 4318aa446369eaf4ea85982ba4919b5d47340552 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:51:28 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9376 commit f1d4f8472b63c379b0bd51ee973b1505e615b12c Merge: 3f4c00efc 64df2ffa4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 3f4c00efcddb7030e39616eadc9587dc3e1d17d8 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9376 commit 64df2ffa42df2804778f401ec75203319fe5cba4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:37:51 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 691a0bea33e430f94d46a65f2887e187080c199d Merge: 0e5cae300 7e9243d8d Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:41:05 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 0e5cae30015f960637b1a22a935d55e64e499ef5 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:40:38 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit 7e9243d8dc063bd481e202f73c2b16d367c6cbea Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:05:48 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 7aa4aacfc3e4c356db033305a8e8a9e268c8c427 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:30:10 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit d02381d3f2cabe4a0fa7a5518b79c7030dae8c0e Merge: 449d2dbf8 6e9099ea1 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:14 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 449d2dbf87d838409351fc8c4b7a42af59dc65c3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:03 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9256 commit 6e9099ea12ba692b4aab7cef34bc61458eb6ec14 Author: Daniel <845765@qq.com> Date: Tue Oct 10 16:52:40 2023 +0800 :lock: Authenticate requests of assets other than 127.0.0.1 Fix https://github.com/siyuan-note/siyuan/issues/9388 commit 11786381cf6b1d5f58c862ab99a0993ac6ab4ad4 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Tue Oct 10 16:21:50 2023 +0800 Improve event bus `open-siyuan-url-plugin` (#9256) * :art: Improve plugin event bus `open-siyuan-url-plugin` * :bug: Avoid plug-in names with the same prefix * Update onGetConfig.ts commit 2c36af78bc789505c8d2d461c70aa9e36a782d2f Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 16:15:24 2023 +0800 :rotating_light: commit b0e3efa774c0d500567c96e1f1720cd11271dd0e Author: Daniel <845765@qq.com> Date: Tue Oct 10 11:41:46 2023 +0800 :bookmark: Release v2.10.9 commit d690475ae63c41f486eb752de203fe2a90b7e2c2 Merge: c8a6f4185 811bac942 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:58:46 2023 +0800 Merge remote-tracking branch 'origin/master' commit c8a6f4185e25813687883ab241a18d21ae8a5b22 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:18:57 2023 +0800 :bookmark: Release v2.10.9 commit cdcec7e58dd597b87967c456107e062db90c41e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:29:25 2023 +0800 :memo: Update changelogs commit 1eccb8ba4d6e7f9a9b37f18f9bd444920d93744c Merge: a3094fe3e 3827753b7 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:26:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a3094fe3ead644f67886324f165e6157818ed680 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:25:48 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9384 commit 3827753b7c7391680af13c9ea5812ab4247e8381 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:07:34 2023 +0800 :art: Upgrade Electron https://github.com/siyuan-note/siyuan/issues/9342 commit 567394afba01704c66a4e65bc54260becc2eb034 Author: Daniel <845765@qq.com> Date: Mon Oct 9 22:42:39 2023 +0800 :memo: Update changelogs commit ff6220abaa2d8316e4ad1771985e47885eac1a45 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Mon Oct 9 21:51:39 2023 +0800 :art: add `@electron/remote` dependency (#9381) commit da0fa0853f46a957c35a282235a53c3fd8e10163 Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:45:36 2023 +0800 :art: Replace non-breaking spaces with normal spaces when copying https://github.com/siyuan-note/siyuan/issues/9382 commit 0ed68847618c241704702757c3324493a3fb8c2a Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:09:35 2023 +0800 :bug: Update av Fix https://github.com/siyuan-note/siyuan/issues/9380 commit 288eb24474ed21416c69d6ec366f22ef67189d8e Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:30:19 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 4965b7b8458edd974efa85483aed8ba4f7a6b106 Merge: 803069d80 902849153 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 803069d8071240447567a233c5ad104bb5962511 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 902849153a87eb75b200ab37b9ff674e8ba382d0 Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:17:40 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit faadbf5960997f42ad22884d7394d2b3fd6bf3e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 16:48:28 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit 9ca11625bd71b67b50e5091f680932762e02862a Merge: 43f06e57d 644e0319d Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:45:06 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 43f06e57d9125ed62f2db0e8d0c10f53ef0d8e0a Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:44:46 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 811bac942ddbdc48f29e587ea6ffb8f68ce2e4ac Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:36 2023 +0800 :art: Free disk space for docker image building GitHub Action commit 66aa802765998feb6af7883e678cc835702d689a Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:28 2023 +0800 :art: Free disk space for docker image building GitHub Action * Update anno.ts * Update index.ts * :art: Adapt to align styles * :art: Adapt to using arrow keys/Esc to select a cell/row * Update row.ts * :art: Adjusted the cell width in attribute view * :bug: Fixed the issue that the first column was misaligned * Update index.ts * Update action.ts
2023-11-09 16:35:49 +08:00
<div class="av__firstcol">
<svg class="icon__check"><use xlink:href="#iconUncheck"></use></svg>
<div class="av__gutters">
<button class="av__gutter ariaLabel" draggable="true" data-position="right" aria-label="${window.siyuan.languages.rowTip}">
<svg><use xlink:href="#iconDrag"></use></svg>
</button>
<button class="av__gutter ariaLabel" data-action="add" data-position="right" aria-label="${isMac() ? window.siyuan.languages.addBelowAbove : window.siyuan.languages.addBelowAbove.replace("", "Alt+")}">
<svg><use xlink:href="#iconAdd"></use></svg>
</button>
</div>
</div>`;
row.cells.forEach((cell, index) => {
if (data.columns[index].hidden) {
return;
}
2023-07-12 00:08:00 +08:00
let text = "";
if (["text", "template"].includes(cell.valueType)) {
text = `<span class="av__celltext">${cell.value ? (cell.value[cell.valueType as "text"].content || "") : ""}</span>`;
} else if (["url", "email", "phone"].includes(cell.valueType)) {
const urlContent = cell.value ? cell.value[cell.valueType as "url"].content : "";
// https://github.com/siyuan-note/siyuan/issues/9291
let urlAttr = "";
if (cell.valueType === "url") {
urlAttr = ` data-href="${urlContent}"`;
}
text = `<span class="av__celltext av__celltext--url" data-type="${cell.valueType}"${urlAttr}>${urlContent}</span>`;
} else if (cell.valueType === "block") {
text = `<span class="av__celltext">${cell.value.block.content || ""}</span>`;
if (cell.value?.isDetached) {
text += `<span class="b3-chip b3-chip--info b3-chip--small" data-type="block-more" >${window.siyuan.languages.more}</span>`;
} else {
text += `<span class="b3-chip b3-chip--info b3-chip--small" data-type="block-ref" data-id="${cell.value.block.id}" data-subtype="s">${window.siyuan.languages.openBy}</span>`;
}
} else if (cell.valueType === "number") {
2023-10-06 10:56:30 +08:00
text = `<span class="av__celltext" data-content="${cell.value?.number.isNotEmpty ? cell.value?.number.content : ""}">${cell.value?.number.formattedContent || ""}</span>`;
} else if (cell.valueType === "mSelect" || cell.valueType === "select") {
cell.value?.mSelect?.forEach((item) => {
text += `<span class="b3-chip" style="background-color:var(--b3-font-background${item.color});color:var(--b3-font-color${item.color})">${item.content}</span>`;
});
if (!text) {
2023-07-12 00:08:00 +08:00
text = '<span class="av__celltext"></span>';
} else {
text = `<span class="av__celltext">${text}</span>`;
}
} else if (cell.valueType === "date") {
text = '<span class="av__celltext">';
const dataValue = cell.value ? cell.value.date : null;
if (dataValue && dataValue.isNotEmpty) {
text += dayjs(dataValue.content).format(dataValue.isNotTime ? "YYYY-MM-DD" : "YYYY-MM-DD HH:mm");
}
if (dataValue && dataValue.hasEndDate && dataValue.isNotEmpty && dataValue.isNotEmpty2) {
text += `<svg class="av__cellicon"><use xlink:href="#iconForward"></use></svg>${dayjs(dataValue.content2).format(dataValue.isNotTime ? "YYYY-MM-DD" : "YYYY-MM-DD HH:mm")}`;
}
text += "</span>";
} else if (["created", "updated"].includes(cell.valueType)) {
text = '<span class="av__celltext">';
const dataValue = cell.value ? cell.value[cell.valueType as "date"] : null;
if (dataValue && dataValue.isNotEmpty) {
text += dayjs(dataValue.content).format("YYYY-MM-DD HH:mm");
}
2023-07-25 20:40:28 +08:00
text += "</span>";
} else if (cell.valueType === "mAsset") {
cell.value?.mAsset?.forEach((item) => {
if (item.type === "image") {
text += `<img class="av__cellassetimg" src="${item.content}">`;
} else {
text += `<span class="b3-chip av__celltext--url" data-url="${item.content}">${item.name}</span>`;
}
});
if (!text) {
text = '<span class="av__celltext"></span>';
} else {
text = `<span class="av__celltext">${text}</span>`;
}
}
if (["text", "template", "url", "email", "phone", "number", "date", "created", "updated"].includes(cell.valueType)) {
if (cell.value && cell.value[cell.valueType as "url"].content) {
text += `<span ${cell.valueType !== "number" ? "" : 'style="right:auto;left:5px"'} data-type="copy" class="b3-tooltips b3-tooltips__n block__icon" aria-label="${window.siyuan.languages.copy}"><svg><use xlink:href="#iconCopy"></use></svg></span>`;
}
}
Improve adaptive width for `Attributes View` (#9280) * :art: Attrs View adaptive width * :art: Add CSS class `av__body` * :art: add margins for attribute view * :art: add max-width for attribute view * Squashed commit of the following: commit 642d041513898c9c3fc551f7a8625dc075c6d08a Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:36:25 2023 +0800 :bookmark: Release v2.10.8 commit 43e53672b023ad6c13c28d1d2911bfddfa7e9435 Merge: 6b0f8e00a 0e3b78020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:32 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b0f8e00a8a30c313fbc88fa36334eba971cb2f4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:08 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9334 commit 0e3b7802015cf0ef4834f9bbab471f358c3c726e Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:03:48 2023 +0800 :memo: Update changelogs commit cc3b4e320ef8d57df43a3bea9adc4630d58dcdf5 Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:01:11 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 29f34fe8b8abe05d07bb0c4a2056af4ea6e74896 Author: Daniel <845765@qq.com> Date: Tue Oct 3 12:56:13 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 7556d1c3a28c152ebb5f6655236694d6083c9306 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:49:12 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 558422c4079bc79f4b9997f0cf1183e5ea8ad1c0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:46:25 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 433cb91d7515ccfa5ba9dbb279902187d3c820e0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 10:33:41 2023 +0800 :arrow_up: Upgrade kernel deps commit c5a25fe88f1497f55d5bb4979093c831c572c0e1 Author: Daniel <845765@qq.com> Date: Tue Oct 3 08:52:33 2023 +0800 :bug: Database render deleted block https://ld246.com/article/1695790906050/comment/1696234209062?r=88250#comments commit f6a8ca20cdc7a5df253b202ff637b8bea655e612 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 08:39:36 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 11cc108893b325774e78a4d1f7ba80a2b76bbc8a Author: Daniel <845765@qq.com> Date: Tue Oct 3 07:57:36 2023 +0800 :bug: Create doc with ref Fix https://github.com/siyuan-note/siyuan/issues/9329 commit d869aef346ccdab9044edf8e832be5fb6026b143 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:46:36 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit 3d7bf2eb0fd1c4f9d033970997687030e478fb53 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:39:08 2023 +0800 :art: Remove the access authorization code setting item on the browser-end https://github.com/siyuan-note/siyuan/issues/9331 commit 279e17e8b587694b83b58d730eeb774278ecc670 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:15:33 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit d2356754ddd4d4c9e99e74e50e691ce8c26c1824 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:41:51 2023 +0800 :memo: Update changelogs commit 4fdd0ddef046cefd8f0149e7198020d2677e9af2 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:37:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b4bded40e3a5134e4387b090c56f83567a8942ab Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:24:16 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit bfd27a62d1ec270cd52594a55f766862e9961c05 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:22:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 0aa61fe5b7eb44941410c5591e654ce7850b46d0 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:14:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 7d1e1bf2e59b3ea77986309ac872d1ef4e16dbdf Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:02:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 8c31eb0eac956e63b8e172617ee5cdc783b7658a Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:59:16 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 37892e786b511dd4bd4d5cedc603cc0a438bb651 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:58:48 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit f965ef0945c65f2affa5180cf762c0d498681aac Merge: b709c8458 b2f5ab570 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit b709c8458508b1955ddcef020457e643990e0bb0 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:00 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit b2f5ab5700f4ad30d04c645a466512448225b5d8 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:36:22 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b833087cb6287cd4e7a39d6b50ad42e9394df930 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:33:53 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit dbdddd7ff36da2da3ff03a779ef3af5f4fcc2a69 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:16:08 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b981fa08a04e769793a19862e8916985beefc13f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:05:06 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 6e475e185709e81b39a6ef5d0eae028a3c034369 Author: Daniel <845765@qq.com> Date: Sun Oct 1 11:05:24 2023 +0800 :memo: Update changelogs commit df38f89f4077e30ccafb0fae8da1ca38b781fb4f Merge: 465375422 b69e8d335 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:02:11 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 46537542210a82aab15b991692bfe3b63da31b8f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:01:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9291 commit b69e8d335726fb64e35b4d80b844e4e30e5d6344 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:58:46 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit df487a7c6aace2accba9d3fd576c38f3705d021f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:49:52 2023 +0800 :bug: flash card zoomin status commit c0424caf679ae463aef8b39e003b256263f0e978 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:42:12 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit e8359edebc8867e79dce7b918bf709de15e28242 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:27:07 2023 +0800 :rotating_light: commit c3212235b75352cc23da2e42e14435a3f0ab7aa4 Merge: 64900706b 702926430 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:51 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 64900706b21df441edbe91db3887a81008c19286 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:31 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9313 commit 702926430014c14fd3dbec9fa3a7cbb8fde0122e Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:03:07 2023 +0800 :memo: Update changelogs commit 29d155d0cd617a22a0aa0b65e27c2ae0dc428390 Author: Daniel <845765@qq.com> Date: Sun Oct 1 09:37:46 2023 +0800 :art: Improve missing line breaks when exporting RTF Fix https://github.com/siyuan-note/siyuan/issues/9325 commit 05cfcf7c2b8bda82eb9d0ccd67a4707b9da18a65 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:46:00 2023 +0800 :art: https://ld246.com/article/1695361968294 commit 67e0dad0a750e6c34caa2628e652d294de600ea7 Merge: 856445a6e fee908d01 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:21 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 856445a6ef7af178818ec33ce28ea337ed53e35a Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:06 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9323 commit fee908d01e23b692b5ee8da73611e1205f7be95f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:19:26 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 11d2f7c580176c94dc1708a37d322c752425a08f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:18:27 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 83dce4f3e6577152f931a80bd47e436118af7e61 Merge: 1f2faecf4 49d92538d Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1f2faecf4d63202cb3087d988400dea06dfe8082 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:01 2023 +0800 :zap: breadcrumb commit 49d92538dfa76a70afa5f057274bb2afb99384d3 Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:52:26 2023 +0800 :bug: The subdoc creation path is unstable when a parent doc with the same name exists Fix https://github.com/siyuan-note/siyuan/issues/9322 commit 17dd264479cd0aa40320cb69592af848a751378a Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:34:28 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit e74733b4e1af49977fd77b3df6e37277089ec2de Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:57:23 2023 +0800 :recycle: Refactor create doc by hpath commit f608da26a5d572c981b73d7b53e189f558512a4a Merge: 6b2a4ff0a 121d33e74 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:39 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b2a4ff0aa2e1aeae2f7afedf2e3f752ef7c6cb6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9317 commit 121d33e74d773def64c35d6f9476ad8aa238fa8b Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:56:47 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit 82bed847e6c327cd4bbb3b5cf77e1726ebfe4fff Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 14:40:45 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9320 commit f8b272d596f67cafbd83e3d4d69a2fc4d5c90fae Merge: 2dae1200b ca855c1fa Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2dae1200b48b3813252e9fbcbeb1d77dffd275e6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:40 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9316 commit ca855c1fa54756b5ff9afd1270f4c4d7aa444b9f Author: Daniel <845765@qq.com> Date: Sat Sep 30 11:57:37 2023 +0800 :art: Attribute Panel - Database sort attributes by view column order https://github.com/siyuan-note/siyuan/issues/9319 commit 1063f503756f89afe12125bb59b256e8b9a201b3 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 11:21:46 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/9318 commit 1f899aaf3c3a9aa4d566a51584a4165d8b8b24bd Author: Vanessa <lly219@gmail.com> Date: Fri Sep 29 21:41:14 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9281 commit 2b9bec8e8b07c9fc6280b272a2ea31569ebf0b2f Author: Daniel <845765@qq.com> Date: Fri Sep 29 17:33:18 2023 +0800 :art: Ctrl+N should follow notebook create save path https://ld246.com/article/1695965429553 commit 41e35ea795fd4fe1408e99e5c2b5b1b6c91f2c9b Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:45:23 2023 +0800 :rotating_light: commit 6a37b8661304a6afa9a95716203c407dc2f9c688 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:44 2023 +0800 :rotating_light: commit 4c6b695dae9e132cce01c4f36ed7657a89c322ff Merge: df3f444e4 dc03a5cf3 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:18 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit df3f444e480057ea3bb7582eb180a72cc0f842cd Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:40:44 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9300 commit dc03a5cf38601690649b1536624d3bb6f8985cc2 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:46:29 2023 +0800 :arrow_up: Upgrade kernel deps commit 172b7ed0180d573ad796f1ff6dd6c1aea9384064 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:39:12 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit 6354d04e4bae7a5184847baa30bcba24397b18d8 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:22:17 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit b2a27bb54ca2f761fdfe6c182b463a58132b1861 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Thu Sep 28 22:38:49 2023 +0800 Refactor code language and ts types (#9300) * :art: Code block language list adds custom languages * Update index.d.ts * :art: Improve global variable type definition * :art: Improve global variable type definition * :art: Add constant `EXTRA_CODE_LANGUAGES` commit 17d2a16a9477453691c325bbabf47c1a42d9b4ea Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 22:31:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9264 commit ceb9aef1d6710c806728dd08289906a93d775344 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 17:25:18 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9303 * :art: Improve the width of image in attribute view cell * :art: Adjust the style of rows' gutter * Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of rows' gutter * :bug: Improve the style of icon in attribute view * :art: Improve preview text fields * Revert Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of image in attribute view cell * :art: Improve the style of firstcol * :bug: Fix check icon click event handle * Merge tag 'v2.10.9-dev3' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.9' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.10' into feat/attrs-view-adaptive-width * Squashed commit of the following: commit c8924e37ae8eeffb4b49c30560372722458d4f84 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 12:14:12 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9409 commit 879fdd827d8aa1b817c3df7ca2026413e2a916ba Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:56:16 2023 +0800 :lipstick: dragover commit 9978827389d3ec49e14b7ed9d7dfe506a208e8df Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:34:42 2023 +0800 :art: 数据库块适配外观和宽度调整 commit a20ffeb12b67e87968676d0d7a1b17b1870e7144 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:20:17 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9412 commit f2075fafac55e31468d2519ede6dc98675fc8496 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:04:23 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 5e2910a4e60d61a6b4d64def65aeac9cbdbf8698 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:00:46 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit ac7f8d36dfc7bf73903b4fa3129417475ec6eb9b Merge: 9ae8400b4 d78a0205f Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:40 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9ae8400b474e913e5ed4b3fc26dae5464a1692fe Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:21 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit d78a0205f5a04e342b1dd4b2522ff294d30f952f Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:51:46 2023 +0800 :art: Database table view breadcrumb commit 6b1a2925c9c6404b4bf53007aea17f97675aea5a Merge: 25109b906 9766020b8 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:46 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 25109b906fc4df4d19ea8aa507ed278307b43322 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:35 2023 +0800 :art: 数据库块适配外观和宽度调整 commit 9766020b8950762b6b1e44de48e4e1159cc8c89c Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:08:57 2023 +0800 :art: Update text commit ab673896505f038d99497ab3880352b100d2d916 Merge: 7d6f9bb0d 39c5744f2 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 7d6f9bb0dff9b9cbbc6071a25b25276ab998a652 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:42 2023 +0800 :art: 数据库不能设置布局 commit 39c5744f2fa1d0c8d07ea14ce6a9dbd72ba3bc03 Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:46:29 2023 +0800 :bug: Database table view export does not display select content Fix https://github.com/siyuan-note/siyuan/issues/9428 commit 87ecb7f24acc3c5a20b763979781e7adfa86134d Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:37:47 2023 +0800 :art: Update text commit 69d8c93c98dfee2aa24b7ed1c8a663dfed6546b6 Merge: 623f30b5f f6780c126 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:54 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 623f30b5fc3de9e900ab574555c8af0f254f37e4 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:44 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit f6780c126abfd4576963470ba11a40933c17246e Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:20:51 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit fd94e9df0cdbaa13cbd5478fdf14d55e29bec42a Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 00:04:16 2023 +0800 :art: commit 51f66879ccc5808524c5e65802951cd9bff8eab3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:50:31 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 49305b8911249ab5f2548c7433afa816b9506e95 Merge: 2f0f563e1 8399aba10 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:26:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2f0f563e121ceacdf0ca0e1f53b6718812f0d5e7 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:25:58 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 8399aba10b53c701859402432efbd426f137a800 Author: Daniel <845765@qq.com> Date: Fri Oct 13 23:22:17 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 22efb3d5235fbbe1951fee9caf1009638e4e56c4 Merge: f95084e96 c3d1c04af Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:07:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f95084e96a3ca62add6cc27ac283132b4e7cd1be Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:06:53 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit c3d1c04af4066c231363d72fa18bd65d600b8dca Author: Daniel <845765@qq.com> Date: Fri Oct 13 22:50:11 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit a11ea9c3479aaa74db18ca7a22b0d4616f18f665 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:37:15 2023 +0800 :lipstick: commit 99ec5c10a4ed614e13a6a935dace95637716977f Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:32:17 2023 +0800 :art: showHiddenFiles commit 49426ac916279cc000670580e4586c2b4df51c72 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:15:20 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9425 commit d445c5401ffb4a1b2fcf01abc062734efc6c6cb2 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:54:35 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 0c4aee7388c03202a4bb3d11c7b89b0e21e48d85 Merge: c34d84ce2 daa9ddfd5 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c34d84ce29b8ccbb78dbcc96584804253997c0d1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit daa9ddfd50eebdc98084d3aba28f09008294ba54 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:43:43 2023 +0800 :art: Don't load plugin when the user hasn't agreed to trust bazaar content yet Fix https://github.com/siyuan-note/siyuan/issues/9426 commit 01b19ea2c85c7f039ff427b03d6a2f0d7f4b0488 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:03:41 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 7a9a85ea323e79e8a122d5e19a4dfb9618a2ce41 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:55:27 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 1815ec1b39ba30b427d366d41754582476b8f6a4 Merge: 73edee57a 00ed190ad Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 73edee57a4f755e293ac7a2b04e2381813839550 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:32 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 00ed190ad76f357ec780d68888a04dbd5f402ea5 Author: Daniel <845765@qq.com> Date: Fri Oct 13 13:21:53 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 48e871c75e59cbf7de299e8908a1ba25ddf76278 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 12:33:29 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 3554333da9be4b22d844af83b8c540a7b6feb874 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:55:51 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit af810b279d6e6535947a143987627b3aa1e066c0 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:34:19 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 673c952f079d4a7aa42f6bf59a348f27cfcaf360 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:30:44 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 3b87a0d9ed8c313ecc75c29c7c990c7d17d68bab Merge: ed31305d1 3de7781b1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:09:07 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed31305d1d291010c3d4b6b223b924823b7be95e Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:08:56 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 3de7781b1c78fb35ba3e90b729015bd0d9cfaa45 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:44:29 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 2304921feefff56d34d4b673cba8a491f399f2a6 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:42:51 2023 +0800 :art: Update flashcard user guide commit 55fb8b19abf9d91f40fd4d177dc5f20758e1a3b3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 10:14:11 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit 8998de9d812eeb67060a7dd3e7eacec28abea656 Merge: 5b38e79be df9b55c71 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:35 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 5b38e79be75e32f33332a6f700263e1460d645bf Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:24 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit df9b55c71ba6aea40617a2fc17ad9d4908edc81c Author: Daniel <845765@qq.com> Date: Fri Oct 13 08:46:29 2023 +0800 :art: Database template columns support sort commit 3da9f0f1e133d5e69e5af674d6b8f83b9f6136f2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:40:09 2023 +0800 :bug: 新增行后弹出的输入框 commit 79a88dfbece66248b9eaa39a1821b4e2a8025148 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:23:18 2023 +0800 :rotating_light: commit 40a1e6d5cc8107abfa7addb27c347f6677a1e4fe Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:21:53 2023 +0800 :lipstick: database loading commit 2872dab9eb9c40e06d43886728ddad84c1c18722 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:11:59 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 025a8ea5a7b38b444957a73ddbcde7c2f1a054ed Merge: 02ec0f6e5 0ea9b8f5a Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 02ec0f6e5a68e7810545f8a5e132465719dc0442 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:01 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 0ea9b8f5a7223bcdab3b8f8e5e890d908e164c34 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:58:32 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit 1590913db73d8def51a05544b8a2b5e654285aa3 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:55:57 2023 +0800 :art: Update attr panel for av commit d257caff8d5d12a1751c3d18d3ca972cd5ef453d Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:38:37 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit fdaf8d7e595f11e3e0d67b01427a0485532191c6 Merge: 70e82cd98 238609f25 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 70e82cd981e5890aaad782631741521f5cd7ef41 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:19 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9416 commit 238609f25f39c42fa28bf14d4fa767f8c912b41e Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:33:23 2023 +0800 :zap: Improve performance of loading database table view commit 2dd558b6090b96cc77db2dac0002db67b5b772ce Merge: fe0b1e8d6 8fb35f556 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit fe0b1e8d6023c5d3e02614bf2515b93dd19b0b5e Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:31 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9415 commit 8fb35f5565c197617f57f02def80f8bd6b374d3d Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:15:36 2023 +0800 :art: Database template columns support number filter Fix https://github.com/siyuan-note/siyuan/issues/9414 commit 01670f2b00f31b1421ebdef9795d880863f09cdc Merge: f792d141f ffcdb5d39 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:48 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f792d141fc412a54165a9fda87216d497258c5da Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:09 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9408 commit ffcdb5d398da4b70a6cc4c06478a1f97085bf482 Author: Daniel <845765@qq.com> Date: Thu Oct 12 16:37:09 2023 +0800 :bug: SVG images cannot be displayed on some systems https://github.com/siyuan-note/siyuan/issues/9413 commit fb1f80cf4de0bdd45b140facf351c86fa243c757 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:22:55 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9406 commit da51aded35aaf8b5b0d475b49a98d179865992de Merge: a4bcae87e 09ef5fddf Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:42 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a4bcae87ee24a2592c8c43b669efc9d284a588c2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:29 2023 +0800 :bug: 数据库数字填0无效 commit 09ef5fddf9335f8a2e14b5eb197509ba80324e1f Author: Daniel <845765@qq.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: Database template columns support calculations https://github.com/siyuan-note/siyuan/issues/9408 commit 1b595d014a739094cede52527606d6d45e3ed35c Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: #9408 commit 21d1a0515ae46352a1bace0e17beac571d32c088 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:54:15 2023 +0800 :lipstick: 编辑后表头不固定 commit c5206f70843c866746d4db87c7e33681b98e48d2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:14:29 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9405 commit f0f55d3b026446f996e7c83fd49580d9db8592a9 Merge: 019412404 92151f715 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:19 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 01941240470a9bac540655507d2aa354bf5f46a1 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:09 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9403 commit 92151f71504332d96456f52087423ba967c02f78 Author: Daniel <845765@qq.com> Date: Thu Oct 12 10:12:44 2023 +0800 :art: Change database template column custom attribute action Fix https://github.com/siyuan-note/siyuan/issues/9401 commit b8e8aa0593576563e9c462df3e18900fb3ec41d6 Author: Daniel <845765@qq.com> Date: Wed Oct 11 17:00:21 2023 +0800 :hammer: Clean code commit b17aff577300a63cf77f63e2a9665cc0a2692f1e Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:54:40 2023 +0800 :bug: commit 11174958bc87bc00937d957f6004854f5105dd09 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:50:28 2023 +0800 :bug: 预览模式下点击只读 commit 130884d758774fac373c41a8540ce6d90c741ba6 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:23:01 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9404 commit 7486e1a6e22f765cffd4d231b0adb984bfe70089 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 17:28:40 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9402 commit eb93255cf32782a93d3c9b3a6d8bb3cb9f0ff7ef Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:57:14 2023 +0800 :hammer: Clean code commit fd46593815f5666f8b08e01d1e3ff9b75eab1ca3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:55:06 2023 +0800 :bookmark: Release v2.10.10 commit 337c79571d6e2b073435d95f642634130a5d0bf0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:59:25 2023 +0800 :art: Improve install new version on Windows commit f6f1148de11044c5e58ad786722087d631d8cbb4 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:08:44 2023 +0800 :memo: Update changelogs commit f0ad3268baf62bcc2be569eb21019ceaf4e1861c Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:30:00 2023 +0800 :art: commit 2eb89f067317cbb1ec13c7c4ae4cc7fc62b7fcac Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:25:21 2023 +0800 :rotating_light: commit 0db516e4b9455a87e5e29808ea77712adc4b4371 Merge: 23c3f9f15 e43cf4cf5 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:41 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 23c3f9f154326aefa8743a2d2c9b6596611722af Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:29 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9383 commit e43cf4cf55de73c37a5dc603017b957b15a34499 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:52:10 2023 +0800 :memo: Update changelogs commit b30cb0984aec2ae2248863f056bbef4f701980d5 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:49:04 2023 +0800 :memo: Update changelogs commit d4a3226a566421d01a0bcf9e9ad00cac1cb38ae3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:40 2023 +0800 :memo: Update changelogs commit 65adab61c9f63ab0d692890ff977c567d1628845 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:29 2023 +0800 :art: Adding row overwriting data after enabling filter in database https://github.com/siyuan-note/siyuan/issues/9395 commit 210a3ac5472245eed820a7c76aadb09d50029bb0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:04:39 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 37f950ba4f6028f993786958eb9b3a0d2dca066b Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:39:22 2023 +0800 :lipstick: icon commit 7b1c30bc26b796116e7bd936436b3f9e3e1cb316 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:30:13 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit 6ef13aba784dd6df37b9ac61573b8d8123488743 Merge: acd2eb167 e4907e789 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit acd2eb167707ad5cfa7e5cc7d9e06a6adfe8d92d Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit e4907e7896ceb014a3064565e05631eb621a1f3a Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:16:57 2023 +0800 :art: The block in the editor shows the database icon https://github.com/siyuan-note/siyuan/issues/8894 commit 6f249d768f954e58dad876010927fdcf43b3b05b Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:15:03 2023 +0800 :arrow_up: Upgrade kernel deps commit bb04bf9f705b1169d4efb44c441daf1ecb56cf91 Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:04:39 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 30b0dd08face947c3a9ad0a8c468862a93424cac Merge: c1de5e148 ccb65454a Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c1de5e1488963eb63c9230ff8c691573febb3791 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:44 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/8894 commit ccb65454a2bad059a33cf360aef8f0a895030dbf Author: Daniel <845765@qq.com> Date: Wed Oct 11 08:50:13 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 28e4e1ef2fe1c373b9524a2c3f1cca85eb5452f4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:31:46 2023 +0800 :art: Rename the .sya annotation file when renaming a PDF asset https://github.com/siyuan-note/siyuan/issues/9390 commit 964c822c2b7322f956234726f0bbb15106da35e4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:02:46 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f404d7fe85a66babc255e151fe18ad656dbb5eb2 Merge: ed7084c7b 301b6d9f7 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed7084c7be222cb76a9567c32a5b3b92897e12b3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:43 2023 +0800 :lipstick: commit 301b6d9f70ec0166b0567e925d71d241999a9cd8 Author: Daniel <845765@qq.com> Date: Tue Oct 10 21:55:43 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f62be4719eaba196b83b5972e9c0dcfc1e4b6020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:50:36 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9385 commit 8e2565f347337806eaca57489ab0666c314899c4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:39:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9386 commit e54d8f1a4d2c979f2a3147a292330ad36a83c0fb Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:31:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9393 commit 1fb7187936646643216e6ca96344576738f7019b Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:23:29 2023 +0800 :memo: fix https://github.com/siyuan-note/siyuan/issues/9392 commit ea00753f380f1045ff357447b0e7acc9dd117a28 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9392 commit 4318aa446369eaf4ea85982ba4919b5d47340552 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:51:28 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9376 commit f1d4f8472b63c379b0bd51ee973b1505e615b12c Merge: 3f4c00efc 64df2ffa4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 3f4c00efcddb7030e39616eadc9587dc3e1d17d8 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9376 commit 64df2ffa42df2804778f401ec75203319fe5cba4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:37:51 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 691a0bea33e430f94d46a65f2887e187080c199d Merge: 0e5cae300 7e9243d8d Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:41:05 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 0e5cae30015f960637b1a22a935d55e64e499ef5 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:40:38 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit 7e9243d8dc063bd481e202f73c2b16d367c6cbea Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:05:48 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 7aa4aacfc3e4c356db033305a8e8a9e268c8c427 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:30:10 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit d02381d3f2cabe4a0fa7a5518b79c7030dae8c0e Merge: 449d2dbf8 6e9099ea1 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:14 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 449d2dbf87d838409351fc8c4b7a42af59dc65c3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:03 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9256 commit 6e9099ea12ba692b4aab7cef34bc61458eb6ec14 Author: Daniel <845765@qq.com> Date: Tue Oct 10 16:52:40 2023 +0800 :lock: Authenticate requests of assets other than 127.0.0.1 Fix https://github.com/siyuan-note/siyuan/issues/9388 commit 11786381cf6b1d5f58c862ab99a0993ac6ab4ad4 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Tue Oct 10 16:21:50 2023 +0800 Improve event bus `open-siyuan-url-plugin` (#9256) * :art: Improve plugin event bus `open-siyuan-url-plugin` * :bug: Avoid plug-in names with the same prefix * Update onGetConfig.ts commit 2c36af78bc789505c8d2d461c70aa9e36a782d2f Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 16:15:24 2023 +0800 :rotating_light: commit b0e3efa774c0d500567c96e1f1720cd11271dd0e Author: Daniel <845765@qq.com> Date: Tue Oct 10 11:41:46 2023 +0800 :bookmark: Release v2.10.9 commit d690475ae63c41f486eb752de203fe2a90b7e2c2 Merge: c8a6f4185 811bac942 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:58:46 2023 +0800 Merge remote-tracking branch 'origin/master' commit c8a6f4185e25813687883ab241a18d21ae8a5b22 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:18:57 2023 +0800 :bookmark: Release v2.10.9 commit cdcec7e58dd597b87967c456107e062db90c41e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:29:25 2023 +0800 :memo: Update changelogs commit 1eccb8ba4d6e7f9a9b37f18f9bd444920d93744c Merge: a3094fe3e 3827753b7 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:26:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a3094fe3ead644f67886324f165e6157818ed680 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:25:48 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9384 commit 3827753b7c7391680af13c9ea5812ab4247e8381 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:07:34 2023 +0800 :art: Upgrade Electron https://github.com/siyuan-note/siyuan/issues/9342 commit 567394afba01704c66a4e65bc54260becc2eb034 Author: Daniel <845765@qq.com> Date: Mon Oct 9 22:42:39 2023 +0800 :memo: Update changelogs commit ff6220abaa2d8316e4ad1771985e47885eac1a45 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Mon Oct 9 21:51:39 2023 +0800 :art: add `@electron/remote` dependency (#9381) commit da0fa0853f46a957c35a282235a53c3fd8e10163 Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:45:36 2023 +0800 :art: Replace non-breaking spaces with normal spaces when copying https://github.com/siyuan-note/siyuan/issues/9382 commit 0ed68847618c241704702757c3324493a3fb8c2a Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:09:35 2023 +0800 :bug: Update av Fix https://github.com/siyuan-note/siyuan/issues/9380 commit 288eb24474ed21416c69d6ec366f22ef67189d8e Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:30:19 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 4965b7b8458edd974efa85483aed8ba4f7a6b106 Merge: 803069d80 902849153 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 803069d8071240447567a233c5ad104bb5962511 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 902849153a87eb75b200ab37b9ff674e8ba382d0 Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:17:40 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit faadbf5960997f42ad22884d7394d2b3fd6bf3e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 16:48:28 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit 9ca11625bd71b67b50e5091f680932762e02862a Merge: 43f06e57d 644e0319d Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:45:06 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 43f06e57d9125ed62f2db0e8d0c10f53ef0d8e0a Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:44:46 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 811bac942ddbdc48f29e587ea6ffb8f68ce2e4ac Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:36 2023 +0800 :art: Free disk space for docker image building GitHub Action commit 66aa802765998feb6af7883e678cc835702d689a Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:28 2023 +0800 :art: Free disk space for docker image building GitHub Action * Update anno.ts * Update index.ts * :art: Adapt to align styles * :art: Adapt to using arrow keys/Esc to select a cell/row * Update row.ts * :art: Adjusted the cell width in attribute view * :bug: Fixed the issue that the first column was misaligned * Update index.ts * Update action.ts
2023-11-09 16:35:49 +08:00
tableHTML += `<div class="av__cell" data-id="${cell.id}" data-col-id="${data.columns[index].id}" data-wrap="${data.columns[index].wrap}"
${cell.valueType === "block" ? 'data-block-id="' + (cell.value.block.id || "") + '"' : ""}
${cell.value?.isDetached ? ' data-detached="true"' : ""}
style="width: ${data.columns[index].width || "200px"};
${cell.bgColor ? `background-color:${cell.bgColor};` : ""}
${cell.valueType !== "number" ? "" : "flex-direction: row-reverse;"}
${cell.color ? `color:${cell.color};` : ""}">${text}</div>`;
});
2023-06-08 22:56:52 +08:00
tableHTML += "<div></div></div>";
});
2023-07-12 00:08:00 +08:00
let tabHTML = "";
response.data.views.forEach((item: IAVView) => {
tabHTML += `<div data-id="${response.data.viewID}" class="item${item.id === response.data.viewID ? " item--focus" : ""}">
<svg class="item__graphic"><use xlink:href="#iconTable"></use></svg>
<span class="item__text">${item.name}</span>
2023-07-12 00:08:00 +08:00
</div>`;
});
2023-10-12 20:21:53 +08:00
setTimeout(() => {
Improve adaptive width for `Attributes View` (#9280) * :art: Attrs View adaptive width * :art: Add CSS class `av__body` * :art: add margins for attribute view * :art: add max-width for attribute view * Squashed commit of the following: commit 642d041513898c9c3fc551f7a8625dc075c6d08a Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:36:25 2023 +0800 :bookmark: Release v2.10.8 commit 43e53672b023ad6c13c28d1d2911bfddfa7e9435 Merge: 6b0f8e00a 0e3b78020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:32 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b0f8e00a8a30c313fbc88fa36334eba971cb2f4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:08 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9334 commit 0e3b7802015cf0ef4834f9bbab471f358c3c726e Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:03:48 2023 +0800 :memo: Update changelogs commit cc3b4e320ef8d57df43a3bea9adc4630d58dcdf5 Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:01:11 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 29f34fe8b8abe05d07bb0c4a2056af4ea6e74896 Author: Daniel <845765@qq.com> Date: Tue Oct 3 12:56:13 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 7556d1c3a28c152ebb5f6655236694d6083c9306 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:49:12 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 558422c4079bc79f4b9997f0cf1183e5ea8ad1c0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:46:25 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 433cb91d7515ccfa5ba9dbb279902187d3c820e0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 10:33:41 2023 +0800 :arrow_up: Upgrade kernel deps commit c5a25fe88f1497f55d5bb4979093c831c572c0e1 Author: Daniel <845765@qq.com> Date: Tue Oct 3 08:52:33 2023 +0800 :bug: Database render deleted block https://ld246.com/article/1695790906050/comment/1696234209062?r=88250#comments commit f6a8ca20cdc7a5df253b202ff637b8bea655e612 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 08:39:36 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 11cc108893b325774e78a4d1f7ba80a2b76bbc8a Author: Daniel <845765@qq.com> Date: Tue Oct 3 07:57:36 2023 +0800 :bug: Create doc with ref Fix https://github.com/siyuan-note/siyuan/issues/9329 commit d869aef346ccdab9044edf8e832be5fb6026b143 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:46:36 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit 3d7bf2eb0fd1c4f9d033970997687030e478fb53 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:39:08 2023 +0800 :art: Remove the access authorization code setting item on the browser-end https://github.com/siyuan-note/siyuan/issues/9331 commit 279e17e8b587694b83b58d730eeb774278ecc670 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:15:33 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit d2356754ddd4d4c9e99e74e50e691ce8c26c1824 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:41:51 2023 +0800 :memo: Update changelogs commit 4fdd0ddef046cefd8f0149e7198020d2677e9af2 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:37:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b4bded40e3a5134e4387b090c56f83567a8942ab Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:24:16 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit bfd27a62d1ec270cd52594a55f766862e9961c05 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:22:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 0aa61fe5b7eb44941410c5591e654ce7850b46d0 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:14:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 7d1e1bf2e59b3ea77986309ac872d1ef4e16dbdf Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:02:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 8c31eb0eac956e63b8e172617ee5cdc783b7658a Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:59:16 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 37892e786b511dd4bd4d5cedc603cc0a438bb651 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:58:48 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit f965ef0945c65f2affa5180cf762c0d498681aac Merge: b709c8458 b2f5ab570 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit b709c8458508b1955ddcef020457e643990e0bb0 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:00 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit b2f5ab5700f4ad30d04c645a466512448225b5d8 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:36:22 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b833087cb6287cd4e7a39d6b50ad42e9394df930 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:33:53 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit dbdddd7ff36da2da3ff03a779ef3af5f4fcc2a69 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:16:08 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b981fa08a04e769793a19862e8916985beefc13f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:05:06 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 6e475e185709e81b39a6ef5d0eae028a3c034369 Author: Daniel <845765@qq.com> Date: Sun Oct 1 11:05:24 2023 +0800 :memo: Update changelogs commit df38f89f4077e30ccafb0fae8da1ca38b781fb4f Merge: 465375422 b69e8d335 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:02:11 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 46537542210a82aab15b991692bfe3b63da31b8f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:01:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9291 commit b69e8d335726fb64e35b4d80b844e4e30e5d6344 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:58:46 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit df487a7c6aace2accba9d3fd576c38f3705d021f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:49:52 2023 +0800 :bug: flash card zoomin status commit c0424caf679ae463aef8b39e003b256263f0e978 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:42:12 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit e8359edebc8867e79dce7b918bf709de15e28242 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:27:07 2023 +0800 :rotating_light: commit c3212235b75352cc23da2e42e14435a3f0ab7aa4 Merge: 64900706b 702926430 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:51 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 64900706b21df441edbe91db3887a81008c19286 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:31 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9313 commit 702926430014c14fd3dbec9fa3a7cbb8fde0122e Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:03:07 2023 +0800 :memo: Update changelogs commit 29d155d0cd617a22a0aa0b65e27c2ae0dc428390 Author: Daniel <845765@qq.com> Date: Sun Oct 1 09:37:46 2023 +0800 :art: Improve missing line breaks when exporting RTF Fix https://github.com/siyuan-note/siyuan/issues/9325 commit 05cfcf7c2b8bda82eb9d0ccd67a4707b9da18a65 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:46:00 2023 +0800 :art: https://ld246.com/article/1695361968294 commit 67e0dad0a750e6c34caa2628e652d294de600ea7 Merge: 856445a6e fee908d01 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:21 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 856445a6ef7af178818ec33ce28ea337ed53e35a Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:06 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9323 commit fee908d01e23b692b5ee8da73611e1205f7be95f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:19:26 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 11d2f7c580176c94dc1708a37d322c752425a08f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:18:27 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 83dce4f3e6577152f931a80bd47e436118af7e61 Merge: 1f2faecf4 49d92538d Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1f2faecf4d63202cb3087d988400dea06dfe8082 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:01 2023 +0800 :zap: breadcrumb commit 49d92538dfa76a70afa5f057274bb2afb99384d3 Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:52:26 2023 +0800 :bug: The subdoc creation path is unstable when a parent doc with the same name exists Fix https://github.com/siyuan-note/siyuan/issues/9322 commit 17dd264479cd0aa40320cb69592af848a751378a Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:34:28 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit e74733b4e1af49977fd77b3df6e37277089ec2de Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:57:23 2023 +0800 :recycle: Refactor create doc by hpath commit f608da26a5d572c981b73d7b53e189f558512a4a Merge: 6b2a4ff0a 121d33e74 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:39 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b2a4ff0aa2e1aeae2f7afedf2e3f752ef7c6cb6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9317 commit 121d33e74d773def64c35d6f9476ad8aa238fa8b Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:56:47 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit 82bed847e6c327cd4bbb3b5cf77e1726ebfe4fff Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 14:40:45 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9320 commit f8b272d596f67cafbd83e3d4d69a2fc4d5c90fae Merge: 2dae1200b ca855c1fa Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2dae1200b48b3813252e9fbcbeb1d77dffd275e6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:40 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9316 commit ca855c1fa54756b5ff9afd1270f4c4d7aa444b9f Author: Daniel <845765@qq.com> Date: Sat Sep 30 11:57:37 2023 +0800 :art: Attribute Panel - Database sort attributes by view column order https://github.com/siyuan-note/siyuan/issues/9319 commit 1063f503756f89afe12125bb59b256e8b9a201b3 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 11:21:46 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/9318 commit 1f899aaf3c3a9aa4d566a51584a4165d8b8b24bd Author: Vanessa <lly219@gmail.com> Date: Fri Sep 29 21:41:14 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9281 commit 2b9bec8e8b07c9fc6280b272a2ea31569ebf0b2f Author: Daniel <845765@qq.com> Date: Fri Sep 29 17:33:18 2023 +0800 :art: Ctrl+N should follow notebook create save path https://ld246.com/article/1695965429553 commit 41e35ea795fd4fe1408e99e5c2b5b1b6c91f2c9b Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:45:23 2023 +0800 :rotating_light: commit 6a37b8661304a6afa9a95716203c407dc2f9c688 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:44 2023 +0800 :rotating_light: commit 4c6b695dae9e132cce01c4f36ed7657a89c322ff Merge: df3f444e4 dc03a5cf3 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:18 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit df3f444e480057ea3bb7582eb180a72cc0f842cd Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:40:44 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9300 commit dc03a5cf38601690649b1536624d3bb6f8985cc2 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:46:29 2023 +0800 :arrow_up: Upgrade kernel deps commit 172b7ed0180d573ad796f1ff6dd6c1aea9384064 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:39:12 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit 6354d04e4bae7a5184847baa30bcba24397b18d8 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:22:17 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit b2a27bb54ca2f761fdfe6c182b463a58132b1861 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Thu Sep 28 22:38:49 2023 +0800 Refactor code language and ts types (#9300) * :art: Code block language list adds custom languages * Update index.d.ts * :art: Improve global variable type definition * :art: Improve global variable type definition * :art: Add constant `EXTRA_CODE_LANGUAGES` commit 17d2a16a9477453691c325bbabf47c1a42d9b4ea Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 22:31:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9264 commit ceb9aef1d6710c806728dd08289906a93d775344 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 17:25:18 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9303 * :art: Improve the width of image in attribute view cell * :art: Adjust the style of rows' gutter * Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of rows' gutter * :bug: Improve the style of icon in attribute view * :art: Improve preview text fields * Revert Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of image in attribute view cell * :art: Improve the style of firstcol * :bug: Fix check icon click event handle * Merge tag 'v2.10.9-dev3' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.9' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.10' into feat/attrs-view-adaptive-width * Squashed commit of the following: commit c8924e37ae8eeffb4b49c30560372722458d4f84 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 12:14:12 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9409 commit 879fdd827d8aa1b817c3df7ca2026413e2a916ba Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:56:16 2023 +0800 :lipstick: dragover commit 9978827389d3ec49e14b7ed9d7dfe506a208e8df Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:34:42 2023 +0800 :art: 数据库块适配外观和宽度调整 commit a20ffeb12b67e87968676d0d7a1b17b1870e7144 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:20:17 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9412 commit f2075fafac55e31468d2519ede6dc98675fc8496 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:04:23 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 5e2910a4e60d61a6b4d64def65aeac9cbdbf8698 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:00:46 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit ac7f8d36dfc7bf73903b4fa3129417475ec6eb9b Merge: 9ae8400b4 d78a0205f Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:40 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9ae8400b474e913e5ed4b3fc26dae5464a1692fe Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:21 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit d78a0205f5a04e342b1dd4b2522ff294d30f952f Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:51:46 2023 +0800 :art: Database table view breadcrumb commit 6b1a2925c9c6404b4bf53007aea17f97675aea5a Merge: 25109b906 9766020b8 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:46 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 25109b906fc4df4d19ea8aa507ed278307b43322 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:35 2023 +0800 :art: 数据库块适配外观和宽度调整 commit 9766020b8950762b6b1e44de48e4e1159cc8c89c Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:08:57 2023 +0800 :art: Update text commit ab673896505f038d99497ab3880352b100d2d916 Merge: 7d6f9bb0d 39c5744f2 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 7d6f9bb0dff9b9cbbc6071a25b25276ab998a652 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:42 2023 +0800 :art: 数据库不能设置布局 commit 39c5744f2fa1d0c8d07ea14ce6a9dbd72ba3bc03 Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:46:29 2023 +0800 :bug: Database table view export does not display select content Fix https://github.com/siyuan-note/siyuan/issues/9428 commit 87ecb7f24acc3c5a20b763979781e7adfa86134d Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:37:47 2023 +0800 :art: Update text commit 69d8c93c98dfee2aa24b7ed1c8a663dfed6546b6 Merge: 623f30b5f f6780c126 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:54 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 623f30b5fc3de9e900ab574555c8af0f254f37e4 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:44 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit f6780c126abfd4576963470ba11a40933c17246e Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:20:51 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit fd94e9df0cdbaa13cbd5478fdf14d55e29bec42a Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 00:04:16 2023 +0800 :art: commit 51f66879ccc5808524c5e65802951cd9bff8eab3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:50:31 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 49305b8911249ab5f2548c7433afa816b9506e95 Merge: 2f0f563e1 8399aba10 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:26:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2f0f563e121ceacdf0ca0e1f53b6718812f0d5e7 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:25:58 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 8399aba10b53c701859402432efbd426f137a800 Author: Daniel <845765@qq.com> Date: Fri Oct 13 23:22:17 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 22efb3d5235fbbe1951fee9caf1009638e4e56c4 Merge: f95084e96 c3d1c04af Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:07:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f95084e96a3ca62add6cc27ac283132b4e7cd1be Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:06:53 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit c3d1c04af4066c231363d72fa18bd65d600b8dca Author: Daniel <845765@qq.com> Date: Fri Oct 13 22:50:11 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit a11ea9c3479aaa74db18ca7a22b0d4616f18f665 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:37:15 2023 +0800 :lipstick: commit 99ec5c10a4ed614e13a6a935dace95637716977f Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:32:17 2023 +0800 :art: showHiddenFiles commit 49426ac916279cc000670580e4586c2b4df51c72 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:15:20 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9425 commit d445c5401ffb4a1b2fcf01abc062734efc6c6cb2 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:54:35 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 0c4aee7388c03202a4bb3d11c7b89b0e21e48d85 Merge: c34d84ce2 daa9ddfd5 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c34d84ce29b8ccbb78dbcc96584804253997c0d1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit daa9ddfd50eebdc98084d3aba28f09008294ba54 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:43:43 2023 +0800 :art: Don't load plugin when the user hasn't agreed to trust bazaar content yet Fix https://github.com/siyuan-note/siyuan/issues/9426 commit 01b19ea2c85c7f039ff427b03d6a2f0d7f4b0488 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:03:41 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 7a9a85ea323e79e8a122d5e19a4dfb9618a2ce41 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:55:27 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 1815ec1b39ba30b427d366d41754582476b8f6a4 Merge: 73edee57a 00ed190ad Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 73edee57a4f755e293ac7a2b04e2381813839550 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:32 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 00ed190ad76f357ec780d68888a04dbd5f402ea5 Author: Daniel <845765@qq.com> Date: Fri Oct 13 13:21:53 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 48e871c75e59cbf7de299e8908a1ba25ddf76278 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 12:33:29 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 3554333da9be4b22d844af83b8c540a7b6feb874 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:55:51 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit af810b279d6e6535947a143987627b3aa1e066c0 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:34:19 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 673c952f079d4a7aa42f6bf59a348f27cfcaf360 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:30:44 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 3b87a0d9ed8c313ecc75c29c7c990c7d17d68bab Merge: ed31305d1 3de7781b1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:09:07 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed31305d1d291010c3d4b6b223b924823b7be95e Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:08:56 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 3de7781b1c78fb35ba3e90b729015bd0d9cfaa45 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:44:29 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 2304921feefff56d34d4b673cba8a491f399f2a6 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:42:51 2023 +0800 :art: Update flashcard user guide commit 55fb8b19abf9d91f40fd4d177dc5f20758e1a3b3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 10:14:11 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit 8998de9d812eeb67060a7dd3e7eacec28abea656 Merge: 5b38e79be df9b55c71 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:35 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 5b38e79be75e32f33332a6f700263e1460d645bf Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:24 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit df9b55c71ba6aea40617a2fc17ad9d4908edc81c Author: Daniel <845765@qq.com> Date: Fri Oct 13 08:46:29 2023 +0800 :art: Database template columns support sort commit 3da9f0f1e133d5e69e5af674d6b8f83b9f6136f2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:40:09 2023 +0800 :bug: 新增行后弹出的输入框 commit 79a88dfbece66248b9eaa39a1821b4e2a8025148 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:23:18 2023 +0800 :rotating_light: commit 40a1e6d5cc8107abfa7addb27c347f6677a1e4fe Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:21:53 2023 +0800 :lipstick: database loading commit 2872dab9eb9c40e06d43886728ddad84c1c18722 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:11:59 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 025a8ea5a7b38b444957a73ddbcde7c2f1a054ed Merge: 02ec0f6e5 0ea9b8f5a Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 02ec0f6e5a68e7810545f8a5e132465719dc0442 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:01 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 0ea9b8f5a7223bcdab3b8f8e5e890d908e164c34 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:58:32 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit 1590913db73d8def51a05544b8a2b5e654285aa3 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:55:57 2023 +0800 :art: Update attr panel for av commit d257caff8d5d12a1751c3d18d3ca972cd5ef453d Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:38:37 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit fdaf8d7e595f11e3e0d67b01427a0485532191c6 Merge: 70e82cd98 238609f25 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 70e82cd981e5890aaad782631741521f5cd7ef41 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:19 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9416 commit 238609f25f39c42fa28bf14d4fa767f8c912b41e Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:33:23 2023 +0800 :zap: Improve performance of loading database table view commit 2dd558b6090b96cc77db2dac0002db67b5b772ce Merge: fe0b1e8d6 8fb35f556 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit fe0b1e8d6023c5d3e02614bf2515b93dd19b0b5e Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:31 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9415 commit 8fb35f5565c197617f57f02def80f8bd6b374d3d Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:15:36 2023 +0800 :art: Database template columns support number filter Fix https://github.com/siyuan-note/siyuan/issues/9414 commit 01670f2b00f31b1421ebdef9795d880863f09cdc Merge: f792d141f ffcdb5d39 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:48 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f792d141fc412a54165a9fda87216d497258c5da Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:09 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9408 commit ffcdb5d398da4b70a6cc4c06478a1f97085bf482 Author: Daniel <845765@qq.com> Date: Thu Oct 12 16:37:09 2023 +0800 :bug: SVG images cannot be displayed on some systems https://github.com/siyuan-note/siyuan/issues/9413 commit fb1f80cf4de0bdd45b140facf351c86fa243c757 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:22:55 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9406 commit da51aded35aaf8b5b0d475b49a98d179865992de Merge: a4bcae87e 09ef5fddf Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:42 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a4bcae87ee24a2592c8c43b669efc9d284a588c2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:29 2023 +0800 :bug: 数据库数字填0无效 commit 09ef5fddf9335f8a2e14b5eb197509ba80324e1f Author: Daniel <845765@qq.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: Database template columns support calculations https://github.com/siyuan-note/siyuan/issues/9408 commit 1b595d014a739094cede52527606d6d45e3ed35c Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: #9408 commit 21d1a0515ae46352a1bace0e17beac571d32c088 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:54:15 2023 +0800 :lipstick: 编辑后表头不固定 commit c5206f70843c866746d4db87c7e33681b98e48d2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:14:29 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9405 commit f0f55d3b026446f996e7c83fd49580d9db8592a9 Merge: 019412404 92151f715 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:19 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 01941240470a9bac540655507d2aa354bf5f46a1 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:09 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9403 commit 92151f71504332d96456f52087423ba967c02f78 Author: Daniel <845765@qq.com> Date: Thu Oct 12 10:12:44 2023 +0800 :art: Change database template column custom attribute action Fix https://github.com/siyuan-note/siyuan/issues/9401 commit b8e8aa0593576563e9c462df3e18900fb3ec41d6 Author: Daniel <845765@qq.com> Date: Wed Oct 11 17:00:21 2023 +0800 :hammer: Clean code commit b17aff577300a63cf77f63e2a9665cc0a2692f1e Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:54:40 2023 +0800 :bug: commit 11174958bc87bc00937d957f6004854f5105dd09 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:50:28 2023 +0800 :bug: 预览模式下点击只读 commit 130884d758774fac373c41a8540ce6d90c741ba6 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:23:01 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9404 commit 7486e1a6e22f765cffd4d231b0adb984bfe70089 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 17:28:40 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9402 commit eb93255cf32782a93d3c9b3a6d8bb3cb9f0ff7ef Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:57:14 2023 +0800 :hammer: Clean code commit fd46593815f5666f8b08e01d1e3ff9b75eab1ca3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:55:06 2023 +0800 :bookmark: Release v2.10.10 commit 337c79571d6e2b073435d95f642634130a5d0bf0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:59:25 2023 +0800 :art: Improve install new version on Windows commit f6f1148de11044c5e58ad786722087d631d8cbb4 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:08:44 2023 +0800 :memo: Update changelogs commit f0ad3268baf62bcc2be569eb21019ceaf4e1861c Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:30:00 2023 +0800 :art: commit 2eb89f067317cbb1ec13c7c4ae4cc7fc62b7fcac Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:25:21 2023 +0800 :rotating_light: commit 0db516e4b9455a87e5e29808ea77712adc4b4371 Merge: 23c3f9f15 e43cf4cf5 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:41 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 23c3f9f154326aefa8743a2d2c9b6596611722af Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:29 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9383 commit e43cf4cf55de73c37a5dc603017b957b15a34499 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:52:10 2023 +0800 :memo: Update changelogs commit b30cb0984aec2ae2248863f056bbef4f701980d5 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:49:04 2023 +0800 :memo: Update changelogs commit d4a3226a566421d01a0bcf9e9ad00cac1cb38ae3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:40 2023 +0800 :memo: Update changelogs commit 65adab61c9f63ab0d692890ff977c567d1628845 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:29 2023 +0800 :art: Adding row overwriting data after enabling filter in database https://github.com/siyuan-note/siyuan/issues/9395 commit 210a3ac5472245eed820a7c76aadb09d50029bb0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:04:39 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 37f950ba4f6028f993786958eb9b3a0d2dca066b Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:39:22 2023 +0800 :lipstick: icon commit 7b1c30bc26b796116e7bd936436b3f9e3e1cb316 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:30:13 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit 6ef13aba784dd6df37b9ac61573b8d8123488743 Merge: acd2eb167 e4907e789 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit acd2eb167707ad5cfa7e5cc7d9e06a6adfe8d92d Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit e4907e7896ceb014a3064565e05631eb621a1f3a Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:16:57 2023 +0800 :art: The block in the editor shows the database icon https://github.com/siyuan-note/siyuan/issues/8894 commit 6f249d768f954e58dad876010927fdcf43b3b05b Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:15:03 2023 +0800 :arrow_up: Upgrade kernel deps commit bb04bf9f705b1169d4efb44c441daf1ecb56cf91 Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:04:39 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 30b0dd08face947c3a9ad0a8c468862a93424cac Merge: c1de5e148 ccb65454a Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c1de5e1488963eb63c9230ff8c691573febb3791 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:44 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/8894 commit ccb65454a2bad059a33cf360aef8f0a895030dbf Author: Daniel <845765@qq.com> Date: Wed Oct 11 08:50:13 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 28e4e1ef2fe1c373b9524a2c3f1cca85eb5452f4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:31:46 2023 +0800 :art: Rename the .sya annotation file when renaming a PDF asset https://github.com/siyuan-note/siyuan/issues/9390 commit 964c822c2b7322f956234726f0bbb15106da35e4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:02:46 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f404d7fe85a66babc255e151fe18ad656dbb5eb2 Merge: ed7084c7b 301b6d9f7 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed7084c7be222cb76a9567c32a5b3b92897e12b3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:43 2023 +0800 :lipstick: commit 301b6d9f70ec0166b0567e925d71d241999a9cd8 Author: Daniel <845765@qq.com> Date: Tue Oct 10 21:55:43 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f62be4719eaba196b83b5972e9c0dcfc1e4b6020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:50:36 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9385 commit 8e2565f347337806eaca57489ab0666c314899c4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:39:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9386 commit e54d8f1a4d2c979f2a3147a292330ad36a83c0fb Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:31:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9393 commit 1fb7187936646643216e6ca96344576738f7019b Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:23:29 2023 +0800 :memo: fix https://github.com/siyuan-note/siyuan/issues/9392 commit ea00753f380f1045ff357447b0e7acc9dd117a28 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9392 commit 4318aa446369eaf4ea85982ba4919b5d47340552 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:51:28 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9376 commit f1d4f8472b63c379b0bd51ee973b1505e615b12c Merge: 3f4c00efc 64df2ffa4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 3f4c00efcddb7030e39616eadc9587dc3e1d17d8 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9376 commit 64df2ffa42df2804778f401ec75203319fe5cba4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:37:51 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 691a0bea33e430f94d46a65f2887e187080c199d Merge: 0e5cae300 7e9243d8d Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:41:05 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 0e5cae30015f960637b1a22a935d55e64e499ef5 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:40:38 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit 7e9243d8dc063bd481e202f73c2b16d367c6cbea Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:05:48 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 7aa4aacfc3e4c356db033305a8e8a9e268c8c427 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:30:10 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit d02381d3f2cabe4a0fa7a5518b79c7030dae8c0e Merge: 449d2dbf8 6e9099ea1 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:14 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 449d2dbf87d838409351fc8c4b7a42af59dc65c3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:03 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9256 commit 6e9099ea12ba692b4aab7cef34bc61458eb6ec14 Author: Daniel <845765@qq.com> Date: Tue Oct 10 16:52:40 2023 +0800 :lock: Authenticate requests of assets other than 127.0.0.1 Fix https://github.com/siyuan-note/siyuan/issues/9388 commit 11786381cf6b1d5f58c862ab99a0993ac6ab4ad4 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Tue Oct 10 16:21:50 2023 +0800 Improve event bus `open-siyuan-url-plugin` (#9256) * :art: Improve plugin event bus `open-siyuan-url-plugin` * :bug: Avoid plug-in names with the same prefix * Update onGetConfig.ts commit 2c36af78bc789505c8d2d461c70aa9e36a782d2f Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 16:15:24 2023 +0800 :rotating_light: commit b0e3efa774c0d500567c96e1f1720cd11271dd0e Author: Daniel <845765@qq.com> Date: Tue Oct 10 11:41:46 2023 +0800 :bookmark: Release v2.10.9 commit d690475ae63c41f486eb752de203fe2a90b7e2c2 Merge: c8a6f4185 811bac942 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:58:46 2023 +0800 Merge remote-tracking branch 'origin/master' commit c8a6f4185e25813687883ab241a18d21ae8a5b22 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:18:57 2023 +0800 :bookmark: Release v2.10.9 commit cdcec7e58dd597b87967c456107e062db90c41e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:29:25 2023 +0800 :memo: Update changelogs commit 1eccb8ba4d6e7f9a9b37f18f9bd444920d93744c Merge: a3094fe3e 3827753b7 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:26:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a3094fe3ead644f67886324f165e6157818ed680 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:25:48 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9384 commit 3827753b7c7391680af13c9ea5812ab4247e8381 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:07:34 2023 +0800 :art: Upgrade Electron https://github.com/siyuan-note/siyuan/issues/9342 commit 567394afba01704c66a4e65bc54260becc2eb034 Author: Daniel <845765@qq.com> Date: Mon Oct 9 22:42:39 2023 +0800 :memo: Update changelogs commit ff6220abaa2d8316e4ad1771985e47885eac1a45 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Mon Oct 9 21:51:39 2023 +0800 :art: add `@electron/remote` dependency (#9381) commit da0fa0853f46a957c35a282235a53c3fd8e10163 Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:45:36 2023 +0800 :art: Replace non-breaking spaces with normal spaces when copying https://github.com/siyuan-note/siyuan/issues/9382 commit 0ed68847618c241704702757c3324493a3fb8c2a Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:09:35 2023 +0800 :bug: Update av Fix https://github.com/siyuan-note/siyuan/issues/9380 commit 288eb24474ed21416c69d6ec366f22ef67189d8e Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:30:19 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 4965b7b8458edd974efa85483aed8ba4f7a6b106 Merge: 803069d80 902849153 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 803069d8071240447567a233c5ad104bb5962511 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 902849153a87eb75b200ab37b9ff674e8ba382d0 Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:17:40 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit faadbf5960997f42ad22884d7394d2b3fd6bf3e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 16:48:28 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit 9ca11625bd71b67b50e5091f680932762e02862a Merge: 43f06e57d 644e0319d Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:45:06 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 43f06e57d9125ed62f2db0e8d0c10f53ef0d8e0a Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:44:46 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 811bac942ddbdc48f29e587ea6ffb8f68ce2e4ac Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:36 2023 +0800 :art: Free disk space for docker image building GitHub Action commit 66aa802765998feb6af7883e678cc835702d689a Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:28 2023 +0800 :art: Free disk space for docker image building GitHub Action * Update anno.ts * Update index.ts * :art: Adapt to align styles * :art: Adapt to using arrow keys/Esc to select a cell/row * Update row.ts * :art: Adjusted the cell width in attribute view * :bug: Fixed the issue that the first column was misaligned * Update index.ts * Update action.ts
2023-11-09 16:35:49 +08:00
e.firstElementChild.outerHTML = `<div class="av__container">
<div class="av__header">
<div class="layout-tab-bar fn__flex">
${tabHTML}
<div class="fn__flex-1"></div>
${response.data.isMirror?` <span class="block__icon block__icon--show b3-tooltips b3-tooltips__w" aria-label="${window.siyuan.languages.mirrorTip}">
<svg><use xlink:href="#iconSplitLR"></use></svg></span><div class="fn__space"></div>`:""}
<span data-type="av-filter" class="block__icon block__icon--show b3-tooltips b3-tooltips__w${data.filters.length > 0 ? " block__icon--active" : ""}" aria-label="${window.siyuan.languages.filter}">
<svg><use xlink:href="#iconFilter"></use></svg>
</span>
<div class="fn__space"></div>
<span data-type="av-sort" class="block__icon block__icon--show b3-tooltips b3-tooltips__w${data.sorts.length > 0 ? " block__icon--active" : ""}" aria-label="${window.siyuan.languages.sort}">
<svg><use xlink:href="#iconSort"></use></svg>
</span>
<div class="fn__space"></div>
<span data-type="av-more" class="block__icon block__icon--show b3-tooltips b3-tooltips__w" aria-label="${window.siyuan.languages.more}">
<svg><use xlink:href="#iconMore"></use></svg>
</span>
<div class="fn__space"></div>
</div>
<div contenteditable="${protyle.disabled ? "false" : "true"}" spellcheck="${window.siyuan.config.editor.spellcheck.toString()}" class="av__title" data-title="${data.name || ""}" data-tip="${window.siyuan.languages.title}">${response.data.name || ""}</div>
<div class="av__counter fn__none"></div>
</div>
<div class="av__scroll">
Improve adaptive width for `Attributes View` (#9280) * :art: Attrs View adaptive width * :art: Add CSS class `av__body` * :art: add margins for attribute view * :art: add max-width for attribute view * Squashed commit of the following: commit 642d041513898c9c3fc551f7a8625dc075c6d08a Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:36:25 2023 +0800 :bookmark: Release v2.10.8 commit 43e53672b023ad6c13c28d1d2911bfddfa7e9435 Merge: 6b0f8e00a 0e3b78020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:32 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b0f8e00a8a30c313fbc88fa36334eba971cb2f4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:08 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9334 commit 0e3b7802015cf0ef4834f9bbab471f358c3c726e Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:03:48 2023 +0800 :memo: Update changelogs commit cc3b4e320ef8d57df43a3bea9adc4630d58dcdf5 Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:01:11 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 29f34fe8b8abe05d07bb0c4a2056af4ea6e74896 Author: Daniel <845765@qq.com> Date: Tue Oct 3 12:56:13 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 7556d1c3a28c152ebb5f6655236694d6083c9306 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:49:12 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 558422c4079bc79f4b9997f0cf1183e5ea8ad1c0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:46:25 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 433cb91d7515ccfa5ba9dbb279902187d3c820e0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 10:33:41 2023 +0800 :arrow_up: Upgrade kernel deps commit c5a25fe88f1497f55d5bb4979093c831c572c0e1 Author: Daniel <845765@qq.com> Date: Tue Oct 3 08:52:33 2023 +0800 :bug: Database render deleted block https://ld246.com/article/1695790906050/comment/1696234209062?r=88250#comments commit f6a8ca20cdc7a5df253b202ff637b8bea655e612 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 08:39:36 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 11cc108893b325774e78a4d1f7ba80a2b76bbc8a Author: Daniel <845765@qq.com> Date: Tue Oct 3 07:57:36 2023 +0800 :bug: Create doc with ref Fix https://github.com/siyuan-note/siyuan/issues/9329 commit d869aef346ccdab9044edf8e832be5fb6026b143 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:46:36 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit 3d7bf2eb0fd1c4f9d033970997687030e478fb53 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:39:08 2023 +0800 :art: Remove the access authorization code setting item on the browser-end https://github.com/siyuan-note/siyuan/issues/9331 commit 279e17e8b587694b83b58d730eeb774278ecc670 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:15:33 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit d2356754ddd4d4c9e99e74e50e691ce8c26c1824 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:41:51 2023 +0800 :memo: Update changelogs commit 4fdd0ddef046cefd8f0149e7198020d2677e9af2 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:37:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b4bded40e3a5134e4387b090c56f83567a8942ab Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:24:16 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit bfd27a62d1ec270cd52594a55f766862e9961c05 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:22:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 0aa61fe5b7eb44941410c5591e654ce7850b46d0 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:14:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 7d1e1bf2e59b3ea77986309ac872d1ef4e16dbdf Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:02:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 8c31eb0eac956e63b8e172617ee5cdc783b7658a Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:59:16 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 37892e786b511dd4bd4d5cedc603cc0a438bb651 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:58:48 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit f965ef0945c65f2affa5180cf762c0d498681aac Merge: b709c8458 b2f5ab570 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit b709c8458508b1955ddcef020457e643990e0bb0 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:00 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit b2f5ab5700f4ad30d04c645a466512448225b5d8 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:36:22 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b833087cb6287cd4e7a39d6b50ad42e9394df930 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:33:53 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit dbdddd7ff36da2da3ff03a779ef3af5f4fcc2a69 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:16:08 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b981fa08a04e769793a19862e8916985beefc13f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:05:06 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 6e475e185709e81b39a6ef5d0eae028a3c034369 Author: Daniel <845765@qq.com> Date: Sun Oct 1 11:05:24 2023 +0800 :memo: Update changelogs commit df38f89f4077e30ccafb0fae8da1ca38b781fb4f Merge: 465375422 b69e8d335 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:02:11 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 46537542210a82aab15b991692bfe3b63da31b8f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:01:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9291 commit b69e8d335726fb64e35b4d80b844e4e30e5d6344 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:58:46 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit df487a7c6aace2accba9d3fd576c38f3705d021f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:49:52 2023 +0800 :bug: flash card zoomin status commit c0424caf679ae463aef8b39e003b256263f0e978 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:42:12 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit e8359edebc8867e79dce7b918bf709de15e28242 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:27:07 2023 +0800 :rotating_light: commit c3212235b75352cc23da2e42e14435a3f0ab7aa4 Merge: 64900706b 702926430 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:51 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 64900706b21df441edbe91db3887a81008c19286 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:31 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9313 commit 702926430014c14fd3dbec9fa3a7cbb8fde0122e Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:03:07 2023 +0800 :memo: Update changelogs commit 29d155d0cd617a22a0aa0b65e27c2ae0dc428390 Author: Daniel <845765@qq.com> Date: Sun Oct 1 09:37:46 2023 +0800 :art: Improve missing line breaks when exporting RTF Fix https://github.com/siyuan-note/siyuan/issues/9325 commit 05cfcf7c2b8bda82eb9d0ccd67a4707b9da18a65 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:46:00 2023 +0800 :art: https://ld246.com/article/1695361968294 commit 67e0dad0a750e6c34caa2628e652d294de600ea7 Merge: 856445a6e fee908d01 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:21 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 856445a6ef7af178818ec33ce28ea337ed53e35a Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:06 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9323 commit fee908d01e23b692b5ee8da73611e1205f7be95f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:19:26 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 11d2f7c580176c94dc1708a37d322c752425a08f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:18:27 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 83dce4f3e6577152f931a80bd47e436118af7e61 Merge: 1f2faecf4 49d92538d Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1f2faecf4d63202cb3087d988400dea06dfe8082 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:01 2023 +0800 :zap: breadcrumb commit 49d92538dfa76a70afa5f057274bb2afb99384d3 Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:52:26 2023 +0800 :bug: The subdoc creation path is unstable when a parent doc with the same name exists Fix https://github.com/siyuan-note/siyuan/issues/9322 commit 17dd264479cd0aa40320cb69592af848a751378a Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:34:28 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit e74733b4e1af49977fd77b3df6e37277089ec2de Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:57:23 2023 +0800 :recycle: Refactor create doc by hpath commit f608da26a5d572c981b73d7b53e189f558512a4a Merge: 6b2a4ff0a 121d33e74 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:39 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b2a4ff0aa2e1aeae2f7afedf2e3f752ef7c6cb6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9317 commit 121d33e74d773def64c35d6f9476ad8aa238fa8b Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:56:47 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit 82bed847e6c327cd4bbb3b5cf77e1726ebfe4fff Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 14:40:45 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9320 commit f8b272d596f67cafbd83e3d4d69a2fc4d5c90fae Merge: 2dae1200b ca855c1fa Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2dae1200b48b3813252e9fbcbeb1d77dffd275e6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:40 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9316 commit ca855c1fa54756b5ff9afd1270f4c4d7aa444b9f Author: Daniel <845765@qq.com> Date: Sat Sep 30 11:57:37 2023 +0800 :art: Attribute Panel - Database sort attributes by view column order https://github.com/siyuan-note/siyuan/issues/9319 commit 1063f503756f89afe12125bb59b256e8b9a201b3 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 11:21:46 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/9318 commit 1f899aaf3c3a9aa4d566a51584a4165d8b8b24bd Author: Vanessa <lly219@gmail.com> Date: Fri Sep 29 21:41:14 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9281 commit 2b9bec8e8b07c9fc6280b272a2ea31569ebf0b2f Author: Daniel <845765@qq.com> Date: Fri Sep 29 17:33:18 2023 +0800 :art: Ctrl+N should follow notebook create save path https://ld246.com/article/1695965429553 commit 41e35ea795fd4fe1408e99e5c2b5b1b6c91f2c9b Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:45:23 2023 +0800 :rotating_light: commit 6a37b8661304a6afa9a95716203c407dc2f9c688 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:44 2023 +0800 :rotating_light: commit 4c6b695dae9e132cce01c4f36ed7657a89c322ff Merge: df3f444e4 dc03a5cf3 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:18 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit df3f444e480057ea3bb7582eb180a72cc0f842cd Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:40:44 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9300 commit dc03a5cf38601690649b1536624d3bb6f8985cc2 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:46:29 2023 +0800 :arrow_up: Upgrade kernel deps commit 172b7ed0180d573ad796f1ff6dd6c1aea9384064 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:39:12 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit 6354d04e4bae7a5184847baa30bcba24397b18d8 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:22:17 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit b2a27bb54ca2f761fdfe6c182b463a58132b1861 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Thu Sep 28 22:38:49 2023 +0800 Refactor code language and ts types (#9300) * :art: Code block language list adds custom languages * Update index.d.ts * :art: Improve global variable type definition * :art: Improve global variable type definition * :art: Add constant `EXTRA_CODE_LANGUAGES` commit 17d2a16a9477453691c325bbabf47c1a42d9b4ea Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 22:31:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9264 commit ceb9aef1d6710c806728dd08289906a93d775344 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 17:25:18 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9303 * :art: Improve the width of image in attribute view cell * :art: Adjust the style of rows' gutter * Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of rows' gutter * :bug: Improve the style of icon in attribute view * :art: Improve preview text fields * Revert Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of image in attribute view cell * :art: Improve the style of firstcol * :bug: Fix check icon click event handle * Merge tag 'v2.10.9-dev3' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.9' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.10' into feat/attrs-view-adaptive-width * Squashed commit of the following: commit c8924e37ae8eeffb4b49c30560372722458d4f84 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 12:14:12 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9409 commit 879fdd827d8aa1b817c3df7ca2026413e2a916ba Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:56:16 2023 +0800 :lipstick: dragover commit 9978827389d3ec49e14b7ed9d7dfe506a208e8df Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:34:42 2023 +0800 :art: 数据库块适配外观和宽度调整 commit a20ffeb12b67e87968676d0d7a1b17b1870e7144 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:20:17 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9412 commit f2075fafac55e31468d2519ede6dc98675fc8496 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:04:23 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 5e2910a4e60d61a6b4d64def65aeac9cbdbf8698 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:00:46 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit ac7f8d36dfc7bf73903b4fa3129417475ec6eb9b Merge: 9ae8400b4 d78a0205f Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:40 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9ae8400b474e913e5ed4b3fc26dae5464a1692fe Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:21 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit d78a0205f5a04e342b1dd4b2522ff294d30f952f Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:51:46 2023 +0800 :art: Database table view breadcrumb commit 6b1a2925c9c6404b4bf53007aea17f97675aea5a Merge: 25109b906 9766020b8 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:46 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 25109b906fc4df4d19ea8aa507ed278307b43322 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:35 2023 +0800 :art: 数据库块适配外观和宽度调整 commit 9766020b8950762b6b1e44de48e4e1159cc8c89c Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:08:57 2023 +0800 :art: Update text commit ab673896505f038d99497ab3880352b100d2d916 Merge: 7d6f9bb0d 39c5744f2 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 7d6f9bb0dff9b9cbbc6071a25b25276ab998a652 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:42 2023 +0800 :art: 数据库不能设置布局 commit 39c5744f2fa1d0c8d07ea14ce6a9dbd72ba3bc03 Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:46:29 2023 +0800 :bug: Database table view export does not display select content Fix https://github.com/siyuan-note/siyuan/issues/9428 commit 87ecb7f24acc3c5a20b763979781e7adfa86134d Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:37:47 2023 +0800 :art: Update text commit 69d8c93c98dfee2aa24b7ed1c8a663dfed6546b6 Merge: 623f30b5f f6780c126 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:54 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 623f30b5fc3de9e900ab574555c8af0f254f37e4 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:44 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit f6780c126abfd4576963470ba11a40933c17246e Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:20:51 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit fd94e9df0cdbaa13cbd5478fdf14d55e29bec42a Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 00:04:16 2023 +0800 :art: commit 51f66879ccc5808524c5e65802951cd9bff8eab3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:50:31 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 49305b8911249ab5f2548c7433afa816b9506e95 Merge: 2f0f563e1 8399aba10 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:26:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2f0f563e121ceacdf0ca0e1f53b6718812f0d5e7 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:25:58 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 8399aba10b53c701859402432efbd426f137a800 Author: Daniel <845765@qq.com> Date: Fri Oct 13 23:22:17 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 22efb3d5235fbbe1951fee9caf1009638e4e56c4 Merge: f95084e96 c3d1c04af Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:07:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f95084e96a3ca62add6cc27ac283132b4e7cd1be Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:06:53 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit c3d1c04af4066c231363d72fa18bd65d600b8dca Author: Daniel <845765@qq.com> Date: Fri Oct 13 22:50:11 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit a11ea9c3479aaa74db18ca7a22b0d4616f18f665 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:37:15 2023 +0800 :lipstick: commit 99ec5c10a4ed614e13a6a935dace95637716977f Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:32:17 2023 +0800 :art: showHiddenFiles commit 49426ac916279cc000670580e4586c2b4df51c72 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:15:20 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9425 commit d445c5401ffb4a1b2fcf01abc062734efc6c6cb2 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:54:35 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 0c4aee7388c03202a4bb3d11c7b89b0e21e48d85 Merge: c34d84ce2 daa9ddfd5 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c34d84ce29b8ccbb78dbcc96584804253997c0d1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit daa9ddfd50eebdc98084d3aba28f09008294ba54 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:43:43 2023 +0800 :art: Don't load plugin when the user hasn't agreed to trust bazaar content yet Fix https://github.com/siyuan-note/siyuan/issues/9426 commit 01b19ea2c85c7f039ff427b03d6a2f0d7f4b0488 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:03:41 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 7a9a85ea323e79e8a122d5e19a4dfb9618a2ce41 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:55:27 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 1815ec1b39ba30b427d366d41754582476b8f6a4 Merge: 73edee57a 00ed190ad Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 73edee57a4f755e293ac7a2b04e2381813839550 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:32 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 00ed190ad76f357ec780d68888a04dbd5f402ea5 Author: Daniel <845765@qq.com> Date: Fri Oct 13 13:21:53 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 48e871c75e59cbf7de299e8908a1ba25ddf76278 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 12:33:29 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 3554333da9be4b22d844af83b8c540a7b6feb874 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:55:51 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit af810b279d6e6535947a143987627b3aa1e066c0 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:34:19 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 673c952f079d4a7aa42f6bf59a348f27cfcaf360 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:30:44 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 3b87a0d9ed8c313ecc75c29c7c990c7d17d68bab Merge: ed31305d1 3de7781b1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:09:07 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed31305d1d291010c3d4b6b223b924823b7be95e Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:08:56 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 3de7781b1c78fb35ba3e90b729015bd0d9cfaa45 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:44:29 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 2304921feefff56d34d4b673cba8a491f399f2a6 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:42:51 2023 +0800 :art: Update flashcard user guide commit 55fb8b19abf9d91f40fd4d177dc5f20758e1a3b3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 10:14:11 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit 8998de9d812eeb67060a7dd3e7eacec28abea656 Merge: 5b38e79be df9b55c71 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:35 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 5b38e79be75e32f33332a6f700263e1460d645bf Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:24 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit df9b55c71ba6aea40617a2fc17ad9d4908edc81c Author: Daniel <845765@qq.com> Date: Fri Oct 13 08:46:29 2023 +0800 :art: Database template columns support sort commit 3da9f0f1e133d5e69e5af674d6b8f83b9f6136f2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:40:09 2023 +0800 :bug: 新增行后弹出的输入框 commit 79a88dfbece66248b9eaa39a1821b4e2a8025148 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:23:18 2023 +0800 :rotating_light: commit 40a1e6d5cc8107abfa7addb27c347f6677a1e4fe Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:21:53 2023 +0800 :lipstick: database loading commit 2872dab9eb9c40e06d43886728ddad84c1c18722 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:11:59 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 025a8ea5a7b38b444957a73ddbcde7c2f1a054ed Merge: 02ec0f6e5 0ea9b8f5a Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 02ec0f6e5a68e7810545f8a5e132465719dc0442 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:01 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 0ea9b8f5a7223bcdab3b8f8e5e890d908e164c34 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:58:32 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit 1590913db73d8def51a05544b8a2b5e654285aa3 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:55:57 2023 +0800 :art: Update attr panel for av commit d257caff8d5d12a1751c3d18d3ca972cd5ef453d Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:38:37 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit fdaf8d7e595f11e3e0d67b01427a0485532191c6 Merge: 70e82cd98 238609f25 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 70e82cd981e5890aaad782631741521f5cd7ef41 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:19 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9416 commit 238609f25f39c42fa28bf14d4fa767f8c912b41e Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:33:23 2023 +0800 :zap: Improve performance of loading database table view commit 2dd558b6090b96cc77db2dac0002db67b5b772ce Merge: fe0b1e8d6 8fb35f556 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit fe0b1e8d6023c5d3e02614bf2515b93dd19b0b5e Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:31 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9415 commit 8fb35f5565c197617f57f02def80f8bd6b374d3d Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:15:36 2023 +0800 :art: Database template columns support number filter Fix https://github.com/siyuan-note/siyuan/issues/9414 commit 01670f2b00f31b1421ebdef9795d880863f09cdc Merge: f792d141f ffcdb5d39 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:48 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f792d141fc412a54165a9fda87216d497258c5da Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:09 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9408 commit ffcdb5d398da4b70a6cc4c06478a1f97085bf482 Author: Daniel <845765@qq.com> Date: Thu Oct 12 16:37:09 2023 +0800 :bug: SVG images cannot be displayed on some systems https://github.com/siyuan-note/siyuan/issues/9413 commit fb1f80cf4de0bdd45b140facf351c86fa243c757 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:22:55 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9406 commit da51aded35aaf8b5b0d475b49a98d179865992de Merge: a4bcae87e 09ef5fddf Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:42 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a4bcae87ee24a2592c8c43b669efc9d284a588c2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:29 2023 +0800 :bug: 数据库数字填0无效 commit 09ef5fddf9335f8a2e14b5eb197509ba80324e1f Author: Daniel <845765@qq.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: Database template columns support calculations https://github.com/siyuan-note/siyuan/issues/9408 commit 1b595d014a739094cede52527606d6d45e3ed35c Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: #9408 commit 21d1a0515ae46352a1bace0e17beac571d32c088 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:54:15 2023 +0800 :lipstick: 编辑后表头不固定 commit c5206f70843c866746d4db87c7e33681b98e48d2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:14:29 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9405 commit f0f55d3b026446f996e7c83fd49580d9db8592a9 Merge: 019412404 92151f715 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:19 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 01941240470a9bac540655507d2aa354bf5f46a1 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:09 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9403 commit 92151f71504332d96456f52087423ba967c02f78 Author: Daniel <845765@qq.com> Date: Thu Oct 12 10:12:44 2023 +0800 :art: Change database template column custom attribute action Fix https://github.com/siyuan-note/siyuan/issues/9401 commit b8e8aa0593576563e9c462df3e18900fb3ec41d6 Author: Daniel <845765@qq.com> Date: Wed Oct 11 17:00:21 2023 +0800 :hammer: Clean code commit b17aff577300a63cf77f63e2a9665cc0a2692f1e Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:54:40 2023 +0800 :bug: commit 11174958bc87bc00937d957f6004854f5105dd09 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:50:28 2023 +0800 :bug: 预览模式下点击只读 commit 130884d758774fac373c41a8540ce6d90c741ba6 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:23:01 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9404 commit 7486e1a6e22f765cffd4d231b0adb984bfe70089 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 17:28:40 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9402 commit eb93255cf32782a93d3c9b3a6d8bb3cb9f0ff7ef Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:57:14 2023 +0800 :hammer: Clean code commit fd46593815f5666f8b08e01d1e3ff9b75eab1ca3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:55:06 2023 +0800 :bookmark: Release v2.10.10 commit 337c79571d6e2b073435d95f642634130a5d0bf0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:59:25 2023 +0800 :art: Improve install new version on Windows commit f6f1148de11044c5e58ad786722087d631d8cbb4 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:08:44 2023 +0800 :memo: Update changelogs commit f0ad3268baf62bcc2be569eb21019ceaf4e1861c Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:30:00 2023 +0800 :art: commit 2eb89f067317cbb1ec13c7c4ae4cc7fc62b7fcac Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:25:21 2023 +0800 :rotating_light: commit 0db516e4b9455a87e5e29808ea77712adc4b4371 Merge: 23c3f9f15 e43cf4cf5 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:41 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 23c3f9f154326aefa8743a2d2c9b6596611722af Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:29 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9383 commit e43cf4cf55de73c37a5dc603017b957b15a34499 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:52:10 2023 +0800 :memo: Update changelogs commit b30cb0984aec2ae2248863f056bbef4f701980d5 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:49:04 2023 +0800 :memo: Update changelogs commit d4a3226a566421d01a0bcf9e9ad00cac1cb38ae3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:40 2023 +0800 :memo: Update changelogs commit 65adab61c9f63ab0d692890ff977c567d1628845 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:29 2023 +0800 :art: Adding row overwriting data after enabling filter in database https://github.com/siyuan-note/siyuan/issues/9395 commit 210a3ac5472245eed820a7c76aadb09d50029bb0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:04:39 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 37f950ba4f6028f993786958eb9b3a0d2dca066b Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:39:22 2023 +0800 :lipstick: icon commit 7b1c30bc26b796116e7bd936436b3f9e3e1cb316 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:30:13 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit 6ef13aba784dd6df37b9ac61573b8d8123488743 Merge: acd2eb167 e4907e789 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit acd2eb167707ad5cfa7e5cc7d9e06a6adfe8d92d Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit e4907e7896ceb014a3064565e05631eb621a1f3a Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:16:57 2023 +0800 :art: The block in the editor shows the database icon https://github.com/siyuan-note/siyuan/issues/8894 commit 6f249d768f954e58dad876010927fdcf43b3b05b Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:15:03 2023 +0800 :arrow_up: Upgrade kernel deps commit bb04bf9f705b1169d4efb44c441daf1ecb56cf91 Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:04:39 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 30b0dd08face947c3a9ad0a8c468862a93424cac Merge: c1de5e148 ccb65454a Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c1de5e1488963eb63c9230ff8c691573febb3791 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:44 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/8894 commit ccb65454a2bad059a33cf360aef8f0a895030dbf Author: Daniel <845765@qq.com> Date: Wed Oct 11 08:50:13 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 28e4e1ef2fe1c373b9524a2c3f1cca85eb5452f4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:31:46 2023 +0800 :art: Rename the .sya annotation file when renaming a PDF asset https://github.com/siyuan-note/siyuan/issues/9390 commit 964c822c2b7322f956234726f0bbb15106da35e4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:02:46 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f404d7fe85a66babc255e151fe18ad656dbb5eb2 Merge: ed7084c7b 301b6d9f7 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed7084c7be222cb76a9567c32a5b3b92897e12b3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:43 2023 +0800 :lipstick: commit 301b6d9f70ec0166b0567e925d71d241999a9cd8 Author: Daniel <845765@qq.com> Date: Tue Oct 10 21:55:43 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f62be4719eaba196b83b5972e9c0dcfc1e4b6020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:50:36 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9385 commit 8e2565f347337806eaca57489ab0666c314899c4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:39:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9386 commit e54d8f1a4d2c979f2a3147a292330ad36a83c0fb Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:31:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9393 commit 1fb7187936646643216e6ca96344576738f7019b Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:23:29 2023 +0800 :memo: fix https://github.com/siyuan-note/siyuan/issues/9392 commit ea00753f380f1045ff357447b0e7acc9dd117a28 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9392 commit 4318aa446369eaf4ea85982ba4919b5d47340552 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:51:28 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9376 commit f1d4f8472b63c379b0bd51ee973b1505e615b12c Merge: 3f4c00efc 64df2ffa4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 3f4c00efcddb7030e39616eadc9587dc3e1d17d8 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9376 commit 64df2ffa42df2804778f401ec75203319fe5cba4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:37:51 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 691a0bea33e430f94d46a65f2887e187080c199d Merge: 0e5cae300 7e9243d8d Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:41:05 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 0e5cae30015f960637b1a22a935d55e64e499ef5 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:40:38 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit 7e9243d8dc063bd481e202f73c2b16d367c6cbea Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:05:48 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 7aa4aacfc3e4c356db033305a8e8a9e268c8c427 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:30:10 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit d02381d3f2cabe4a0fa7a5518b79c7030dae8c0e Merge: 449d2dbf8 6e9099ea1 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:14 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 449d2dbf87d838409351fc8c4b7a42af59dc65c3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:03 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9256 commit 6e9099ea12ba692b4aab7cef34bc61458eb6ec14 Author: Daniel <845765@qq.com> Date: Tue Oct 10 16:52:40 2023 +0800 :lock: Authenticate requests of assets other than 127.0.0.1 Fix https://github.com/siyuan-note/siyuan/issues/9388 commit 11786381cf6b1d5f58c862ab99a0993ac6ab4ad4 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Tue Oct 10 16:21:50 2023 +0800 Improve event bus `open-siyuan-url-plugin` (#9256) * :art: Improve plugin event bus `open-siyuan-url-plugin` * :bug: Avoid plug-in names with the same prefix * Update onGetConfig.ts commit 2c36af78bc789505c8d2d461c70aa9e36a782d2f Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 16:15:24 2023 +0800 :rotating_light: commit b0e3efa774c0d500567c96e1f1720cd11271dd0e Author: Daniel <845765@qq.com> Date: Tue Oct 10 11:41:46 2023 +0800 :bookmark: Release v2.10.9 commit d690475ae63c41f486eb752de203fe2a90b7e2c2 Merge: c8a6f4185 811bac942 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:58:46 2023 +0800 Merge remote-tracking branch 'origin/master' commit c8a6f4185e25813687883ab241a18d21ae8a5b22 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:18:57 2023 +0800 :bookmark: Release v2.10.9 commit cdcec7e58dd597b87967c456107e062db90c41e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:29:25 2023 +0800 :memo: Update changelogs commit 1eccb8ba4d6e7f9a9b37f18f9bd444920d93744c Merge: a3094fe3e 3827753b7 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:26:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a3094fe3ead644f67886324f165e6157818ed680 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:25:48 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9384 commit 3827753b7c7391680af13c9ea5812ab4247e8381 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:07:34 2023 +0800 :art: Upgrade Electron https://github.com/siyuan-note/siyuan/issues/9342 commit 567394afba01704c66a4e65bc54260becc2eb034 Author: Daniel <845765@qq.com> Date: Mon Oct 9 22:42:39 2023 +0800 :memo: Update changelogs commit ff6220abaa2d8316e4ad1771985e47885eac1a45 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Mon Oct 9 21:51:39 2023 +0800 :art: add `@electron/remote` dependency (#9381) commit da0fa0853f46a957c35a282235a53c3fd8e10163 Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:45:36 2023 +0800 :art: Replace non-breaking spaces with normal spaces when copying https://github.com/siyuan-note/siyuan/issues/9382 commit 0ed68847618c241704702757c3324493a3fb8c2a Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:09:35 2023 +0800 :bug: Update av Fix https://github.com/siyuan-note/siyuan/issues/9380 commit 288eb24474ed21416c69d6ec366f22ef67189d8e Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:30:19 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 4965b7b8458edd974efa85483aed8ba4f7a6b106 Merge: 803069d80 902849153 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 803069d8071240447567a233c5ad104bb5962511 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 902849153a87eb75b200ab37b9ff674e8ba382d0 Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:17:40 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit faadbf5960997f42ad22884d7394d2b3fd6bf3e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 16:48:28 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit 9ca11625bd71b67b50e5091f680932762e02862a Merge: 43f06e57d 644e0319d Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:45:06 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 43f06e57d9125ed62f2db0e8d0c10f53ef0d8e0a Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:44:46 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 811bac942ddbdc48f29e587ea6ffb8f68ce2e4ac Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:36 2023 +0800 :art: Free disk space for docker image building GitHub Action commit 66aa802765998feb6af7883e678cc835702d689a Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:28 2023 +0800 :art: Free disk space for docker image building GitHub Action * Update anno.ts * Update index.ts * :art: Adapt to align styles * :art: Adapt to using arrow keys/Esc to select a cell/row * Update row.ts * :art: Adjusted the cell width in attribute view * :bug: Fixed the issue that the first column was misaligned * Update index.ts * Update action.ts
2023-11-09 16:35:49 +08:00
<div class="av__body">
${tableHTML}
<div class="av__row--add">
Improve adaptive width for `Attributes View` (#9280) * :art: Attrs View adaptive width * :art: Add CSS class `av__body` * :art: add margins for attribute view * :art: add max-width for attribute view * Squashed commit of the following: commit 642d041513898c9c3fc551f7a8625dc075c6d08a Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:36:25 2023 +0800 :bookmark: Release v2.10.8 commit 43e53672b023ad6c13c28d1d2911bfddfa7e9435 Merge: 6b0f8e00a 0e3b78020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:32 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b0f8e00a8a30c313fbc88fa36334eba971cb2f4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:08 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9334 commit 0e3b7802015cf0ef4834f9bbab471f358c3c726e Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:03:48 2023 +0800 :memo: Update changelogs commit cc3b4e320ef8d57df43a3bea9adc4630d58dcdf5 Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:01:11 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 29f34fe8b8abe05d07bb0c4a2056af4ea6e74896 Author: Daniel <845765@qq.com> Date: Tue Oct 3 12:56:13 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 7556d1c3a28c152ebb5f6655236694d6083c9306 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:49:12 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 558422c4079bc79f4b9997f0cf1183e5ea8ad1c0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:46:25 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 433cb91d7515ccfa5ba9dbb279902187d3c820e0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 10:33:41 2023 +0800 :arrow_up: Upgrade kernel deps commit c5a25fe88f1497f55d5bb4979093c831c572c0e1 Author: Daniel <845765@qq.com> Date: Tue Oct 3 08:52:33 2023 +0800 :bug: Database render deleted block https://ld246.com/article/1695790906050/comment/1696234209062?r=88250#comments commit f6a8ca20cdc7a5df253b202ff637b8bea655e612 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 08:39:36 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 11cc108893b325774e78a4d1f7ba80a2b76bbc8a Author: Daniel <845765@qq.com> Date: Tue Oct 3 07:57:36 2023 +0800 :bug: Create doc with ref Fix https://github.com/siyuan-note/siyuan/issues/9329 commit d869aef346ccdab9044edf8e832be5fb6026b143 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:46:36 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit 3d7bf2eb0fd1c4f9d033970997687030e478fb53 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:39:08 2023 +0800 :art: Remove the access authorization code setting item on the browser-end https://github.com/siyuan-note/siyuan/issues/9331 commit 279e17e8b587694b83b58d730eeb774278ecc670 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:15:33 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit d2356754ddd4d4c9e99e74e50e691ce8c26c1824 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:41:51 2023 +0800 :memo: Update changelogs commit 4fdd0ddef046cefd8f0149e7198020d2677e9af2 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:37:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b4bded40e3a5134e4387b090c56f83567a8942ab Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:24:16 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit bfd27a62d1ec270cd52594a55f766862e9961c05 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:22:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 0aa61fe5b7eb44941410c5591e654ce7850b46d0 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:14:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 7d1e1bf2e59b3ea77986309ac872d1ef4e16dbdf Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:02:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 8c31eb0eac956e63b8e172617ee5cdc783b7658a Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:59:16 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 37892e786b511dd4bd4d5cedc603cc0a438bb651 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:58:48 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit f965ef0945c65f2affa5180cf762c0d498681aac Merge: b709c8458 b2f5ab570 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit b709c8458508b1955ddcef020457e643990e0bb0 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:00 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit b2f5ab5700f4ad30d04c645a466512448225b5d8 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:36:22 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b833087cb6287cd4e7a39d6b50ad42e9394df930 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:33:53 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit dbdddd7ff36da2da3ff03a779ef3af5f4fcc2a69 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:16:08 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b981fa08a04e769793a19862e8916985beefc13f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:05:06 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 6e475e185709e81b39a6ef5d0eae028a3c034369 Author: Daniel <845765@qq.com> Date: Sun Oct 1 11:05:24 2023 +0800 :memo: Update changelogs commit df38f89f4077e30ccafb0fae8da1ca38b781fb4f Merge: 465375422 b69e8d335 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:02:11 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 46537542210a82aab15b991692bfe3b63da31b8f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:01:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9291 commit b69e8d335726fb64e35b4d80b844e4e30e5d6344 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:58:46 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit df487a7c6aace2accba9d3fd576c38f3705d021f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:49:52 2023 +0800 :bug: flash card zoomin status commit c0424caf679ae463aef8b39e003b256263f0e978 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:42:12 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit e8359edebc8867e79dce7b918bf709de15e28242 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:27:07 2023 +0800 :rotating_light: commit c3212235b75352cc23da2e42e14435a3f0ab7aa4 Merge: 64900706b 702926430 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:51 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 64900706b21df441edbe91db3887a81008c19286 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:31 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9313 commit 702926430014c14fd3dbec9fa3a7cbb8fde0122e Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:03:07 2023 +0800 :memo: Update changelogs commit 29d155d0cd617a22a0aa0b65e27c2ae0dc428390 Author: Daniel <845765@qq.com> Date: Sun Oct 1 09:37:46 2023 +0800 :art: Improve missing line breaks when exporting RTF Fix https://github.com/siyuan-note/siyuan/issues/9325 commit 05cfcf7c2b8bda82eb9d0ccd67a4707b9da18a65 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:46:00 2023 +0800 :art: https://ld246.com/article/1695361968294 commit 67e0dad0a750e6c34caa2628e652d294de600ea7 Merge: 856445a6e fee908d01 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:21 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 856445a6ef7af178818ec33ce28ea337ed53e35a Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:06 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9323 commit fee908d01e23b692b5ee8da73611e1205f7be95f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:19:26 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 11d2f7c580176c94dc1708a37d322c752425a08f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:18:27 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 83dce4f3e6577152f931a80bd47e436118af7e61 Merge: 1f2faecf4 49d92538d Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1f2faecf4d63202cb3087d988400dea06dfe8082 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:01 2023 +0800 :zap: breadcrumb commit 49d92538dfa76a70afa5f057274bb2afb99384d3 Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:52:26 2023 +0800 :bug: The subdoc creation path is unstable when a parent doc with the same name exists Fix https://github.com/siyuan-note/siyuan/issues/9322 commit 17dd264479cd0aa40320cb69592af848a751378a Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:34:28 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit e74733b4e1af49977fd77b3df6e37277089ec2de Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:57:23 2023 +0800 :recycle: Refactor create doc by hpath commit f608da26a5d572c981b73d7b53e189f558512a4a Merge: 6b2a4ff0a 121d33e74 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:39 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b2a4ff0aa2e1aeae2f7afedf2e3f752ef7c6cb6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9317 commit 121d33e74d773def64c35d6f9476ad8aa238fa8b Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:56:47 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit 82bed847e6c327cd4bbb3b5cf77e1726ebfe4fff Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 14:40:45 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9320 commit f8b272d596f67cafbd83e3d4d69a2fc4d5c90fae Merge: 2dae1200b ca855c1fa Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2dae1200b48b3813252e9fbcbeb1d77dffd275e6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:40 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9316 commit ca855c1fa54756b5ff9afd1270f4c4d7aa444b9f Author: Daniel <845765@qq.com> Date: Sat Sep 30 11:57:37 2023 +0800 :art: Attribute Panel - Database sort attributes by view column order https://github.com/siyuan-note/siyuan/issues/9319 commit 1063f503756f89afe12125bb59b256e8b9a201b3 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 11:21:46 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/9318 commit 1f899aaf3c3a9aa4d566a51584a4165d8b8b24bd Author: Vanessa <lly219@gmail.com> Date: Fri Sep 29 21:41:14 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9281 commit 2b9bec8e8b07c9fc6280b272a2ea31569ebf0b2f Author: Daniel <845765@qq.com> Date: Fri Sep 29 17:33:18 2023 +0800 :art: Ctrl+N should follow notebook create save path https://ld246.com/article/1695965429553 commit 41e35ea795fd4fe1408e99e5c2b5b1b6c91f2c9b Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:45:23 2023 +0800 :rotating_light: commit 6a37b8661304a6afa9a95716203c407dc2f9c688 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:44 2023 +0800 :rotating_light: commit 4c6b695dae9e132cce01c4f36ed7657a89c322ff Merge: df3f444e4 dc03a5cf3 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:18 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit df3f444e480057ea3bb7582eb180a72cc0f842cd Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:40:44 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9300 commit dc03a5cf38601690649b1536624d3bb6f8985cc2 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:46:29 2023 +0800 :arrow_up: Upgrade kernel deps commit 172b7ed0180d573ad796f1ff6dd6c1aea9384064 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:39:12 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit 6354d04e4bae7a5184847baa30bcba24397b18d8 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:22:17 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit b2a27bb54ca2f761fdfe6c182b463a58132b1861 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Thu Sep 28 22:38:49 2023 +0800 Refactor code language and ts types (#9300) * :art: Code block language list adds custom languages * Update index.d.ts * :art: Improve global variable type definition * :art: Improve global variable type definition * :art: Add constant `EXTRA_CODE_LANGUAGES` commit 17d2a16a9477453691c325bbabf47c1a42d9b4ea Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 22:31:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9264 commit ceb9aef1d6710c806728dd08289906a93d775344 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 17:25:18 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9303 * :art: Improve the width of image in attribute view cell * :art: Adjust the style of rows' gutter * Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of rows' gutter * :bug: Improve the style of icon in attribute view * :art: Improve preview text fields * Revert Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of image in attribute view cell * :art: Improve the style of firstcol * :bug: Fix check icon click event handle * Merge tag 'v2.10.9-dev3' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.9' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.10' into feat/attrs-view-adaptive-width * Squashed commit of the following: commit c8924e37ae8eeffb4b49c30560372722458d4f84 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 12:14:12 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9409 commit 879fdd827d8aa1b817c3df7ca2026413e2a916ba Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:56:16 2023 +0800 :lipstick: dragover commit 9978827389d3ec49e14b7ed9d7dfe506a208e8df Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:34:42 2023 +0800 :art: 数据库块适配外观和宽度调整 commit a20ffeb12b67e87968676d0d7a1b17b1870e7144 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:20:17 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9412 commit f2075fafac55e31468d2519ede6dc98675fc8496 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:04:23 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 5e2910a4e60d61a6b4d64def65aeac9cbdbf8698 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:00:46 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit ac7f8d36dfc7bf73903b4fa3129417475ec6eb9b Merge: 9ae8400b4 d78a0205f Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:40 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9ae8400b474e913e5ed4b3fc26dae5464a1692fe Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:21 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit d78a0205f5a04e342b1dd4b2522ff294d30f952f Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:51:46 2023 +0800 :art: Database table view breadcrumb commit 6b1a2925c9c6404b4bf53007aea17f97675aea5a Merge: 25109b906 9766020b8 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:46 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 25109b906fc4df4d19ea8aa507ed278307b43322 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:35 2023 +0800 :art: 数据库块适配外观和宽度调整 commit 9766020b8950762b6b1e44de48e4e1159cc8c89c Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:08:57 2023 +0800 :art: Update text commit ab673896505f038d99497ab3880352b100d2d916 Merge: 7d6f9bb0d 39c5744f2 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 7d6f9bb0dff9b9cbbc6071a25b25276ab998a652 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:42 2023 +0800 :art: 数据库不能设置布局 commit 39c5744f2fa1d0c8d07ea14ce6a9dbd72ba3bc03 Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:46:29 2023 +0800 :bug: Database table view export does not display select content Fix https://github.com/siyuan-note/siyuan/issues/9428 commit 87ecb7f24acc3c5a20b763979781e7adfa86134d Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:37:47 2023 +0800 :art: Update text commit 69d8c93c98dfee2aa24b7ed1c8a663dfed6546b6 Merge: 623f30b5f f6780c126 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:54 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 623f30b5fc3de9e900ab574555c8af0f254f37e4 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:44 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit f6780c126abfd4576963470ba11a40933c17246e Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:20:51 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit fd94e9df0cdbaa13cbd5478fdf14d55e29bec42a Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 00:04:16 2023 +0800 :art: commit 51f66879ccc5808524c5e65802951cd9bff8eab3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:50:31 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 49305b8911249ab5f2548c7433afa816b9506e95 Merge: 2f0f563e1 8399aba10 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:26:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2f0f563e121ceacdf0ca0e1f53b6718812f0d5e7 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:25:58 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 8399aba10b53c701859402432efbd426f137a800 Author: Daniel <845765@qq.com> Date: Fri Oct 13 23:22:17 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 22efb3d5235fbbe1951fee9caf1009638e4e56c4 Merge: f95084e96 c3d1c04af Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:07:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f95084e96a3ca62add6cc27ac283132b4e7cd1be Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:06:53 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit c3d1c04af4066c231363d72fa18bd65d600b8dca Author: Daniel <845765@qq.com> Date: Fri Oct 13 22:50:11 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit a11ea9c3479aaa74db18ca7a22b0d4616f18f665 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:37:15 2023 +0800 :lipstick: commit 99ec5c10a4ed614e13a6a935dace95637716977f Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:32:17 2023 +0800 :art: showHiddenFiles commit 49426ac916279cc000670580e4586c2b4df51c72 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:15:20 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9425 commit d445c5401ffb4a1b2fcf01abc062734efc6c6cb2 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:54:35 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 0c4aee7388c03202a4bb3d11c7b89b0e21e48d85 Merge: c34d84ce2 daa9ddfd5 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c34d84ce29b8ccbb78dbcc96584804253997c0d1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit daa9ddfd50eebdc98084d3aba28f09008294ba54 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:43:43 2023 +0800 :art: Don't load plugin when the user hasn't agreed to trust bazaar content yet Fix https://github.com/siyuan-note/siyuan/issues/9426 commit 01b19ea2c85c7f039ff427b03d6a2f0d7f4b0488 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:03:41 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 7a9a85ea323e79e8a122d5e19a4dfb9618a2ce41 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:55:27 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 1815ec1b39ba30b427d366d41754582476b8f6a4 Merge: 73edee57a 00ed190ad Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 73edee57a4f755e293ac7a2b04e2381813839550 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:32 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 00ed190ad76f357ec780d68888a04dbd5f402ea5 Author: Daniel <845765@qq.com> Date: Fri Oct 13 13:21:53 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 48e871c75e59cbf7de299e8908a1ba25ddf76278 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 12:33:29 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 3554333da9be4b22d844af83b8c540a7b6feb874 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:55:51 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit af810b279d6e6535947a143987627b3aa1e066c0 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:34:19 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 673c952f079d4a7aa42f6bf59a348f27cfcaf360 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:30:44 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 3b87a0d9ed8c313ecc75c29c7c990c7d17d68bab Merge: ed31305d1 3de7781b1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:09:07 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed31305d1d291010c3d4b6b223b924823b7be95e Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:08:56 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 3de7781b1c78fb35ba3e90b729015bd0d9cfaa45 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:44:29 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 2304921feefff56d34d4b673cba8a491f399f2a6 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:42:51 2023 +0800 :art: Update flashcard user guide commit 55fb8b19abf9d91f40fd4d177dc5f20758e1a3b3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 10:14:11 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit 8998de9d812eeb67060a7dd3e7eacec28abea656 Merge: 5b38e79be df9b55c71 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:35 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 5b38e79be75e32f33332a6f700263e1460d645bf Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:24 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit df9b55c71ba6aea40617a2fc17ad9d4908edc81c Author: Daniel <845765@qq.com> Date: Fri Oct 13 08:46:29 2023 +0800 :art: Database template columns support sort commit 3da9f0f1e133d5e69e5af674d6b8f83b9f6136f2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:40:09 2023 +0800 :bug: 新增行后弹出的输入框 commit 79a88dfbece66248b9eaa39a1821b4e2a8025148 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:23:18 2023 +0800 :rotating_light: commit 40a1e6d5cc8107abfa7addb27c347f6677a1e4fe Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:21:53 2023 +0800 :lipstick: database loading commit 2872dab9eb9c40e06d43886728ddad84c1c18722 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:11:59 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 025a8ea5a7b38b444957a73ddbcde7c2f1a054ed Merge: 02ec0f6e5 0ea9b8f5a Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 02ec0f6e5a68e7810545f8a5e132465719dc0442 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:01 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 0ea9b8f5a7223bcdab3b8f8e5e890d908e164c34 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:58:32 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit 1590913db73d8def51a05544b8a2b5e654285aa3 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:55:57 2023 +0800 :art: Update attr panel for av commit d257caff8d5d12a1751c3d18d3ca972cd5ef453d Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:38:37 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit fdaf8d7e595f11e3e0d67b01427a0485532191c6 Merge: 70e82cd98 238609f25 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 70e82cd981e5890aaad782631741521f5cd7ef41 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:19 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9416 commit 238609f25f39c42fa28bf14d4fa767f8c912b41e Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:33:23 2023 +0800 :zap: Improve performance of loading database table view commit 2dd558b6090b96cc77db2dac0002db67b5b772ce Merge: fe0b1e8d6 8fb35f556 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit fe0b1e8d6023c5d3e02614bf2515b93dd19b0b5e Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:31 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9415 commit 8fb35f5565c197617f57f02def80f8bd6b374d3d Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:15:36 2023 +0800 :art: Database template columns support number filter Fix https://github.com/siyuan-note/siyuan/issues/9414 commit 01670f2b00f31b1421ebdef9795d880863f09cdc Merge: f792d141f ffcdb5d39 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:48 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f792d141fc412a54165a9fda87216d497258c5da Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:09 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9408 commit ffcdb5d398da4b70a6cc4c06478a1f97085bf482 Author: Daniel <845765@qq.com> Date: Thu Oct 12 16:37:09 2023 +0800 :bug: SVG images cannot be displayed on some systems https://github.com/siyuan-note/siyuan/issues/9413 commit fb1f80cf4de0bdd45b140facf351c86fa243c757 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:22:55 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9406 commit da51aded35aaf8b5b0d475b49a98d179865992de Merge: a4bcae87e 09ef5fddf Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:42 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a4bcae87ee24a2592c8c43b669efc9d284a588c2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:29 2023 +0800 :bug: 数据库数字填0无效 commit 09ef5fddf9335f8a2e14b5eb197509ba80324e1f Author: Daniel <845765@qq.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: Database template columns support calculations https://github.com/siyuan-note/siyuan/issues/9408 commit 1b595d014a739094cede52527606d6d45e3ed35c Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: #9408 commit 21d1a0515ae46352a1bace0e17beac571d32c088 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:54:15 2023 +0800 :lipstick: 编辑后表头不固定 commit c5206f70843c866746d4db87c7e33681b98e48d2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:14:29 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9405 commit f0f55d3b026446f996e7c83fd49580d9db8592a9 Merge: 019412404 92151f715 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:19 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 01941240470a9bac540655507d2aa354bf5f46a1 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:09 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9403 commit 92151f71504332d96456f52087423ba967c02f78 Author: Daniel <845765@qq.com> Date: Thu Oct 12 10:12:44 2023 +0800 :art: Change database template column custom attribute action Fix https://github.com/siyuan-note/siyuan/issues/9401 commit b8e8aa0593576563e9c462df3e18900fb3ec41d6 Author: Daniel <845765@qq.com> Date: Wed Oct 11 17:00:21 2023 +0800 :hammer: Clean code commit b17aff577300a63cf77f63e2a9665cc0a2692f1e Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:54:40 2023 +0800 :bug: commit 11174958bc87bc00937d957f6004854f5105dd09 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:50:28 2023 +0800 :bug: 预览模式下点击只读 commit 130884d758774fac373c41a8540ce6d90c741ba6 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:23:01 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9404 commit 7486e1a6e22f765cffd4d231b0adb984bfe70089 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 17:28:40 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9402 commit eb93255cf32782a93d3c9b3a6d8bb3cb9f0ff7ef Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:57:14 2023 +0800 :hammer: Clean code commit fd46593815f5666f8b08e01d1e3ff9b75eab1ca3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:55:06 2023 +0800 :bookmark: Release v2.10.10 commit 337c79571d6e2b073435d95f642634130a5d0bf0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:59:25 2023 +0800 :art: Improve install new version on Windows commit f6f1148de11044c5e58ad786722087d631d8cbb4 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:08:44 2023 +0800 :memo: Update changelogs commit f0ad3268baf62bcc2be569eb21019ceaf4e1861c Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:30:00 2023 +0800 :art: commit 2eb89f067317cbb1ec13c7c4ae4cc7fc62b7fcac Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:25:21 2023 +0800 :rotating_light: commit 0db516e4b9455a87e5e29808ea77712adc4b4371 Merge: 23c3f9f15 e43cf4cf5 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:41 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 23c3f9f154326aefa8743a2d2c9b6596611722af Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:29 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9383 commit e43cf4cf55de73c37a5dc603017b957b15a34499 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:52:10 2023 +0800 :memo: Update changelogs commit b30cb0984aec2ae2248863f056bbef4f701980d5 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:49:04 2023 +0800 :memo: Update changelogs commit d4a3226a566421d01a0bcf9e9ad00cac1cb38ae3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:40 2023 +0800 :memo: Update changelogs commit 65adab61c9f63ab0d692890ff977c567d1628845 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:29 2023 +0800 :art: Adding row overwriting data after enabling filter in database https://github.com/siyuan-note/siyuan/issues/9395 commit 210a3ac5472245eed820a7c76aadb09d50029bb0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:04:39 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 37f950ba4f6028f993786958eb9b3a0d2dca066b Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:39:22 2023 +0800 :lipstick: icon commit 7b1c30bc26b796116e7bd936436b3f9e3e1cb316 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:30:13 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit 6ef13aba784dd6df37b9ac61573b8d8123488743 Merge: acd2eb167 e4907e789 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit acd2eb167707ad5cfa7e5cc7d9e06a6adfe8d92d Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit e4907e7896ceb014a3064565e05631eb621a1f3a Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:16:57 2023 +0800 :art: The block in the editor shows the database icon https://github.com/siyuan-note/siyuan/issues/8894 commit 6f249d768f954e58dad876010927fdcf43b3b05b Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:15:03 2023 +0800 :arrow_up: Upgrade kernel deps commit bb04bf9f705b1169d4efb44c441daf1ecb56cf91 Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:04:39 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 30b0dd08face947c3a9ad0a8c468862a93424cac Merge: c1de5e148 ccb65454a Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c1de5e1488963eb63c9230ff8c691573febb3791 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:44 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/8894 commit ccb65454a2bad059a33cf360aef8f0a895030dbf Author: Daniel <845765@qq.com> Date: Wed Oct 11 08:50:13 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 28e4e1ef2fe1c373b9524a2c3f1cca85eb5452f4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:31:46 2023 +0800 :art: Rename the .sya annotation file when renaming a PDF asset https://github.com/siyuan-note/siyuan/issues/9390 commit 964c822c2b7322f956234726f0bbb15106da35e4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:02:46 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f404d7fe85a66babc255e151fe18ad656dbb5eb2 Merge: ed7084c7b 301b6d9f7 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed7084c7be222cb76a9567c32a5b3b92897e12b3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:43 2023 +0800 :lipstick: commit 301b6d9f70ec0166b0567e925d71d241999a9cd8 Author: Daniel <845765@qq.com> Date: Tue Oct 10 21:55:43 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f62be4719eaba196b83b5972e9c0dcfc1e4b6020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:50:36 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9385 commit 8e2565f347337806eaca57489ab0666c314899c4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:39:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9386 commit e54d8f1a4d2c979f2a3147a292330ad36a83c0fb Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:31:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9393 commit 1fb7187936646643216e6ca96344576738f7019b Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:23:29 2023 +0800 :memo: fix https://github.com/siyuan-note/siyuan/issues/9392 commit ea00753f380f1045ff357447b0e7acc9dd117a28 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9392 commit 4318aa446369eaf4ea85982ba4919b5d47340552 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:51:28 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9376 commit f1d4f8472b63c379b0bd51ee973b1505e615b12c Merge: 3f4c00efc 64df2ffa4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 3f4c00efcddb7030e39616eadc9587dc3e1d17d8 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9376 commit 64df2ffa42df2804778f401ec75203319fe5cba4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:37:51 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 691a0bea33e430f94d46a65f2887e187080c199d Merge: 0e5cae300 7e9243d8d Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:41:05 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 0e5cae30015f960637b1a22a935d55e64e499ef5 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:40:38 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit 7e9243d8dc063bd481e202f73c2b16d367c6cbea Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:05:48 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 7aa4aacfc3e4c356db033305a8e8a9e268c8c427 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:30:10 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit d02381d3f2cabe4a0fa7a5518b79c7030dae8c0e Merge: 449d2dbf8 6e9099ea1 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:14 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 449d2dbf87d838409351fc8c4b7a42af59dc65c3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:03 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9256 commit 6e9099ea12ba692b4aab7cef34bc61458eb6ec14 Author: Daniel <845765@qq.com> Date: Tue Oct 10 16:52:40 2023 +0800 :lock: Authenticate requests of assets other than 127.0.0.1 Fix https://github.com/siyuan-note/siyuan/issues/9388 commit 11786381cf6b1d5f58c862ab99a0993ac6ab4ad4 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Tue Oct 10 16:21:50 2023 +0800 Improve event bus `open-siyuan-url-plugin` (#9256) * :art: Improve plugin event bus `open-siyuan-url-plugin` * :bug: Avoid plug-in names with the same prefix * Update onGetConfig.ts commit 2c36af78bc789505c8d2d461c70aa9e36a782d2f Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 16:15:24 2023 +0800 :rotating_light: commit b0e3efa774c0d500567c96e1f1720cd11271dd0e Author: Daniel <845765@qq.com> Date: Tue Oct 10 11:41:46 2023 +0800 :bookmark: Release v2.10.9 commit d690475ae63c41f486eb752de203fe2a90b7e2c2 Merge: c8a6f4185 811bac942 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:58:46 2023 +0800 Merge remote-tracking branch 'origin/master' commit c8a6f4185e25813687883ab241a18d21ae8a5b22 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:18:57 2023 +0800 :bookmark: Release v2.10.9 commit cdcec7e58dd597b87967c456107e062db90c41e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:29:25 2023 +0800 :memo: Update changelogs commit 1eccb8ba4d6e7f9a9b37f18f9bd444920d93744c Merge: a3094fe3e 3827753b7 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:26:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a3094fe3ead644f67886324f165e6157818ed680 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:25:48 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9384 commit 3827753b7c7391680af13c9ea5812ab4247e8381 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:07:34 2023 +0800 :art: Upgrade Electron https://github.com/siyuan-note/siyuan/issues/9342 commit 567394afba01704c66a4e65bc54260becc2eb034 Author: Daniel <845765@qq.com> Date: Mon Oct 9 22:42:39 2023 +0800 :memo: Update changelogs commit ff6220abaa2d8316e4ad1771985e47885eac1a45 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Mon Oct 9 21:51:39 2023 +0800 :art: add `@electron/remote` dependency (#9381) commit da0fa0853f46a957c35a282235a53c3fd8e10163 Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:45:36 2023 +0800 :art: Replace non-breaking spaces with normal spaces when copying https://github.com/siyuan-note/siyuan/issues/9382 commit 0ed68847618c241704702757c3324493a3fb8c2a Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:09:35 2023 +0800 :bug: Update av Fix https://github.com/siyuan-note/siyuan/issues/9380 commit 288eb24474ed21416c69d6ec366f22ef67189d8e Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:30:19 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 4965b7b8458edd974efa85483aed8ba4f7a6b106 Merge: 803069d80 902849153 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 803069d8071240447567a233c5ad104bb5962511 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 902849153a87eb75b200ab37b9ff674e8ba382d0 Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:17:40 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit faadbf5960997f42ad22884d7394d2b3fd6bf3e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 16:48:28 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit 9ca11625bd71b67b50e5091f680932762e02862a Merge: 43f06e57d 644e0319d Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:45:06 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 43f06e57d9125ed62f2db0e8d0c10f53ef0d8e0a Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:44:46 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 811bac942ddbdc48f29e587ea6ffb8f68ce2e4ac Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:36 2023 +0800 :art: Free disk space for docker image building GitHub Action commit 66aa802765998feb6af7883e678cc835702d689a Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:28 2023 +0800 :art: Free disk space for docker image building GitHub Action * Update anno.ts * Update index.ts * :art: Adapt to align styles * :art: Adapt to using arrow keys/Esc to select a cell/row * Update row.ts * :art: Adjusted the cell width in attribute view * :bug: Fixed the issue that the first column was misaligned * Update index.ts * Update action.ts
2023-11-09 16:35:49 +08:00
<div class="av__firstcol">
<svg><use xlink:href="#iconAdd"></use></svg>
</div>
<div class="av__calc" style>
${window.siyuan.languages.addAttr}
</div>
</div>
Improve adaptive width for `Attributes View` (#9280) * :art: Attrs View adaptive width * :art: Add CSS class `av__body` * :art: add margins for attribute view * :art: add max-width for attribute view * Squashed commit of the following: commit 642d041513898c9c3fc551f7a8625dc075c6d08a Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:36:25 2023 +0800 :bookmark: Release v2.10.8 commit 43e53672b023ad6c13c28d1d2911bfddfa7e9435 Merge: 6b0f8e00a 0e3b78020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:32 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b0f8e00a8a30c313fbc88fa36334eba971cb2f4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 13:28:08 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9334 commit 0e3b7802015cf0ef4834f9bbab471f358c3c726e Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:03:48 2023 +0800 :memo: Update changelogs commit cc3b4e320ef8d57df43a3bea9adc4630d58dcdf5 Author: Daniel <845765@qq.com> Date: Tue Oct 3 13:01:11 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 29f34fe8b8abe05d07bb0c4a2056af4ea6e74896 Author: Daniel <845765@qq.com> Date: Tue Oct 3 12:56:13 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 7556d1c3a28c152ebb5f6655236694d6083c9306 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:49:12 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 558422c4079bc79f4b9997f0cf1183e5ea8ad1c0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 11:46:25 2023 +0800 :art: Database template column support using values from other columns https://github.com/siyuan-note/siyuan/issues/9327 commit 433cb91d7515ccfa5ba9dbb279902187d3c820e0 Author: Daniel <845765@qq.com> Date: Tue Oct 3 10:33:41 2023 +0800 :arrow_up: Upgrade kernel deps commit c5a25fe88f1497f55d5bb4979093c831c572c0e1 Author: Daniel <845765@qq.com> Date: Tue Oct 3 08:52:33 2023 +0800 :bug: Database render deleted block https://ld246.com/article/1695790906050/comment/1696234209062?r=88250#comments commit f6a8ca20cdc7a5df253b202ff637b8bea655e612 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 3 08:39:36 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 11cc108893b325774e78a4d1f7ba80a2b76bbc8a Author: Daniel <845765@qq.com> Date: Tue Oct 3 07:57:36 2023 +0800 :bug: Create doc with ref Fix https://github.com/siyuan-note/siyuan/issues/9329 commit d869aef346ccdab9044edf8e832be5fb6026b143 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:46:36 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit 3d7bf2eb0fd1c4f9d033970997687030e478fb53 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:39:08 2023 +0800 :art: Remove the access authorization code setting item on the browser-end https://github.com/siyuan-note/siyuan/issues/9331 commit 279e17e8b587694b83b58d730eeb774278ecc670 Author: Daniel <845765@qq.com> Date: Mon Oct 2 22:15:33 2023 +0800 :art: The access authorization code command line parameter must be set when deploying via Docker https://github.com/siyuan-note/siyuan/issues/9328 commit d2356754ddd4d4c9e99e74e50e691ce8c26c1824 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:41:51 2023 +0800 :memo: Update changelogs commit 4fdd0ddef046cefd8f0149e7198020d2677e9af2 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:37:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b4bded40e3a5134e4387b090c56f83567a8942ab Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:24:16 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit bfd27a62d1ec270cd52594a55f766862e9961c05 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:22:39 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 0aa61fe5b7eb44941410c5591e654ce7850b46d0 Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:14:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 7d1e1bf2e59b3ea77986309ac872d1ef4e16dbdf Author: Daniel <845765@qq.com> Date: Sun Oct 1 18:02:31 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit 8c31eb0eac956e63b8e172617ee5cdc783b7658a Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:59:16 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 37892e786b511dd4bd4d5cedc603cc0a438bb651 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:58:48 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit f965ef0945c65f2affa5180cf762c0d498681aac Merge: b709c8458 b2f5ab570 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit b709c8458508b1955ddcef020457e643990e0bb0 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:41:00 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit b2f5ab5700f4ad30d04c645a466512448225b5d8 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:36:22 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b833087cb6287cd4e7a39d6b50ad42e9394df930 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:33:53 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit dbdddd7ff36da2da3ff03a779ef3af5f4fcc2a69 Author: Daniel <845765@qq.com> Date: Sun Oct 1 17:16:08 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit b981fa08a04e769793a19862e8916985beefc13f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 17:05:06 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/8766 commit 6e475e185709e81b39a6ef5d0eae028a3c034369 Author: Daniel <845765@qq.com> Date: Sun Oct 1 11:05:24 2023 +0800 :memo: Update changelogs commit df38f89f4077e30ccafb0fae8da1ca38b781fb4f Merge: 465375422 b69e8d335 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:02:11 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 46537542210a82aab15b991692bfe3b63da31b8f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 11:01:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9291 commit b69e8d335726fb64e35b4d80b844e4e30e5d6344 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:58:46 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit df487a7c6aace2accba9d3fd576c38f3705d021f Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:49:52 2023 +0800 :bug: flash card zoomin status commit c0424caf679ae463aef8b39e003b256263f0e978 Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:42:12 2023 +0800 :art: Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766 commit e8359edebc8867e79dce7b918bf709de15e28242 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:27:07 2023 +0800 :rotating_light: commit c3212235b75352cc23da2e42e14435a3f0ab7aa4 Merge: 64900706b 702926430 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:51 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 64900706b21df441edbe91db3887a81008c19286 Author: Vanessa <lly219@gmail.com> Date: Sun Oct 1 10:26:31 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9313 commit 702926430014c14fd3dbec9fa3a7cbb8fde0122e Author: Daniel <845765@qq.com> Date: Sun Oct 1 10:03:07 2023 +0800 :memo: Update changelogs commit 29d155d0cd617a22a0aa0b65e27c2ae0dc428390 Author: Daniel <845765@qq.com> Date: Sun Oct 1 09:37:46 2023 +0800 :art: Improve missing line breaks when exporting RTF Fix https://github.com/siyuan-note/siyuan/issues/9325 commit 05cfcf7c2b8bda82eb9d0ccd67a4707b9da18a65 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:46:00 2023 +0800 :art: https://ld246.com/article/1695361968294 commit 67e0dad0a750e6c34caa2628e652d294de600ea7 Merge: 856445a6e fee908d01 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:21 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 856445a6ef7af178818ec33ce28ea337ed53e35a Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 20:30:06 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9323 commit fee908d01e23b692b5ee8da73611e1205f7be95f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:19:26 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 11d2f7c580176c94dc1708a37d322c752425a08f Author: Daniel <845765@qq.com> Date: Sat Sep 30 20:18:27 2023 +0800 :bug: The image does not display after pasting some PDF rectangular annotations Fix https://github.com/siyuan-note/siyuan/issues/9321 commit 83dce4f3e6577152f931a80bd47e436118af7e61 Merge: 1f2faecf4 49d92538d Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 1f2faecf4d63202cb3087d988400dea06dfe8082 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:55:01 2023 +0800 :zap: breadcrumb commit 49d92538dfa76a70afa5f057274bb2afb99384d3 Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:52:26 2023 +0800 :bug: The subdoc creation path is unstable when a parent doc with the same name exists Fix https://github.com/siyuan-note/siyuan/issues/9322 commit 17dd264479cd0aa40320cb69592af848a751378a Author: Daniel <845765@qq.com> Date: Sat Sep 30 19:34:28 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit e74733b4e1af49977fd77b3df6e37277089ec2de Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:57:23 2023 +0800 :recycle: Refactor create doc by hpath commit f608da26a5d572c981b73d7b53e189f558512a4a Merge: 6b2a4ff0a 121d33e74 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:39 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 6b2a4ff0aa2e1aeae2f7afedf2e3f752ef7c6cb6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 19:25:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9317 commit 121d33e74d773def64c35d6f9476ad8aa238fa8b Author: Daniel <845765@qq.com> Date: Sat Sep 30 17:56:47 2023 +0800 :art: Improve handling of copy block ref when including images https://github.com/siyuan-note/siyuan/issues/9317 commit 82bed847e6c327cd4bbb3b5cf77e1726ebfe4fff Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 14:40:45 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9320 commit f8b272d596f67cafbd83e3d4d69a2fc4d5c90fae Merge: 2dae1200b ca855c1fa Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2dae1200b48b3813252e9fbcbeb1d77dffd275e6 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 13:57:40 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9316 commit ca855c1fa54756b5ff9afd1270f4c4d7aa444b9f Author: Daniel <845765@qq.com> Date: Sat Sep 30 11:57:37 2023 +0800 :art: Attribute Panel - Database sort attributes by view column order https://github.com/siyuan-note/siyuan/issues/9319 commit 1063f503756f89afe12125bb59b256e8b9a201b3 Author: Vanessa <lly219@gmail.com> Date: Sat Sep 30 11:21:46 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/9318 commit 1f899aaf3c3a9aa4d566a51584a4165d8b8b24bd Author: Vanessa <lly219@gmail.com> Date: Fri Sep 29 21:41:14 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9281 commit 2b9bec8e8b07c9fc6280b272a2ea31569ebf0b2f Author: Daniel <845765@qq.com> Date: Fri Sep 29 17:33:18 2023 +0800 :art: Ctrl+N should follow notebook create save path https://ld246.com/article/1695965429553 commit 41e35ea795fd4fe1408e99e5c2b5b1b6c91f2c9b Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:45:23 2023 +0800 :rotating_light: commit 6a37b8661304a6afa9a95716203c407dc2f9c688 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:44 2023 +0800 :rotating_light: commit 4c6b695dae9e132cce01c4f36ed7657a89c322ff Merge: df3f444e4 dc03a5cf3 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:41:18 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit df3f444e480057ea3bb7582eb180a72cc0f842cd Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 23:40:44 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9300 commit dc03a5cf38601690649b1536624d3bb6f8985cc2 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:46:29 2023 +0800 :arrow_up: Upgrade kernel deps commit 172b7ed0180d573ad796f1ff6dd6c1aea9384064 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:39:12 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit 6354d04e4bae7a5184847baa30bcba24397b18d8 Author: Daniel <845765@qq.com> Date: Thu Sep 28 22:22:17 2023 +0800 :art: Apply result optimized by FSRS optimizer https://github.com/siyuan-note/siyuan/issues/9309 commit b2a27bb54ca2f761fdfe6c182b463a58132b1861 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Thu Sep 28 22:38:49 2023 +0800 Refactor code language and ts types (#9300) * :art: Code block language list adds custom languages * Update index.d.ts * :art: Improve global variable type definition * :art: Improve global variable type definition * :art: Add constant `EXTRA_CODE_LANGUAGES` commit 17d2a16a9477453691c325bbabf47c1a42d9b4ea Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 22:31:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9264 commit ceb9aef1d6710c806728dd08289906a93d775344 Author: Vanessa <lly219@gmail.com> Date: Thu Sep 28 17:25:18 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9303 * :art: Improve the width of image in attribute view cell * :art: Adjust the style of rows' gutter * Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of rows' gutter * :bug: Improve the style of icon in attribute view * :art: Improve preview text fields * Revert Merge tag 'v2.10.9-dev2' into feat/attrs-view-adaptive-width * :art: Improve the style of image in attribute view cell * :art: Improve the style of firstcol * :bug: Fix check icon click event handle * Merge tag 'v2.10.9-dev3' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.9' into feat/attrs-view-adaptive-width * Merge tag 'v2.10.10' into feat/attrs-view-adaptive-width * Squashed commit of the following: commit c8924e37ae8eeffb4b49c30560372722458d4f84 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 12:14:12 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9409 commit 879fdd827d8aa1b817c3df7ca2026413e2a916ba Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:56:16 2023 +0800 :lipstick: dragover commit 9978827389d3ec49e14b7ed9d7dfe506a208e8df Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:34:42 2023 +0800 :art: 数据库块适配外观和宽度调整 commit a20ffeb12b67e87968676d0d7a1b17b1870e7144 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:20:17 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9412 commit f2075fafac55e31468d2519ede6dc98675fc8496 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:04:23 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 5e2910a4e60d61a6b4d64def65aeac9cbdbf8698 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 11:00:46 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit ac7f8d36dfc7bf73903b4fa3129417475ec6eb9b Merge: 9ae8400b4 d78a0205f Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:40 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 9ae8400b474e913e5ed4b3fc26dae5464a1692fe Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:56:21 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit d78a0205f5a04e342b1dd4b2522ff294d30f952f Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:51:46 2023 +0800 :art: Database table view breadcrumb commit 6b1a2925c9c6404b4bf53007aea17f97675aea5a Merge: 25109b906 9766020b8 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:46 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 25109b906fc4df4d19ea8aa507ed278307b43322 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:49:35 2023 +0800 :art: 数据库块适配外观和宽度调整 commit 9766020b8950762b6b1e44de48e4e1159cc8c89c Author: Daniel <845765@qq.com> Date: Sat Oct 14 10:08:57 2023 +0800 :art: Update text commit ab673896505f038d99497ab3880352b100d2d916 Merge: 7d6f9bb0d 39c5744f2 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 7d6f9bb0dff9b9cbbc6071a25b25276ab998a652 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 10:01:42 2023 +0800 :art: 数据库不能设置布局 commit 39c5744f2fa1d0c8d07ea14ce6a9dbd72ba3bc03 Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:46:29 2023 +0800 :bug: Database table view export does not display select content Fix https://github.com/siyuan-note/siyuan/issues/9428 commit 87ecb7f24acc3c5a20b763979781e7adfa86134d Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:37:47 2023 +0800 :art: Update text commit 69d8c93c98dfee2aa24b7ed1c8a663dfed6546b6 Merge: 623f30b5f f6780c126 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:54 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 623f30b5fc3de9e900ab574555c8af0f254f37e4 Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 09:21:44 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit f6780c126abfd4576963470ba11a40933c17246e Author: Daniel <845765@qq.com> Date: Sat Oct 14 09:20:51 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit fd94e9df0cdbaa13cbd5478fdf14d55e29bec42a Author: Vanessa <lly219@gmail.com> Date: Sat Oct 14 00:04:16 2023 +0800 :art: commit 51f66879ccc5808524c5e65802951cd9bff8eab3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:50:31 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 49305b8911249ab5f2548c7433afa816b9506e95 Merge: 2f0f563e1 8399aba10 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:26:15 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 2f0f563e121ceacdf0ca0e1f53b6718812f0d5e7 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:25:58 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit 8399aba10b53c701859402432efbd426f137a800 Author: Daniel <845765@qq.com> Date: Fri Oct 13 23:22:17 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 22efb3d5235fbbe1951fee9caf1009638e4e56c4 Merge: f95084e96 c3d1c04af Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:07:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f95084e96a3ca62add6cc27ac283132b4e7cd1be Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 23:06:53 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9419 commit c3d1c04af4066c231363d72fa18bd65d600b8dca Author: Daniel <845765@qq.com> Date: Fri Oct 13 22:50:11 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit a11ea9c3479aaa74db18ca7a22b0d4616f18f665 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:37:15 2023 +0800 :lipstick: commit 99ec5c10a4ed614e13a6a935dace95637716977f Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:32:17 2023 +0800 :art: showHiddenFiles commit 49426ac916279cc000670580e4586c2b4df51c72 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 22:15:20 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9425 commit d445c5401ffb4a1b2fcf01abc062734efc6c6cb2 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:54:35 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 0c4aee7388c03202a4bb3d11c7b89b0e21e48d85 Merge: c34d84ce2 daa9ddfd5 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c34d84ce29b8ccbb78dbcc96584804253997c0d1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 21:50:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit daa9ddfd50eebdc98084d3aba28f09008294ba54 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:43:43 2023 +0800 :art: Don't load plugin when the user hasn't agreed to trust bazaar content yet Fix https://github.com/siyuan-note/siyuan/issues/9426 commit 01b19ea2c85c7f039ff427b03d6a2f0d7f4b0488 Author: Daniel <845765@qq.com> Date: Fri Oct 13 14:03:41 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 7a9a85ea323e79e8a122d5e19a4dfb9618a2ce41 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:55:27 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 1815ec1b39ba30b427d366d41754582476b8f6a4 Merge: 73edee57a 00ed190ad Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 73edee57a4f755e293ac7a2b04e2381813839550 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 13:37:32 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 00ed190ad76f357ec780d68888a04dbd5f402ea5 Author: Daniel <845765@qq.com> Date: Fri Oct 13 13:21:53 2023 +0800 :art: Fix database table view loading https://ld246.com/article/1697168944677 commit 48e871c75e59cbf7de299e8908a1ba25ddf76278 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 12:33:29 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit 3554333da9be4b22d844af83b8c540a7b6feb874 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:55:51 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9417 commit af810b279d6e6535947a143987627b3aa1e066c0 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:34:19 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 673c952f079d4a7aa42f6bf59a348f27cfcaf360 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:30:44 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9423 commit 3b87a0d9ed8c313ecc75c29c7c990c7d17d68bab Merge: ed31305d1 3de7781b1 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:09:07 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed31305d1d291010c3d4b6b223b924823b7be95e Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 11:08:56 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9421 commit 3de7781b1c78fb35ba3e90b729015bd0d9cfaa45 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:44:29 2023 +0800 :art: Supports searching database view content https://github.com/siyuan-note/siyuan/issues/9419 commit 2304921feefff56d34d4b673cba8a491f399f2a6 Author: Daniel <845765@qq.com> Date: Fri Oct 13 10:42:51 2023 +0800 :art: Update flashcard user guide commit 55fb8b19abf9d91f40fd4d177dc5f20758e1a3b3 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 10:14:11 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit 8998de9d812eeb67060a7dd3e7eacec28abea656 Merge: 5b38e79be df9b55c71 Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:35 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 5b38e79be75e32f33332a6f700263e1460d645bf Author: Vanessa <lly219@gmail.com> Date: Fri Oct 13 09:37:24 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9420 commit df9b55c71ba6aea40617a2fc17ad9d4908edc81c Author: Daniel <845765@qq.com> Date: Fri Oct 13 08:46:29 2023 +0800 :art: Database template columns support sort commit 3da9f0f1e133d5e69e5af674d6b8f83b9f6136f2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:40:09 2023 +0800 :bug: 新增行后弹出的输入框 commit 79a88dfbece66248b9eaa39a1821b4e2a8025148 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:23:18 2023 +0800 :rotating_light: commit 40a1e6d5cc8107abfa7addb27c347f6677a1e4fe Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:21:53 2023 +0800 :lipstick: database loading commit 2872dab9eb9c40e06d43886728ddad84c1c18722 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:11:59 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 025a8ea5a7b38b444957a73ddbcde7c2f1a054ed Merge: 02ec0f6e5 0ea9b8f5a Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 02ec0f6e5a68e7810545f8a5e132465719dc0442 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 20:04:01 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9418 commit 0ea9b8f5a7223bcdab3b8f8e5e890d908e164c34 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:58:32 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit 1590913db73d8def51a05544b8a2b5e654285aa3 Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:55:57 2023 +0800 :art: Update attr panel for av commit d257caff8d5d12a1751c3d18d3ca972cd5ef453d Author: Daniel <845765@qq.com> Date: Thu Oct 12 19:38:37 2023 +0800 :art: Database block loading animation https://github.com/siyuan-note/siyuan/issues/9416 commit fdaf8d7e595f11e3e0d67b01427a0485532191c6 Merge: 70e82cd98 238609f25 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:36 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 70e82cd981e5890aaad782631741521f5cd7ef41 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:34:19 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9416 commit 238609f25f39c42fa28bf14d4fa767f8c912b41e Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:33:23 2023 +0800 :zap: Improve performance of loading database table view commit 2dd558b6090b96cc77db2dac0002db67b5b772ce Merge: fe0b1e8d6 8fb35f556 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:45 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit fe0b1e8d6023c5d3e02614bf2515b93dd19b0b5e Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:16:31 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9415 commit 8fb35f5565c197617f57f02def80f8bd6b374d3d Author: Daniel <845765@qq.com> Date: Thu Oct 12 17:15:36 2023 +0800 :art: Database template columns support number filter Fix https://github.com/siyuan-note/siyuan/issues/9414 commit 01670f2b00f31b1421ebdef9795d880863f09cdc Merge: f792d141f ffcdb5d39 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:48 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit f792d141fc412a54165a9fda87216d497258c5da Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 17:07:09 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9408 commit ffcdb5d398da4b70a6cc4c06478a1f97085bf482 Author: Daniel <845765@qq.com> Date: Thu Oct 12 16:37:09 2023 +0800 :bug: SVG images cannot be displayed on some systems https://github.com/siyuan-note/siyuan/issues/9413 commit fb1f80cf4de0bdd45b140facf351c86fa243c757 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:22:55 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9406 commit da51aded35aaf8b5b0d475b49a98d179865992de Merge: a4bcae87e 09ef5fddf Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:42 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a4bcae87ee24a2592c8c43b669efc9d284a588c2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:11:29 2023 +0800 :bug: 数据库数字填0无效 commit 09ef5fddf9335f8a2e14b5eb197509ba80324e1f Author: Daniel <845765@qq.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: Database template columns support calculations https://github.com/siyuan-note/siyuan/issues/9408 commit 1b595d014a739094cede52527606d6d45e3ed35c Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 12:01:53 2023 +0800 :art: #9408 commit 21d1a0515ae46352a1bace0e17beac571d32c088 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:54:15 2023 +0800 :lipstick: 编辑后表头不固定 commit c5206f70843c866746d4db87c7e33681b98e48d2 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 11:14:29 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9405 commit f0f55d3b026446f996e7c83fd49580d9db8592a9 Merge: 019412404 92151f715 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:19 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 01941240470a9bac540655507d2aa354bf5f46a1 Author: Vanessa <lly219@gmail.com> Date: Thu Oct 12 10:54:09 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9403 commit 92151f71504332d96456f52087423ba967c02f78 Author: Daniel <845765@qq.com> Date: Thu Oct 12 10:12:44 2023 +0800 :art: Change database template column custom attribute action Fix https://github.com/siyuan-note/siyuan/issues/9401 commit b8e8aa0593576563e9c462df3e18900fb3ec41d6 Author: Daniel <845765@qq.com> Date: Wed Oct 11 17:00:21 2023 +0800 :hammer: Clean code commit b17aff577300a63cf77f63e2a9665cc0a2692f1e Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:54:40 2023 +0800 :bug: commit 11174958bc87bc00937d957f6004854f5105dd09 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:50:28 2023 +0800 :bug: 预览模式下点击只读 commit 130884d758774fac373c41a8540ce6d90c741ba6 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 23:23:01 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9404 commit 7486e1a6e22f765cffd4d231b0adb984bfe70089 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 17:28:40 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9402 commit eb93255cf32782a93d3c9b3a6d8bb3cb9f0ff7ef Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:57:14 2023 +0800 :hammer: Clean code commit fd46593815f5666f8b08e01d1e3ff9b75eab1ca3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 14:55:06 2023 +0800 :bookmark: Release v2.10.10 commit 337c79571d6e2b073435d95f642634130a5d0bf0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:59:25 2023 +0800 :art: Improve install new version on Windows commit f6f1148de11044c5e58ad786722087d631d8cbb4 Author: Daniel <845765@qq.com> Date: Wed Oct 11 11:08:44 2023 +0800 :memo: Update changelogs commit f0ad3268baf62bcc2be569eb21019ceaf4e1861c Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:30:00 2023 +0800 :art: commit 2eb89f067317cbb1ec13c7c4ae4cc7fc62b7fcac Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:25:21 2023 +0800 :rotating_light: commit 0db516e4b9455a87e5e29808ea77712adc4b4371 Merge: 23c3f9f15 e43cf4cf5 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:41 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 23c3f9f154326aefa8743a2d2c9b6596611722af Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 11:24:29 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9383 commit e43cf4cf55de73c37a5dc603017b957b15a34499 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:52:10 2023 +0800 :memo: Update changelogs commit b30cb0984aec2ae2248863f056bbef4f701980d5 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:49:04 2023 +0800 :memo: Update changelogs commit d4a3226a566421d01a0bcf9e9ad00cac1cb38ae3 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:40 2023 +0800 :memo: Update changelogs commit 65adab61c9f63ab0d692890ff977c567d1628845 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:48:29 2023 +0800 :art: Adding row overwriting data after enabling filter in database https://github.com/siyuan-note/siyuan/issues/9395 commit 210a3ac5472245eed820a7c76aadb09d50029bb0 Author: Daniel <845765@qq.com> Date: Wed Oct 11 10:04:39 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 37f950ba4f6028f993786958eb9b3a0d2dca066b Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:39:22 2023 +0800 :lipstick: icon commit 7b1c30bc26b796116e7bd936436b3f9e3e1cb316 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:30:13 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit 6ef13aba784dd6df37b9ac61573b8d8123488743 Merge: acd2eb167 e4907e789 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit acd2eb167707ad5cfa7e5cc7d9e06a6adfe8d92d Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 09:18:33 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9396 commit e4907e7896ceb014a3064565e05631eb621a1f3a Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:16:57 2023 +0800 :art: The block in the editor shows the database icon https://github.com/siyuan-note/siyuan/issues/8894 commit 6f249d768f954e58dad876010927fdcf43b3b05b Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:15:03 2023 +0800 :arrow_up: Upgrade kernel deps commit bb04bf9f705b1169d4efb44c441daf1ecb56cf91 Author: Daniel <845765@qq.com> Date: Wed Oct 11 09:04:39 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 30b0dd08face947c3a9ad0a8c468862a93424cac Merge: c1de5e148 ccb65454a Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:55 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit c1de5e1488963eb63c9230ff8c691573febb3791 Author: Vanessa <lly219@gmail.com> Date: Wed Oct 11 08:58:44 2023 +0800 :lipstick: https://github.com/siyuan-note/siyuan/issues/8894 commit ccb65454a2bad059a33cf360aef8f0a895030dbf Author: Daniel <845765@qq.com> Date: Wed Oct 11 08:50:13 2023 +0800 :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 commit 28e4e1ef2fe1c373b9524a2c3f1cca85eb5452f4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:31:46 2023 +0800 :art: Rename the .sya annotation file when renaming a PDF asset https://github.com/siyuan-note/siyuan/issues/9390 commit 964c822c2b7322f956234726f0bbb15106da35e4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 22:02:46 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f404d7fe85a66babc255e151fe18ad656dbb5eb2 Merge: ed7084c7b 301b6d9f7 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:57 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit ed7084c7be222cb76a9567c32a5b3b92897e12b3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 22:00:43 2023 +0800 :lipstick: commit 301b6d9f70ec0166b0567e925d71d241999a9cd8 Author: Daniel <845765@qq.com> Date: Tue Oct 10 21:55:43 2023 +0800 :art: Improve database created and updated column values https://github.com/siyuan-note/siyuan/issues/9391 commit f62be4719eaba196b83b5972e9c0dcfc1e4b6020 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:50:36 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9385 commit 8e2565f347337806eaca57489ab0666c314899c4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:39:57 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9386 commit e54d8f1a4d2c979f2a3147a292330ad36a83c0fb Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:31:20 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9393 commit 1fb7187936646643216e6ca96344576738f7019b Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:23:29 2023 +0800 :memo: fix https://github.com/siyuan-note/siyuan/issues/9392 commit ea00753f380f1045ff357447b0e7acc9dd117a28 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 21:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9392 commit 4318aa446369eaf4ea85982ba4919b5d47340552 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:51:28 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9376 commit f1d4f8472b63c379b0bd51ee973b1505e615b12c Merge: 3f4c00efc 64df2ffa4 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:43 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 3f4c00efcddb7030e39616eadc9587dc3e1d17d8 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:42:14 2023 +0800 :art: https://github.com/siyuan-note/siyuan/issues/9376 commit 64df2ffa42df2804778f401ec75203319fe5cba4 Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:37:51 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 691a0bea33e430f94d46a65f2887e187080c199d Merge: 0e5cae300 7e9243d8d Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:41:05 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 0e5cae30015f960637b1a22a935d55e64e499ef5 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 20:40:38 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit 7e9243d8dc063bd481e202f73c2b16d367c6cbea Author: Daniel <845765@qq.com> Date: Tue Oct 10 20:05:48 2023 +0800 :art: Rows in the database without bound blocks should not show created and updated Fix https://github.com/siyuan-note/siyuan/issues/9391 commit 7aa4aacfc3e4c356db033305a8e8a9e268c8c427 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:30:10 2023 +0800 :lipstick: fix https://github.com/siyuan-note/siyuan/issues/9206 commit d02381d3f2cabe4a0fa7a5518b79c7030dae8c0e Merge: 449d2dbf8 6e9099ea1 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:14 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 449d2dbf87d838409351fc8c4b7a42af59dc65c3 Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 17:09:03 2023 +0800 :recycle: https://github.com/siyuan-note/siyuan/pull/9256 commit 6e9099ea12ba692b4aab7cef34bc61458eb6ec14 Author: Daniel <845765@qq.com> Date: Tue Oct 10 16:52:40 2023 +0800 :lock: Authenticate requests of assets other than 127.0.0.1 Fix https://github.com/siyuan-note/siyuan/issues/9388 commit 11786381cf6b1d5f58c862ab99a0993ac6ab4ad4 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Tue Oct 10 16:21:50 2023 +0800 Improve event bus `open-siyuan-url-plugin` (#9256) * :art: Improve plugin event bus `open-siyuan-url-plugin` * :bug: Avoid plug-in names with the same prefix * Update onGetConfig.ts commit 2c36af78bc789505c8d2d461c70aa9e36a782d2f Author: Vanessa <lly219@gmail.com> Date: Tue Oct 10 16:15:24 2023 +0800 :rotating_light: commit b0e3efa774c0d500567c96e1f1720cd11271dd0e Author: Daniel <845765@qq.com> Date: Tue Oct 10 11:41:46 2023 +0800 :bookmark: Release v2.10.9 commit d690475ae63c41f486eb752de203fe2a90b7e2c2 Merge: c8a6f4185 811bac942 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:58:46 2023 +0800 Merge remote-tracking branch 'origin/master' commit c8a6f4185e25813687883ab241a18d21ae8a5b22 Author: Daniel <845765@qq.com> Date: Tue Oct 10 10:18:57 2023 +0800 :bookmark: Release v2.10.9 commit cdcec7e58dd597b87967c456107e062db90c41e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:29:25 2023 +0800 :memo: Update changelogs commit 1eccb8ba4d6e7f9a9b37f18f9bd444920d93744c Merge: a3094fe3e 3827753b7 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:26:13 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit a3094fe3ead644f67886324f165e6157818ed680 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 23:25:48 2023 +0800 :bug: fix https://github.com/siyuan-note/siyuan/issues/9384 commit 3827753b7c7391680af13c9ea5812ab4247e8381 Author: Daniel <845765@qq.com> Date: Mon Oct 9 23:07:34 2023 +0800 :art: Upgrade Electron https://github.com/siyuan-note/siyuan/issues/9342 commit 567394afba01704c66a4e65bc54260becc2eb034 Author: Daniel <845765@qq.com> Date: Mon Oct 9 22:42:39 2023 +0800 :memo: Update changelogs commit ff6220abaa2d8316e4ad1771985e47885eac1a45 Author: Yingyi / 颖逸 <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Mon Oct 9 21:51:39 2023 +0800 :art: add `@electron/remote` dependency (#9381) commit da0fa0853f46a957c35a282235a53c3fd8e10163 Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:45:36 2023 +0800 :art: Replace non-breaking spaces with normal spaces when copying https://github.com/siyuan-note/siyuan/issues/9382 commit 0ed68847618c241704702757c3324493a3fb8c2a Author: Daniel <845765@qq.com> Date: Mon Oct 9 21:09:35 2023 +0800 :bug: Update av Fix https://github.com/siyuan-note/siyuan/issues/9380 commit 288eb24474ed21416c69d6ec366f22ef67189d8e Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:30:19 2023 +0800 :art: Show notebooks in hpath of block ref search list results https://github.com/siyuan-note/siyuan/issues/9378 commit 4965b7b8458edd974efa85483aed8ba4f7a6b106 Merge: 803069d80 902849153 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:28 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 803069d8071240447567a233c5ad104bb5962511 Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 17:18:17 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 902849153a87eb75b200ab37b9ff674e8ba382d0 Author: Daniel <845765@qq.com> Date: Mon Oct 9 17:17:40 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit faadbf5960997f42ad22884d7394d2b3fd6bf3e6 Author: Daniel <845765@qq.com> Date: Mon Oct 9 16:48:28 2023 +0800 :art: Add created and updated type column to database https://github.com/siyuan-note/siyuan/issues/9371 commit 9ca11625bd71b67b50e5091f680932762e02862a Merge: 43f06e57d 644e0319d Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:45:06 2023 +0800 Merge remote-tracking branch 'origin/dev' into dev commit 43f06e57d9125ed62f2db0e8d0c10f53ef0d8e0a Author: Vanessa <lly219@gmail.com> Date: Mon Oct 9 16:44:46 2023 +0800 :art: fix https://github.com/siyuan-note/siyuan/issues/9370 commit 811bac942ddbdc48f29e587ea6ffb8f68ce2e4ac Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:36 2023 +0800 :art: Free disk space for docker image building GitHub Action commit 66aa802765998feb6af7883e678cc835702d689a Author: Daniel <845765@qq.com> Date: Wed Oct 4 13:03:28 2023 +0800 :art: Free disk space for docker image building GitHub Action * Update anno.ts * Update index.ts * :art: Adapt to align styles * :art: Adapt to using arrow keys/Esc to select a cell/row * Update row.ts * :art: Adjusted the cell width in attribute view * :bug: Fixed the issue that the first column was misaligned * Update index.ts * Update action.ts
2023-11-09 16:35:49 +08:00
<div class="av__row--footer"><div class="av__firstcol"></div>${calcHTML}</div>
</div>
</div>
</div>`;
2023-10-12 20:21:53 +08:00
e.setAttribute("data-render", "true");
resizeAV(e);
2023-10-12 20:21:53 +08:00
if (left) {
e.querySelector(".av__scroll").scrollLeft = left;
}
if (headerTransform) {
(e.querySelector(".av__row--header") as HTMLElement).style.transform = headerTransform;
}
if (footerTransform) {
(e.querySelector(".av__row--footer") as HTMLElement).style.transform = footerTransform;
}
if (selectCellId) {
const newCellElement = e.querySelector(`.av__row[data-id="${selectCellId.split(Constants.ZWSP)[0]}"] .av__cell[data-col-id="${selectCellId.split(Constants.ZWSP)[1]}"]`);
if (newCellElement) {
newCellElement.classList.add("av__cell--select");
}
2023-10-21 23:49:28 +08:00
focusBlock(e);
}
2023-10-12 20:21:53 +08:00
if (cb) {
cb();
}
}, time ? 256 - (new Date().getTime() - time) : 0); // 为了让动画更好看,需延时到 256ms
});
});
}
};
2023-07-02 23:59:01 +08:00
let lastParentID: string;
let lastElement: HTMLElement;
export const refreshAV = (protyle: IProtyle, operation: IOperation) => {
if (operation.action === "setAttrViewName") {
Array.from(protyle.wysiwyg.element.querySelectorAll(`[data-av-id="${operation.id}"]`)).forEach((item: HTMLElement) => {
const titleElement = item.querySelector(".av__title") as HTMLElement;
if (!titleElement) {
return;
}
titleElement.textContent = operation.data;
titleElement.dataset.title = operation.data;
item.querySelector(".layout-tab-bar .item__text").textContent = operation.data;
});
}
if (lastParentID === operation.parentID && protyle.contentElement.isSameNode(lastElement)) {
2023-07-02 23:59:01 +08:00
return;
}
lastElement = protyle.contentElement;
lastParentID = operation.parentID;
const avId = operation.avID;
if (operation.action === "setAttrViewColWidth") {
Array.from(protyle.wysiwyg.element.querySelectorAll(`[data-av-id="${avId}"]`)).forEach((item: HTMLElement) => {
const cellElement = item.querySelector(`.av__cell[data-col-id="${operation.id}"]`) as HTMLElement;
if (!cellElement || cellElement.style.width === operation.data) {
2023-07-02 23:59:01 +08:00
return;
}
item.querySelectorAll(".av__row").forEach(rowItem => {
(rowItem.querySelector(`[data-col-id="${operation.id}"]`) as HTMLElement).style.width = operation.data;
2023-07-02 23:59:01 +08:00
});
});
} else {
Array.from(protyle.wysiwyg.element.querySelectorAll(`[data-av-id="${avId}"]`)).forEach((item: HTMLElement) => {
item.removeAttribute("data-render");
avRender(item, protyle);
});
}
setTimeout(() => {
lastParentID = null;
}, Constants.TIMEOUT_TRANSITION);
2023-06-07 11:56:34 +08:00
};