siyuan/app/src/protyle/gutter/index.ts

1960 lines
91 KiB
TypeScript
Raw Normal View History

import {hasClosestBlock, hasClosestByAttribute, hasClosestByMatchTag, hasClosestByTag} from "../util/hasClosest";
import {getIconByType} from "../../editor/getIcon";
import {enterBack, iframeMenu, setFold, tableMenu, videoMenu, zoomOut} from "../../menus/protyle";
import {MenuItem} from "../../menus/Menu";
import {copySubMenu, openAttr, openWechatNotify} from "../../menus/commonMenuItem";
import {copyPlainText, isMac, updateHotkeyTip, writeText} from "../util/compatibility";
import {
transaction,
turnsIntoOneTransaction,
turnsIntoTransaction,
updateBatchTransaction,
updateTransaction
} from "../wysiwyg/transaction";
import {removeBlock} from "../wysiwyg/remove";
import {focusBlock, focusByRange, focusByWbr, getEditorRange} from "../util/selection";
import {hideElements} from "../ui/hideElements";
import {processRender} from "../util/processCode";
import {highlightRender} from "../render/highlightRender";
import {blockRender} from "../render/blockRender";
import {removeEmbed} from "../wysiwyg/removeEmbed";
import {getContenteditableElement, getTopAloneElement, isNotEditBlock} from "../wysiwyg/getBlock";
import * as dayjs from "dayjs";
import {fetchPost, fetchSyncPost} from "../../util/fetch";
import {cancelSB, insertEmptyBlock, jumpToParentNext} from "../../block/util";
import {countBlockWord} from "../../layout/status";
import {Constants} from "../../constants";
import {mathRender} from "../render/mathRender";
import {duplicateBlock} from "../wysiwyg/commonHotkey";
import {movePathTo} from "../../util/pathName";
import {hintMoveBlock} from "../hint/extend";
import {makeCard, quickMakeCard} from "../../card/makeCard";
import {transferBlockRef} from "../../menus/block";
import {isMobile} from "../../util/functions";
import {AIActions} from "../../ai/actions";
import {activeBlur, renderTextMenu, showKeyboardToolbarUtil} from "../../mobile/util/keyboardToolbar";
import {hideTooltip} from "../../dialog/tooltip";
import {appearanceMenu} from "../toolbar/Font";
import {setPosition} from "../../util/setPosition";
import {avRender} from "../render/av/render";
import {emitOpenMenu} from "../../plugin/EventBus";
import {resizeAV} from "../util/resize";
export class Gutter {
public element: HTMLElement;
2023-11-07 11:01:01 +08:00
private gutterTip: string;
2023-06-01 20:50:49 +08:00
constructor(protyle: IProtyle) {
if (isMac()) {
2023-11-07 11:01:01 +08:00
this.gutterTip = window.siyuan.languages.gutterTip;
} else {
2023-11-07 11:01:01 +08:00
this.gutterTip = window.siyuan.languages.gutterTip.replace(/⌘/g, "Ctrl+").replace(/⌥/g, "Alt+").replace(/⇧/g, "Shift+").replace(/⌃/g, "Ctrl+");
}
this.element = document.createElement("div");
this.element.className = "protyle-gutters";
this.element.addEventListener("dragstart", (event: DragEvent & { target: HTMLElement }) => {
hideTooltip();
2023-10-24 10:42:04 +08:00
const buttonElement = event.target.parentElement;
let selectIds: string[] = [buttonElement.getAttribute("data-node-id")];
const selectElements = protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select");
if (selectElements.length > 0) {
selectIds = [];
selectElements.forEach(item => {
selectIds.push(item.getAttribute("data-node-id"));
});
}
if (selectElements.length === 0) {
event.dataTransfer.setDragImage(protyle.wysiwyg.element.querySelector(`[data-node-id="${selectIds[0]}"]`), 0, 0);
}
buttonElement.style.opacity = "0.1";
window.siyuan.dragElement = protyle.wysiwyg.element;
event.dataTransfer.setData(`${Constants.SIYUAN_DROP_GUTTER}${buttonElement.getAttribute("data-type")}${Constants.ZWSP}${buttonElement.getAttribute("data-subtype")}${Constants.ZWSP}${selectIds}`,
protyle.wysiwyg.element.innerHTML);
});
this.element.addEventListener("dragend", () => {
this.element.querySelectorAll("button").forEach((item) => {
item.style.opacity = "";
});
window.siyuan.dragElement = undefined;
});
this.element.addEventListener("click", (event: MouseEvent & { target: HTMLInputElement }) => {
const buttonElement = hasClosestByTag(event.target, "BUTTON");
if (!buttonElement) {
return;
}
event.preventDefault();
event.stopPropagation();
const id = buttonElement.getAttribute("data-node-id");
if (!id) {
if (buttonElement.getAttribute("disabled")) {
return;
}
buttonElement.setAttribute("disabled", "disabled");
let foldElement: Element;
Array.from(protyle.wysiwyg.element.querySelectorAll(`[data-node-id="${(buttonElement.previousElementSibling || buttonElement.nextElementSibling).getAttribute("data-node-id")}"]`)).find(item => {
if (!hasClosestByAttribute(item.parentElement, "data-type", "NodeBlockQueryEmbed") &&
this.isMatchNode(item)) {
foldElement = item;
return true;
}
});
if (!foldElement) {
return;
}
if (event.altKey) {
// 折叠所有子集
let hasFold = true;
Array.from(foldElement.children).find((ulElement) => {
if (ulElement.classList.contains("list")) {
const foldElement = Array.from(ulElement.children).find((listItemElement) => {
if (listItemElement.classList.contains("li")) {
if (listItemElement.getAttribute("fold") !== "1" && listItemElement.childElementCount > 3) {
hasFold = false;
return true;
}
}
});
if (foldElement) {
return true;
}
}
});
2022-11-12 00:55:13 +08:00
const doOperations: IOperation[] = [];
const undoOperations: IOperation[] = [];
Array.from(foldElement.children).forEach((ulElement) => {
if (ulElement.classList.contains("list")) {
Array.from(ulElement.children).forEach((listItemElement) => {
if (listItemElement.classList.contains("li")) {
if (hasFold) {
listItemElement.removeAttribute("fold");
} else if (listItemElement.childElementCount > 3) {
listItemElement.setAttribute("fold", "1");
}
const listId = listItemElement.getAttribute("data-node-id");
doOperations.push({
action: "setAttrs",
id: listId,
data: JSON.stringify({fold: hasFold ? "0" : "1"})
2022-11-12 00:55:13 +08:00
});
undoOperations.push({
action: "setAttrs",
id: listId,
data: JSON.stringify({fold: hasFold ? "1" : "0"})
2022-11-12 00:55:13 +08:00
});
}
});
}
});
transaction(protyle, doOperations, undoOperations);
buttonElement.removeAttribute("disabled");
} else {
const foldStatus = setFold(protyle, foldElement);
if (foldStatus === "1") {
(buttonElement.firstElementChild as HTMLElement).style.transform = "";
} else if (foldStatus === "0") {
(buttonElement.firstElementChild as HTMLElement).style.transform = "rotate(90deg)";
}
}
hideElements(["select"], protyle);
window.siyuan.menus.menu.remove();
return;
}
if (event.ctrlKey || event.metaKey) {
2023-06-01 20:50:49 +08:00
zoomOut({protyle, id});
} else if (event.altKey) {
2022-10-03 16:22:18 +08:00
let foldElement: Element;
Array.from(protyle.wysiwyg.element.querySelectorAll(`[data-node-id="${id}"]`)).find(item => {
if (!hasClosestByAttribute(item.parentElement, "data-type", "NodeBlockQueryEmbed") &&
this.isMatchNode(item)) {
foldElement = item;
return true;
}
2022-10-03 16:22:18 +08:00
});
if (!foldElement) {
return;
}
if (buttonElement.getAttribute("data-type") === "NodeListItem" && foldElement.parentElement.getAttribute("data-node-id")) {
// 折叠同级
let hasFold = true;
Array.from(foldElement.parentElement.children).find((listItemElement) => {
if (listItemElement.classList.contains("li")) {
if (listItemElement.getAttribute("fold") !== "1" && listItemElement.childElementCount > 3) {
hasFold = false;
return true;
}
}
});
2022-11-12 00:55:13 +08:00
const doOperations: IOperation[] = [];
const undoOperations: IOperation[] = [];
Array.from(foldElement.parentElement.children).find((listItemElement) => {
if (listItemElement.classList.contains("li")) {
if (hasFold) {
listItemElement.removeAttribute("fold");
} else if (listItemElement.childElementCount > 3) {
listItemElement.setAttribute("fold", "1");
}
const listId = listItemElement.getAttribute("data-node-id");
doOperations.push({
action: "setAttrs",
id: listId,
data: JSON.stringify({fold: hasFold ? "0" : "1"})
2022-11-12 00:55:13 +08:00
});
undoOperations.push({
action: "setAttrs",
id: listId,
data: JSON.stringify({fold: hasFold ? "1" : "0"})
2022-11-12 00:55:13 +08:00
});
}
});
transaction(protyle, doOperations, undoOperations);
} else {
setFold(protyle, foldElement);
}
foldElement.classList.remove("protyle-wysiwyg--hl");
} else if (window.siyuan.shiftIsPressed && !protyle.disabled) {
openAttr(protyle.wysiwyg.element.querySelector(`[data-node-id="${id}"]`), "bookmark", protyle);
} else {
this.renderMenu(protyle, buttonElement);
// https://ld246.com/article/1648433751993
if (!protyle.toolbar.range) {
protyle.toolbar.range = getEditorRange(protyle.wysiwyg.element.firstElementChild);
}
if (isMobile()) {
window.siyuan.menus.menu.fullscreen();
} else {
2023-10-04 20:11:33 +08:00
window.siyuan.menus.menu.popup({x: event.clientX - 16, y: event.clientY - 16, isLeft: true});
focusByRange(protyle.toolbar.range);
}
}
});
this.element.addEventListener("contextmenu", (event: MouseEvent & { target: HTMLInputElement }) => {
const buttonElement = hasClosestByTag(event.target, "BUTTON");
if (!buttonElement || protyle.disabled || buttonElement.getAttribute("data-type") === "fold") {
return;
}
if (!window.siyuan.ctrlIsPressed && !window.siyuan.altIsPressed && !window.siyuan.shiftIsPressed) {
this.renderMenu(protyle, buttonElement);
2023-10-04 20:11:33 +08:00
window.siyuan.menus.menu.popup({x: event.clientX - 16, y: event.clientY - 16, isLeft: true});
}
event.preventDefault();
event.stopPropagation();
});
this.element.addEventListener("mouseover", (event: MouseEvent & { target: HTMLInputElement }) => {
const buttonElement = hasClosestByTag(event.target, "BUTTON");
if (!buttonElement) {
return;
}
if (buttonElement.getAttribute("data-type") === "fold") {
Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--hl")).forEach(hlItem => {
hlItem.classList.remove("protyle-wysiwyg--hl");
});
return;
}
Array.from(protyle.wysiwyg.element.querySelectorAll(`[data-node-id="${buttonElement.getAttribute("data-node-id")}"]`)).find(item => {
if (!hasClosestByAttribute(item.parentElement, "data-type", "NodeBlockQueryEmbed") && this.isMatchNode(item)) {
Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--hl")).forEach(hlItem => {
if (!item.isSameNode(hlItem)) {
hlItem.classList.remove("protyle-wysiwyg--hl");
}
});
item.classList.add("protyle-wysiwyg--hl");
return true;
}
});
event.preventDefault();
});
this.element.addEventListener("mouseleave", (event: MouseEvent & { target: HTMLInputElement }) => {
Array.from(protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--hl")).forEach(item => {
item.classList.remove("protyle-wysiwyg--hl");
});
event.preventDefault();
event.stopPropagation();
});
}
private isMatchNode(item: Element) {
const itemRect = item.getBoundingClientRect();
let gutterTop = this.element.getBoundingClientRect().top + 4;
if (itemRect.height < Math.floor(window.siyuan.config.editor.fontSize * 1.625) + 8) {
2022-10-08 21:01:50 +08:00
gutterTop = gutterTop - (itemRect.height - this.element.clientHeight) / 2;
}
2022-10-08 21:01:50 +08:00
return itemRect.top <= gutterTop && itemRect.bottom >= gutterTop;
}
private turnsOneInto(options: {
icon: string,
label: string,
protyle: IProtyle,
nodeElement: Element,
accelerator?: string
id: string,
type: string,
level?: number
}) {
return {
icon: options.icon,
label: options.label,
accelerator: options.accelerator,
async click() {
if (!options.nodeElement.querySelector("wbr")) {
getContenteditableElement(options.nodeElement)?.insertAdjacentHTML("afterbegin", "<wbr>");
}
if (options.type === "CancelList" || options.type === "CancelBlockquote") {
for await(const item of options.nodeElement.querySelectorAll('[data-type="NodeHeading"][fold="1"]')) {
const itemId = item.getAttribute("data-node-id");
item.removeAttribute("fold");
const response = await fetchSyncPost("/api/transactions", {
session: options.protyle.id,
app: Constants.SIYUAN_APPID,
transactions: [{
doOperations: [{
action: "unfoldHeading",
id: itemId,
}],
undoOperations: [{
action: "foldHeading",
id: itemId
}],
}]
});
options.protyle.undo.add([{
action: "unfoldHeading",
id: itemId,
}], [{
action: "foldHeading",
id: itemId
}]);
item.insertAdjacentHTML("afterend", response.data[0].doOperations[0].retData);
}
}
const oldHTML = options.nodeElement.outerHTML;
const previousId = options.nodeElement.previousElementSibling?.getAttribute("data-node-id");
const parentId = options.nodeElement.parentElement.getAttribute("data-node-id") || options.protyle.block.parentID;
// @ts-ignore
const newHTML = options.protyle.lute[options.type](options.nodeElement.outerHTML, options.level);
options.nodeElement.outerHTML = newHTML;
if (options.type === "CancelList" || options.type === "CancelBlockquote") {
const tempElement = document.createElement("template");
tempElement.innerHTML = newHTML;
const doOperations: IOperation[] = [{
action: "delete",
id: options.id
}];
const undoOperations: IOperation[] = [];
let tempPreviousId = previousId;
Array.from(tempElement.content.children).forEach((item) => {
const tempId = item.getAttribute("data-node-id");
doOperations.push({
action: "insert",
data: item.outerHTML,
id: tempId,
previousID: tempPreviousId,
parentID: parentId
});
undoOperations.push({
action: "delete",
id: tempId
});
tempPreviousId = tempId;
});
undoOperations.push({
action: "insert",
data: oldHTML,
id: options.id,
previousID: previousId,
parentID: parentId
});
transaction(options.protyle, doOperations, undoOperations);
} else {
updateTransaction(options.protyle, options.id, newHTML, oldHTML);
}
focusByWbr(options.protyle.wysiwyg.element, getEditorRange(options.protyle.wysiwyg.element));
options.protyle.wysiwyg.element.querySelectorAll('[data-type~="block-ref"]').forEach(item => {
if (item.textContent === "") {
fetchPost("/api/block/getRefText", {id: item.getAttribute("data-id")}, (response) => {
item.innerHTML = response.data;
});
}
});
blockRender(options.protyle, options.protyle.wysiwyg.element);
processRender(options.protyle.wysiwyg.element);
highlightRender(options.protyle.wysiwyg.element);
avRender(options.protyle.wysiwyg.element, options.protyle);
}
};
}
private turnsIntoOne(options: {
accelerator?: string,
icon?: string,
label: string,
protyle: IProtyle,
selectsElement: Element[],
type: string,
level?: string
}) {
return {
icon: options.icon,
label: options.label,
accelerator: options.accelerator,
click() {
turnsIntoOneTransaction(options);
}
};
}
private turnsInto(options: {
icon?: string,
label: string,
protyle: IProtyle,
selectsElement: Element[],
type: string,
level?: number | string,
isContinue?: boolean
accelerator?: string
}) {
return {
icon: options.icon,
label: options.label,
accelerator: options.accelerator,
click() {
turnsIntoTransaction(options);
}
};
}
2023-07-21 23:27:31 +08:00
private showMobileAppearance(protyle: IProtyle) {
const toolbarElement = document.getElementById("keyboardToolbar");
const dynamicElements = toolbarElement.querySelectorAll("#keyboardToolbar .keyboard__dynamic");
dynamicElements[0].classList.add("fn__none");
dynamicElements[1].classList.remove("fn__none");
toolbarElement.querySelector('.keyboard__action[data-type="text"]').classList.add("protyle-toolbar__item--current");
toolbarElement.querySelector('.keyboard__action[data-type="done"] use').setAttribute("xlink:href", "#iconCloseRound");
toolbarElement.classList.remove("fn__none");
const oldScrollTop = protyle.contentElement.scrollTop + 333.5; // toolbarElement.clientHeight
2023-07-21 23:27:31 +08:00
renderTextMenu(protyle, toolbarElement);
showKeyboardToolbarUtil(oldScrollTop);
}
2022-09-21 11:28:01 +08:00
public renderMultipleMenu(protyle: IProtyle, selectsElement: Element[]) {
let isList = false;
let isContinue = false;
let hasEmbedBlock = false;
selectsElement.find((item, index) => {
if (item.classList.contains("li")) {
isList = true;
return true;
}
if (item.classList.contains("bq") || item.classList.contains("sb") || item.classList.contains("p")) {
hasEmbedBlock = true;
}
if (item.nextElementSibling && selectsElement[index + 1] &&
item.nextElementSibling.isSameNode(selectsElement[index + 1])) {
isContinue = true;
} else if (index !== selectsElement.length - 1) {
isContinue = false;
return true;
}
});
if (!isList && !protyle.disabled) {
const turnIntoSubmenu: IMenu[] = [];
if (isContinue) {
turnIntoSubmenu.push(this.turnsIntoOne({
icon: "iconList",
label: window.siyuan.languages.list,
protyle,
selectsElement,
type: "Blocks2ULs"
}));
turnIntoSubmenu.push(this.turnsIntoOne({
icon: "iconOrderedList",
label: window.siyuan.languages["ordered-list"],
protyle,
selectsElement,
type: "Blocks2OLs"
}));
turnIntoSubmenu.push(this.turnsIntoOne({
icon: "iconCheck",
label: window.siyuan.languages.check,
protyle,
selectsElement,
type: "Blocks2TLs"
}));
turnIntoSubmenu.push(this.turnsIntoOne({
icon: "iconQuote",
label: window.siyuan.languages.quote,
protyle,
selectsElement,
type: "Blocks2Blockquote"
}));
}
// 多选引用转换为块的时候 id 不一致
if (!hasEmbedBlock) {
turnIntoSubmenu.push(this.turnsInto({
icon: "iconParagraph",
label: window.siyuan.languages.paragraph,
accelerator: window.siyuan.config.keymap.editor.heading.paragraph.custom,
protyle,
selectsElement,
type: "Blocks2Ps",
isContinue
}));
}
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH1",
label: window.siyuan.languages.heading1,
accelerator: window.siyuan.config.keymap.editor.heading.heading1.custom,
protyle,
selectsElement,
level: 1,
type: "Blocks2Hs",
isContinue
}));
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH2",
label: window.siyuan.languages.heading2,
accelerator: window.siyuan.config.keymap.editor.heading.heading2.custom,
protyle,
selectsElement,
level: 2,
type: "Blocks2Hs",
isContinue
}));
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH3",
label: window.siyuan.languages.heading3,
accelerator: window.siyuan.config.keymap.editor.heading.heading3.custom,
protyle,
selectsElement,
level: 3,
type: "Blocks2Hs",
isContinue
}));
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH4",
label: window.siyuan.languages.heading4,
accelerator: window.siyuan.config.keymap.editor.heading.heading4.custom,
protyle,
selectsElement,
level: 4,
type: "Blocks2Hs",
isContinue
}));
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH5",
label: window.siyuan.languages.heading5,
accelerator: window.siyuan.config.keymap.editor.heading.heading5.custom,
protyle,
selectsElement,
level: 5,
type: "Blocks2Hs",
isContinue
}));
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH6",
label: window.siyuan.languages.heading6,
accelerator: window.siyuan.config.keymap.editor.heading.heading6.custom,
protyle,
selectsElement,
level: 6,
type: "Blocks2Hs",
isContinue
}));
window.siyuan.menus.menu.append(new MenuItem({
icon: "iconRefresh",
label: window.siyuan.languages.turnInto,
type: "submenu",
submenu: turnIntoSubmenu
}).element);
if (isContinue) {
window.siyuan.menus.menu.append(new MenuItem({
icon: "iconSuper",
label: window.siyuan.languages.merge + " " + window.siyuan.languages.superBlock,
type: "submenu",
submenu: [this.turnsIntoOne({
label: window.siyuan.languages.hLayout,
accelerator: window.siyuan.config.keymap.editor.general.hLayout.custom,
icon: "iconSplitLR",
protyle,
selectsElement,
type: "BlocksMergeSuperBlock",
level: "col"
}), this.turnsIntoOne({
label: window.siyuan.languages.vLayout,
accelerator: window.siyuan.config.keymap.editor.general.vLayout.custom,
icon: "iconSplitTB",
protyle,
selectsElement,
type: "BlocksMergeSuperBlock",
level: "row"
})]
}).element);
}
}
if (!protyle.disabled) {
AIActions(selectsElement, protyle);
}
const copyMenu: IMenu[] = [{
label: window.siyuan.languages.copy,
accelerator: "⌘C",
click() {
if (isNotEditBlock(selectsElement[0])) {
let html = "";
selectsElement.forEach(item => {
html += removeEmbed(item);
});
writeText(protyle.lute.BlockDOM2StdMd(html).trimEnd());
} else {
focusByRange(getEditorRange(selectsElement[0]));
document.execCommand("copy");
}
}
}, {
label: window.siyuan.languages.copyPlainText,
accelerator: window.siyuan.config.keymap.editor.general.copyPlainText.custom,
click() {
let html = "";
selectsElement.forEach(item => {
item.querySelectorAll("[spellcheck]").forEach(editItem => {
const cloneNode = editItem.cloneNode(true) as HTMLElement;
cloneNode.querySelectorAll('[data-type="backslash"]').forEach(slashItem => {
slashItem.firstElementChild.remove();
});
html += cloneNode.textContent + "\n";
});
});
copyPlainText(html.trimEnd());
}
}, {
label: window.siyuan.languages.duplicate,
accelerator: window.siyuan.config.keymap.editor.general.duplicate.custom,
disabled: protyle.disabled,
click() {
duplicateBlock(selectsElement, protyle);
}
2023-02-06 21:54:26 +08:00
}];
const copyTextRefMenu = this.genCopyTextRef(selectsElement);
if (copyTextRefMenu) {
copyMenu.splice(2, 0, copyTextRefMenu);
}
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.copy,
icon: "iconCopy",
type: "submenu",
submenu: copyMenu,
}).element);
if (protyle.disabled) {
return;
}
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.cut,
accelerator: "⌘X",
icon: "iconCut",
click: () => {
if (isNotEditBlock(selectsElement[0])) {
let html = "";
selectsElement.forEach(item => {
html += removeEmbed(item);
});
writeText(protyle.lute.BlockDOM2StdMd(html).trimEnd());
protyle.breadcrumb?.hide();
2023-06-01 20:50:49 +08:00
removeBlock(protyle, selectsElement[0], getEditorRange(selectsElement[0]));
} else {
focusByRange(getEditorRange(selectsElement[0]));
document.execCommand("cut");
}
}
}).element);
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.move,
accelerator: window.siyuan.config.keymap.general.move.custom,
icon: "iconMove",
click: () => {
movePathTo((toPath) => {
2023-06-01 20:50:49 +08:00
hintMoveBlock(toPath[0], selectsElement, protyle);
});
}
}).element);
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.delete,
icon: "iconTrashcan",
accelerator: "⌫",
click: () => {
protyle.breadcrumb?.hide();
2023-06-01 20:50:49 +08:00
removeBlock(protyle, selectsElement[0], getEditorRange(selectsElement[0]));
}
}).element);
window.siyuan.menus.menu.append(new MenuItem({type: "separator"}).element);
const appearanceElement = new MenuItem({
label: window.siyuan.languages.appearance,
icon: "iconFont",
accelerator: window.siyuan.config.keymap.editor.insert.appearance.custom,
2023-07-21 23:27:31 +08:00
click: () => {
/// #if MOBILE
2023-07-21 23:27:31 +08:00
this.showMobileAppearance(protyle);
/// #else
protyle.toolbar.element.classList.add("fn__none");
protyle.toolbar.subElement.innerHTML = "";
protyle.toolbar.subElement.style.width = "";
protyle.toolbar.subElement.style.padding = "";
protyle.toolbar.subElement.append(appearanceMenu(protyle, selectsElement));
protyle.toolbar.subElement.style.zIndex = (++window.siyuan.zIndex).toString();
protyle.toolbar.subElement.classList.remove("fn__none");
protyle.toolbar.subElementCloseCB = undefined;
const position = selectsElement[0].getBoundingClientRect();
setPosition(protyle.toolbar.subElement, position.left, position.top);
/// #endif
}
}).element;
window.siyuan.menus.menu.append(appearanceElement);
if (!isMobile()) {
appearanceElement.lastElementChild.classList.add("b3-menu__submenu--row");
}
this.genAlign(selectsElement, protyle);
this.genWidths(selectsElement, protyle);
window.siyuan.menus.menu.append(new MenuItem({type: "separator"}).element);
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.quickMakeCard,
accelerator: window.siyuan.config.keymap.editor.general.quickMakeCard.custom,
iconHTML: '<svg class="b3-menu__icon" style="color:var(--b3-theme-primary)"><use xlink:href="#iconRiffCard"></use></svg>',
icon: "iconRiffCard",
click() {
quickMakeCard(protyle, selectsElement);
}
}).element);
if (window.siyuan.config.flashcard.deck) {
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.addToDeck,
icon: "iconRiffCard",
click() {
const ids: string[] = [];
selectsElement.forEach(item => {
if (item.getAttribute("data-type") === "NodeThematicBreak") {
return;
}
ids.push(item.getAttribute("data-node-id"));
});
2023-06-01 20:50:49 +08:00
makeCard(protyle.app, ids);
}
}).element);
}
2023-06-03 09:55:50 +08:00
if (protyle?.app?.plugins) {
emitOpenMenu({
plugins: protyle.app.plugins,
type: "click-blockicon",
detail: {
protyle,
blockElements: selectsElement,
},
separatorPosition: "top",
});
}
2023-06-03 09:55:50 +08:00
return window.siyuan.menus.menu;
}
public renderMenu(protyle: IProtyle, buttonElement: Element) {
if (!buttonElement) {
2023-07-21 23:27:31 +08:00
return;
}
hideElements(["util", "toolbar", "hint"], protyle);
window.siyuan.menus.menu.remove();
if (isMobile()) {
activeBlur();
}
const id = buttonElement.getAttribute("data-node-id");
const selectsElement = protyle.wysiwyg.element.querySelectorAll(".protyle-wysiwyg--select");
if (selectsElement.length > 1) {
const match = Array.from(selectsElement).find(item => {
if (id === item.getAttribute("data-node-id")) {
return true;
}
});
if (match) {
return this.renderMultipleMenu(protyle, Array.from(selectsElement));
}
}
let nodeElement: Element;
if (buttonElement.tagName === "BUTTON") {
Array.from(protyle.wysiwyg.element.querySelectorAll(`[data-node-id="${id}"]`)).find(item => {
if (!hasClosestByAttribute(item.parentElement, "data-type", "NodeBlockQueryEmbed") &&
this.isMatchNode(item)) {
nodeElement = item;
return true;
}
});
} else {
nodeElement = buttonElement;
}
if (!nodeElement) {
return;
}
const type = nodeElement.getAttribute("data-type");
const subType = nodeElement.getAttribute("data-subtype");
const turnIntoSubmenu: IMenu[] = [];
hideElements(["select"], protyle);
nodeElement.classList.add("protyle-wysiwyg--select");
countBlockWord([id], protyle.block.rootID);
// "heading1-6", "list", "ordered-list", "check", "quote", "code", "table", "line", "math", "paragraph"
if (type === "NodeParagraph" && !protyle.disabled) {
turnIntoSubmenu.push(this.turnsIntoOne({
icon: "iconList",
label: window.siyuan.languages.list,
protyle,
selectsElement: [nodeElement],
type: "Blocks2ULs"
}));
turnIntoSubmenu.push(this.turnsIntoOne({
icon: "iconOrderedList",
label: window.siyuan.languages["ordered-list"],
protyle,
selectsElement: [nodeElement],
type: "Blocks2OLs"
}));
turnIntoSubmenu.push(this.turnsIntoOne({
icon: "iconCheck",
label: window.siyuan.languages.check,
protyle,
selectsElement: [nodeElement],
type: "Blocks2TLs"
}));
turnIntoSubmenu.push(this.turnsIntoOne({
icon: "iconQuote",
label: window.siyuan.languages.quote,
protyle,
selectsElement: [nodeElement],
type: "Blocks2Blockquote"
}));
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH1",
label: window.siyuan.languages.heading1,
accelerator: window.siyuan.config.keymap.editor.heading.heading1.custom,
protyle,
selectsElement: [nodeElement],
level: 1,
type: "Blocks2Hs",
}));
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH2",
label: window.siyuan.languages.heading2,
accelerator: window.siyuan.config.keymap.editor.heading.heading2.custom,
protyle,
selectsElement: [nodeElement],
level: 2,
type: "Blocks2Hs",
}));
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH3",
label: window.siyuan.languages.heading3,
accelerator: window.siyuan.config.keymap.editor.heading.heading3.custom,
protyle,
selectsElement: [nodeElement],
level: 3,
type: "Blocks2Hs",
}));
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH4",
label: window.siyuan.languages.heading4,
accelerator: window.siyuan.config.keymap.editor.heading.heading4.custom,
protyle,
selectsElement: [nodeElement],
level: 4,
type: "Blocks2Hs",
}));
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH5",
label: window.siyuan.languages.heading5,
accelerator: window.siyuan.config.keymap.editor.heading.heading5.custom,
protyle,
selectsElement: [nodeElement],
level: 5,
type: "Blocks2Hs",
}));
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH6",
label: window.siyuan.languages.heading6,
accelerator: window.siyuan.config.keymap.editor.heading.heading6.custom,
protyle,
selectsElement: [nodeElement],
level: 6,
type: "Blocks2Hs",
}));
} else if (type === "NodeHeading" && !protyle.disabled) {
turnIntoSubmenu.push(this.turnsInto({
icon: "iconParagraph",
label: window.siyuan.languages.paragraph,
accelerator: window.siyuan.config.keymap.editor.heading.paragraph.custom,
protyle,
selectsElement: [nodeElement],
level: 6,
type: "Blocks2Ps",
}));
if (subType !== "h1") {
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH1",
label: window.siyuan.languages.heading1,
accelerator: window.siyuan.config.keymap.editor.heading.heading1.custom,
protyle,
selectsElement: [nodeElement],
level: 1,
type: "Blocks2Hs",
}));
}
if (subType !== "h2") {
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH2",
label: window.siyuan.languages.heading2,
accelerator: window.siyuan.config.keymap.editor.heading.heading2.custom,
protyle,
selectsElement: [nodeElement],
level: 2,
type: "Blocks2Hs",
}));
}
if (subType !== "h3") {
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH3",
label: window.siyuan.languages.heading3,
accelerator: window.siyuan.config.keymap.editor.heading.heading3.custom,
protyle,
selectsElement: [nodeElement],
level: 3,
type: "Blocks2Hs",
}));
}
if (subType !== "h4") {
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH4",
label: window.siyuan.languages.heading4,
accelerator: window.siyuan.config.keymap.editor.heading.heading4.custom,
protyle,
selectsElement: [nodeElement],
level: 4,
type: "Blocks2Hs",
}));
}
if (subType !== "h5") {
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH5",
label: window.siyuan.languages.heading5,
accelerator: window.siyuan.config.keymap.editor.heading.heading5.custom,
protyle,
selectsElement: [nodeElement],
level: 5,
type: "Blocks2Hs",
}));
}
if (subType !== "h6") {
turnIntoSubmenu.push(this.turnsInto({
icon: "iconH6",
label: window.siyuan.languages.heading6,
accelerator: window.siyuan.config.keymap.editor.heading.heading6.custom,
protyle,
selectsElement: [nodeElement],
level: 6,
type: "Blocks2Hs",
}));
}
} else if (type === "NodeList" && !protyle.disabled) {
turnIntoSubmenu.push(this.turnsOneInto({
icon: "iconParagraph",
label: window.siyuan.languages.paragraph,
protyle,
nodeElement,
id,
type: "CancelList"
}));
if (nodeElement.getAttribute("data-subtype") === "o") {
turnIntoSubmenu.push(this.turnsOneInto({
icon: "iconList",
label: window.siyuan.languages.list,
protyle,
nodeElement,
id,
type: "OL2UL"
}));
turnIntoSubmenu.push(this.turnsOneInto({
icon: "iconCheck",
label: window.siyuan.languages.check,
protyle,
nodeElement,
id,
type: "UL2TL"
}));
} else if (nodeElement.getAttribute("data-subtype") === "t") {
turnIntoSubmenu.push(this.turnsOneInto({
icon: "iconList",
label: window.siyuan.languages.list,
protyle,
nodeElement,
id,
type: "TL2UL"
}));
turnIntoSubmenu.push(this.turnsOneInto({
icon: "iconOrderedList",
label: window.siyuan.languages["ordered-list"],
protyle,
nodeElement,
id,
type: "TL2OL"
}));
} else {
turnIntoSubmenu.push(this.turnsOneInto({
icon: "iconOrderedList",
label: window.siyuan.languages["ordered-list"],
protyle,
nodeElement,
id,
type: "UL2OL"
}));
turnIntoSubmenu.push(this.turnsOneInto({
icon: "iconCheck",
label: window.siyuan.languages.check,
protyle,
nodeElement,
id,
type: "OL2TL"
}));
}
} else if (type === "NodeBlockquote" && !protyle.disabled) {
turnIntoSubmenu.push(this.turnsOneInto({
icon: "iconParagraph",
label: window.siyuan.languages.paragraph,
protyle,
nodeElement,
id,
type: "CancelBlockquote"
}));
}
if (turnIntoSubmenu.length > 0 && !protyle.disabled) {
window.siyuan.menus.menu.append(new MenuItem({
icon: "iconRefresh",
label: window.siyuan.languages.turnInto,
type: "submenu",
submenu: turnIntoSubmenu
}).element);
}
if (!protyle.disabled && !nodeElement.classList.contains("hr")) {
AIActions([nodeElement], protyle);
}
const copyMenu = (copySubMenu(id, true, nodeElement) as IMenu[]).concat([{
label: window.siyuan.languages.copy,
accelerator: "⌘C",
click() {
if (isNotEditBlock(nodeElement)) {
writeText(protyle.lute.BlockDOM2StdMd(removeEmbed(nodeElement)).trimEnd());
} else {
focusByRange(getEditorRange(nodeElement));
document.execCommand("copy");
}
}
}, {
label: window.siyuan.languages.copyPlainText,
accelerator: window.siyuan.config.keymap.editor.general.copyPlainText.custom,
click() {
let text = "";
nodeElement.querySelectorAll("[spellcheck]").forEach(item => {
const cloneNode = item.cloneNode(true) as HTMLElement;
cloneNode.querySelectorAll('[data-type="backslash"]').forEach(slashItem => {
slashItem.firstElementChild.remove();
});
text += cloneNode.textContent + "\n";
});
copyPlainText(text.trimEnd());
}
}, {
label: window.siyuan.languages.duplicate,
accelerator: window.siyuan.config.keymap.editor.general.duplicate.custom,
disabled: protyle.disabled,
click() {
duplicateBlock([nodeElement], protyle);
}
2023-02-06 21:54:26 +08:00
}]);
const copyTextRefMenu = this.genCopyTextRef([nodeElement]);
if (copyTextRefMenu) {
copyMenu.splice(copyMenu.length - 1, 0, copyTextRefMenu);
}
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.copy,
icon: "iconCopy",
type: "submenu",
submenu: copyMenu
}).element);
if (!protyle.disabled) {
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.cut,
accelerator: "⌘X",
icon: "iconCut",
click: () => {
if (isNotEditBlock(nodeElement)) {
writeText(protyle.lute.BlockDOM2StdMd(removeEmbed(nodeElement)).trimEnd());
2023-06-01 20:50:49 +08:00
removeBlock(protyle, nodeElement, getEditorRange(nodeElement));
protyle.breadcrumb?.hide();
} else {
focusByRange(getEditorRange(nodeElement));
document.execCommand("cut");
}
}
}).element);
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.move,
accelerator: window.siyuan.config.keymap.general.move.custom,
icon: "iconMove",
click: () => {
movePathTo((toPath) => {
2023-06-01 20:50:49 +08:00
hintMoveBlock(toPath[0], [nodeElement], protyle);
});
}
}).element);
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.delete,
icon: "iconTrashcan",
accelerator: "⌫",
click: () => {
protyle.breadcrumb?.hide();
2023-06-01 20:50:49 +08:00
removeBlock(protyle, nodeElement, getEditorRange(nodeElement));
}
}).element);
}
if (type === "NodeSuperBlock" && !protyle.disabled) {
window.siyuan.menus.menu.append(new MenuItem({type: "separator"}).element);
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.cancel + " " + window.siyuan.languages.superBlock,
click() {
const sbData = cancelSB(protyle, nodeElement);
transaction(protyle, sbData.doOperations, sbData.undoOperations);
focusBlock(protyle.wysiwyg.element.querySelector(`[data-node-id="${sbData.previousId}"]`));
hideElements(["gutter"], protyle);
}
}).element);
} else if (type === "NodeCodeBlock" && !protyle.disabled && !nodeElement.getAttribute("data-subtype")) {
window.siyuan.menus.menu.append(new MenuItem({type: "separator"}).element);
const linewrap = nodeElement.getAttribute("linewrap");
const ligatures = nodeElement.getAttribute("ligatures");
const linenumber = nodeElement.getAttribute("linenumber");
window.siyuan.menus.menu.append(new MenuItem({
type: "submenu",
icon: "iconCode",
label: window.siyuan.languages.code,
submenu: [{
2023-06-15 11:24:27 +08:00
iconHTML: "",
label: `<div class="fn__flex" style="margin-bottom: 4px"><span>${window.siyuan.languages.md31}</span><span class="fn__space fn__flex-1"></span>
<input type="checkbox" class="b3-switch fn__flex-center"${linewrap === "true" ? " checked" : ((window.siyuan.config.editor.codeLineWrap && linewrap !== "false") ? " checked" : "")}></div>`,
bind(element) {
element.addEventListener("click", (event: MouseEvent & { target: HTMLElement }) => {
const inputElement = element.querySelector("input");
if (event.target.tagName !== "INPUT") {
inputElement.checked = !inputElement.checked;
}
nodeElement.setAttribute("linewrap", inputElement.checked.toString());
nodeElement.querySelector(".hljs").removeAttribute("data-render");
highlightRender(nodeElement);
fetchPost("/api/attr/setBlockAttrs", {
id,
attrs: {linewrap: inputElement.checked.toString()}
});
window.siyuan.menus.menu.remove();
});
}
}, {
2023-06-15 11:24:27 +08:00
iconHTML: "",
label: `<div class="fn__flex" style="margin-bottom: 4px"><span>${window.siyuan.languages.md2}</span><span class="fn__space fn__flex-1"></span>
<input type="checkbox" class="b3-switch fn__flex-center"${ligatures === "true" ? " checked" : ((window.siyuan.config.editor.codeLigatures && ligatures !== "false") ? " checked" : "")}></div>`,
bind(element) {
element.addEventListener("click", (event: MouseEvent & { target: HTMLElement }) => {
const inputElement = element.querySelector("input");
if (event.target.tagName !== "INPUT") {
inputElement.checked = !inputElement.checked;
}
nodeElement.setAttribute("ligatures", inputElement.checked.toString());
nodeElement.querySelector(".hljs").removeAttribute("data-render");
highlightRender(nodeElement);
fetchPost("/api/attr/setBlockAttrs", {
id,
attrs: {ligatures: inputElement.checked.toString()}
});
window.siyuan.menus.menu.remove();
});
}
}, {
2023-06-15 11:24:27 +08:00
iconHTML: "",
label: `<div class="fn__flex" style="margin-bottom: 4px"><span>${window.siyuan.languages.md27}</span><span class="fn__space fn__flex-1"></span>
<input type="checkbox" class="b3-switch fn__flex-center"${linenumber === "true" ? " checked" : ((window.siyuan.config.editor.codeSyntaxHighlightLineNum && linenumber !== "false") ? " checked" : "")}></div>`,
bind(element) {
element.addEventListener("click", (event: MouseEvent & { target: HTMLElement }) => {
const inputElement = element.querySelector("input");
if (event.target.tagName !== "INPUT") {
inputElement.checked = !inputElement.checked;
}
nodeElement.setAttribute("linenumber", inputElement.checked.toString());
nodeElement.querySelector(".hljs").removeAttribute("data-render");
highlightRender(nodeElement);
fetchPost("/api/attr/setBlockAttrs", {
id,
attrs: {linenumber: inputElement.checked.toString()}
});
window.siyuan.menus.menu.remove();
});
}
}]
}).element);
} else if (type === "NodeCodeBlock" && !protyle.disabled && ["echarts", "mindmap"].includes(nodeElement.getAttribute("data-subtype"))) {
window.siyuan.menus.menu.append(new MenuItem({type: "separator"}).element);
const height = (nodeElement as HTMLElement).style.height;
let html = nodeElement.outerHTML;
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.chart,
icon: "iconCode",
submenu: [{
label: `${window.siyuan.languages.height}<span class="fn__space"></span>
<input style="margin: 4px 0;width: 84px" type="number" step="1" min="148" class="b3-text-field" value="${height ? parseInt(height) : "420"}">`,
bind: (element) => {
element.querySelector("input").addEventListener("change", (event) => {
const newHeight = ((event.target as HTMLInputElement).value || "420") + "px";
(nodeElement as HTMLElement).style.height = newHeight;
(nodeElement.firstElementChild.nextElementSibling as HTMLElement).style.height = newHeight;
updateTransaction(protyle, id, nodeElement.outerHTML, html);
html = nodeElement.outerHTML;
event.stopPropagation();
const chartInstance = window.echarts.getInstanceById(nodeElement.firstElementChild.nextElementSibling.getAttribute("_echarts_instance_"));
if (chartInstance) {
chartInstance.resize();
}
});
}
}, {
label: window.siyuan.languages.update,
icon: "iconEdit",
click() {
protyle.toolbar.showRender(protyle, nodeElement);
}
}]
}).element);
} else if (type === "NodeTable" && !protyle.disabled) {
let range = getEditorRange(nodeElement);
const tableElement = nodeElement.querySelector("table");
if (!tableElement.contains(range.startContainer)) {
range = getEditorRange(tableElement.querySelector("th"));
}
const cellElement = hasClosestByMatchTag(range.startContainer, "TD") || hasClosestByMatchTag(range.startContainer, "TH");
if (cellElement) {
window.siyuan.menus.menu.append(new MenuItem({type: "separator"}).element);
window.siyuan.menus.menu.append(new MenuItem({
type: "submenu",
icon: "iconTable",
label: window.siyuan.languages.table,
submenu: tableMenu(protyle, nodeElement, cellElement as HTMLTableCellElement, range) as IMenu[]
}).element);
}
} else if ((type === "NodeVideo" || type === "NodeAudio") && !protyle.disabled) {
window.siyuan.menus.menu.append(new MenuItem({type: "separator"}).element);
window.siyuan.menus.menu.append(new MenuItem({
id: "assetSubMenu",
type: "submenu",
icon: type === "NodeVideo" ? "iconVideo" : "iconRecord",
label: window.siyuan.languages.assets,
2023-06-01 20:50:49 +08:00
submenu: videoMenu(protyle, nodeElement, type)
}).element);
} else if (type === "NodeIFrame" && !protyle.disabled) {
window.siyuan.menus.menu.append(new MenuItem({type: "separator"}).element);
window.siyuan.menus.menu.append(new MenuItem({
id: "assetSubMenu",
type: "submenu",
icon: "iconLanguage",
label: window.siyuan.languages.assets,
2023-06-01 20:50:49 +08:00
submenu: iframeMenu(protyle, nodeElement)
}).element);
} else if (type === "NodeHTMLBlock" && !protyle.disabled) {
window.siyuan.menus.menu.append(new MenuItem({type: "separator"}).element);
window.siyuan.menus.menu.append(new MenuItem({
icon: "iconHTML5",
label: "HTML",
click() {
protyle.toolbar.showRender(protyle, nodeElement);
}
}).element);
} else if (type === "NodeBlockQueryEmbed" && !protyle.disabled) {
window.siyuan.menus.menu.append(new MenuItem({type: "separator"}).element);
const breadcrumb = nodeElement.getAttribute("breadcrumb");
window.siyuan.menus.menu.append(new MenuItem({
id: "assetSubMenu",
type: "submenu",
icon: "iconSQL",
label: window.siyuan.languages.blockEmbed,
submenu: [{
icon: "iconRefresh",
label: `${window.siyuan.languages.refresh} SQL`,
click() {
nodeElement.removeAttribute("data-render");
blockRender(protyle, nodeElement);
}
}, {
icon: "iconEdit",
label: `${window.siyuan.languages.update} SQL`,
click() {
protyle.toolbar.showRender(protyle, nodeElement);
}
}, {
type: "separator"
}, {
label: `<div class="fn__flex" style="margin-bottom: 4px"><span>${window.siyuan.languages.embedBlockBreadcrumb}</span><span class="fn__space fn__flex-1"></span>
<input type="checkbox" class="b3-switch fn__flex-center"${breadcrumb === "true" ? " checked" : ((window.siyuan.config.editor.embedBlockBreadcrumb && breadcrumb !== "false") ? " checked" : "")}></div>`,
bind(element) {
element.addEventListener("click", (event: MouseEvent & { target: HTMLElement }) => {
const inputElement = element.querySelector("input");
if (event.target.tagName !== "INPUT") {
inputElement.checked = !inputElement.checked;
}
nodeElement.setAttribute("breadcrumb", inputElement.checked.toString());
fetchPost("/api/attr/setBlockAttrs", {
id,
attrs: {breadcrumb: inputElement.checked.toString()}
});
2022-10-19 21:47:47 +08:00
nodeElement.removeAttribute("data-render");
blockRender(protyle, nodeElement);
window.siyuan.menus.menu.remove();
});
}
}, {
label: `<div class="fn__flex" style="margin-bottom: 4px"><span>${window.siyuan.languages.hideHeadingBelowBlocks}</span><span class="fn__space fn__flex-1"></span>
<input type="checkbox" class="b3-switch fn__flex-center"${nodeElement.getAttribute("custom-heading-mode") === "1" ? " checked" : ""}></div>`,
bind(element) {
element.addEventListener("click", (event: MouseEvent & { target: HTMLElement }) => {
const inputElement = element.querySelector("input");
if (event.target.tagName !== "INPUT") {
inputElement.checked = !inputElement.checked;
}
nodeElement.setAttribute("custom-heading-mode", inputElement.checked ? "1" : "0");
fetchPost("/api/attr/setBlockAttrs", {
id,
attrs: {"custom-heading-mode": inputElement.checked ? "1" : "0"}
});
nodeElement.removeAttribute("data-render");
blockRender(protyle, nodeElement);
window.siyuan.menus.menu.remove();
});
}
}]
}).element);
} else if (type === "NodeHeading" && !protyle.disabled) {
window.siyuan.menus.menu.append(new MenuItem({type: "separator"}).element);
const headingSubMenu = [];
if (subType !== "h1") {
2022-09-28 12:14:18 +08:00
headingSubMenu.push(this.genHeadingTransform(protyle, id, 1));
}
if (subType !== "h2") {
2022-09-28 12:14:18 +08:00
headingSubMenu.push(this.genHeadingTransform(protyle, id, 2));
}
if (subType !== "h3") {
2022-09-28 12:14:18 +08:00
headingSubMenu.push(this.genHeadingTransform(protyle, id, 3));
}
if (subType !== "h4") {
2022-09-28 12:14:18 +08:00
headingSubMenu.push(this.genHeadingTransform(protyle, id, 4));
}
if (subType !== "h5") {
2022-09-28 12:14:18 +08:00
headingSubMenu.push(this.genHeadingTransform(protyle, id, 5));
}
if (subType !== "h6") {
2022-09-28 12:14:18 +08:00
headingSubMenu.push(this.genHeadingTransform(protyle, id, 6));
}
window.siyuan.menus.menu.append(new MenuItem({
type: "submenu",
icon: "iconRefresh",
label: window.siyuan.languages.tWithSubtitle,
submenu: headingSubMenu
}).element);
window.siyuan.menus.menu.append(new MenuItem({
icon: "iconCopy",
label: `${window.siyuan.languages.copy} ${window.siyuan.languages.headings1}`,
click() {
fetchPost("/api/block/getHeadingChildrenDOM", {id}, (response) => {
writeText(response.data + Constants.ZWSP);
2022-09-28 12:14:18 +08:00
});
}
}).element);
window.siyuan.menus.menu.append(new MenuItem({
icon: "iconCut",
label: `${window.siyuan.languages.cut} ${window.siyuan.languages.headings1}`,
click() {
fetchPost("/api/block/getHeadingChildrenDOM", {id}, (response) => {
writeText(response.data + Constants.ZWSP);
fetchPost("/api/block/getHeadingDeleteTransaction", {
id,
}, (response) => {
response.data.doOperations.forEach((operation: IOperation) => {
protyle.wysiwyg.element.querySelectorAll(`[data-node-id="${operation.id}"]`).forEach((itemElement: HTMLElement) => {
itemElement.remove();
});
});
transaction(protyle, response.data.doOperations, response.data.undoOperations);
});
});
}
}).element);
window.siyuan.menus.menu.append(new MenuItem({
icon: "iconTrashcan",
label: `${window.siyuan.languages.delete} ${window.siyuan.languages.headings1}`,
click() {
fetchPost("/api/block/getHeadingDeleteTransaction", {
id,
}, (response) => {
response.data.doOperations.forEach((operation: IOperation) => {
protyle.wysiwyg.element.querySelectorAll(`[data-node-id="${operation.id}"]`).forEach((itemElement: HTMLElement) => {
itemElement.remove();
});
});
transaction(protyle, response.data.doOperations, response.data.undoOperations);
});
}
}).element);
}
window.siyuan.menus.menu.append(new MenuItem({type: "separator"}).element);
if (!protyle.options.backlinkData) {
window.siyuan.menus.menu.append(new MenuItem({
accelerator: `${updateHotkeyTip(window.siyuan.config.keymap.general.enter.custom)}/${updateHotkeyTip("⌘Click")}`,
label: window.siyuan.languages.enter,
click: () => {
2023-06-01 20:50:49 +08:00
zoomOut({protyle, id});
}
}).element);
window.siyuan.menus.menu.append(new MenuItem({
accelerator: window.siyuan.config.keymap.general.enterBack.custom,
label: window.siyuan.languages.enterBack,
click: () => {
enterBack(protyle, id);
}
}).element);
}
if (!protyle.disabled) {
window.siyuan.menus.menu.append(new MenuItem({
icon: "iconBefore",
label: window.siyuan.languages["insert-before"],
accelerator: window.siyuan.config.keymap.editor.general.insertBefore.custom,
click() {
hideElements(["select"], protyle);
countBlockWord([], protyle.block.rootID);
insertEmptyBlock(protyle, "beforebegin", id);
}
}).element);
window.siyuan.menus.menu.append(new MenuItem({
icon: "iconAfter",
label: window.siyuan.languages["insert-after"],
accelerator: window.siyuan.config.keymap.editor.general.insertAfter.custom,
click() {
hideElements(["select"], protyle);
countBlockWord([], protyle.block.rootID);
insertEmptyBlock(protyle, "afterend", id);
}
}).element);
2023-02-06 21:54:26 +08:00
const countElement = nodeElement.lastElementChild.querySelector(".protyle-attr--refcount");
if (countElement && countElement.textContent) {
2023-02-06 21:54:26 +08:00
transferBlockRef(id);
}
}
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.jumpToParentNext,
accelerator: window.siyuan.config.keymap.editor.general.jumpToParentNext.custom,
click() {
hideElements(["select"], protyle);
jumpToParentNext(protyle, nodeElement);
}
}).element);
window.siyuan.menus.menu.append(new MenuItem({type: "separator"}).element);
if (type !== "NodeThematicBreak") {
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.fold,
accelerator: `${updateHotkeyTip(window.siyuan.config.keymap.editor.general.collapse.custom)}/${updateHotkeyTip("⌥Click")}`,
click() {
setFold(protyle, nodeElement);
focusBlock(nodeElement);
}
}).element);
if (!protyle.disabled) {
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.attr,
2023-09-09 17:00:51 +08:00
icon: "iconAttr",
accelerator: window.siyuan.config.keymap.editor.general.attr.custom + "/" + updateHotkeyTip("⇧Click"),
click() {
openAttr(nodeElement, "bookmark", protyle);
}
}).element);
}
}
if (!protyle.disabled) {
const appearanceElement = new MenuItem({
label: window.siyuan.languages.appearance,
icon: "iconFont",
accelerator: window.siyuan.config.keymap.editor.insert.appearance.custom,
2023-07-21 23:27:31 +08:00
click: () => {
/// #if MOBILE
2023-07-21 23:27:31 +08:00
this.showMobileAppearance(protyle);
/// #else
protyle.toolbar.element.classList.add("fn__none");
protyle.toolbar.subElement.innerHTML = "";
protyle.toolbar.subElement.style.width = "";
protyle.toolbar.subElement.style.padding = "";
protyle.toolbar.subElement.append(appearanceMenu(protyle, [nodeElement]));
protyle.toolbar.subElement.style.zIndex = (++window.siyuan.zIndex).toString();
protyle.toolbar.subElement.classList.remove("fn__none");
protyle.toolbar.subElementCloseCB = undefined;
const position = nodeElement.getBoundingClientRect();
setPosition(protyle.toolbar.subElement, position.left, position.top);
/// #endif
}
}).element;
window.siyuan.menus.menu.append(appearanceElement);
if (!isMobile()) {
appearanceElement.lastElementChild.classList.add("b3-menu__submenu--row");
}
this.genAlign([nodeElement], protyle);
this.genWidths([nodeElement], protyle);
}
window.siyuan.menus.menu.append(new MenuItem({type: "separator"}).element);
if (!["NodeThematicBreak", "NodeBlockQueryEmbed", "NodeIFrame", "NodeHTMLBlock", "NodeWidget", "NodeVideo", "NodeAudio"].includes(type) &&
getContenteditableElement(nodeElement)?.textContent.trim() !== "" &&
(type !== "NodeCodeBlock" || (type === "NodeCodeBlock" && !nodeElement.getAttribute("data-subtype")))) {
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.wechatReminder,
icon: "iconMp",
click() {
openWechatNotify(nodeElement);
}
}).element);
}
if (type !== "NodeThematicBreak") {
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.quickMakeCard,
accelerator: window.siyuan.config.keymap.editor.general.quickMakeCard.custom,
iconHTML: '<svg class="b3-menu__icon" style="color:var(--b3-theme-primary)"><use xlink:href="#iconRiffCard"></use></svg>',
icon: "iconRiffCard",
click() {
quickMakeCard(protyle, [nodeElement]);
}
}).element);
if (window.siyuan.config.flashcard.deck) {
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.addToDeck,
icon: "iconRiffCard",
click() {
2023-06-01 20:50:49 +08:00
makeCard(protyle.app, [nodeElement.getAttribute("data-node-id")]);
}
}).element);
}
window.siyuan.menus.menu.append(new MenuItem({type: "separator"}).element);
}
if (protyle?.app?.plugins) {
emitOpenMenu({
plugins: protyle.app.plugins,
type: "click-blockicon",
detail: {
protyle,
blockElements: [nodeElement]
},
separatorPosition: "bottom",
});
}
let updateHTML = nodeElement.getAttribute("updated") || "";
if (updateHTML) {
updateHTML = `${window.siyuan.languages.modifiedAt} ${dayjs(updateHTML).format("YYYY-MM-DD HH:mm:ss")}<br>`;
}
window.siyuan.menus.menu.append(new MenuItem({
iconHTML: Constants.ZWSP,
type: "readonly",
2023-01-27 12:21:33 +08:00
label: `${updateHTML}${window.siyuan.languages.createdAt} ${dayjs(id.substr(0, 14)).format("YYYY-MM-DD HH:mm:ss")}`,
}).element);
return window.siyuan.menus.menu;
}
private genHeadingTransform(protyle: IProtyle, id: string, level: number) {
return {
iconHTML: "",
icon: "iconHeading" + level,
label: window.siyuan.languages["heading" + level],
click() {
fetchPost("/api/block/getHeadingLevelTransaction", {
id,
level
}, (response) => {
response.data.doOperations.forEach((operation: IOperation, index: number) => {
protyle.wysiwyg.element.querySelectorAll(`[data-node-id="${operation.id}"]`).forEach((itemElement: HTMLElement) => {
itemElement.outerHTML = operation.data;
});
// 使用 outer 后元素需要重新查询
protyle.wysiwyg.element.querySelectorAll(`[data-node-id="${operation.id}"]`).forEach((itemElement: HTMLElement) => {
mathRender(itemElement);
});
if (index === 0) {
focusBlock(protyle.wysiwyg.element.querySelector(`[data-node-id="${operation.id}"]`), protyle.wysiwyg.element, true);
}
});
2022-09-28 12:14:18 +08:00
transaction(protyle, response.data.doOperations, response.data.undoOperations);
});
}
2022-09-28 12:14:18 +08:00
};
}
private genClick(nodeElements: Element[], protyle: IProtyle, cb: (e: HTMLElement) => void) {
updateBatchTransaction(nodeElements, protyle, cb);
focusBlock(nodeElements[0]);
}
private genAlign(nodeElements: Element[], protyle: IProtyle) {
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.layout,
type: "submenu",
submenu: [{
label: window.siyuan.languages.alignLeft,
icon: "iconAlignLeft",
accelerator: window.siyuan.config.keymap.editor.general.alignLeft.custom,
click: () => {
this.genClick(nodeElements, protyle, (e: HTMLElement) => {
if (e.classList.contains("av")) {
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.style.alignItems = "flex-start";
} else {
2023-10-14 10:01:42 +08:00
e.style.textAlign = "left";
}
});
}
}, {
label: window.siyuan.languages.alignCenter,
icon: "iconAlignCenter",
accelerator: window.siyuan.config.keymap.editor.general.alignCenter.custom,
click: () => {
this.genClick(nodeElements, protyle, (e: HTMLElement) => {
if (e.classList.contains("av")) {
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.style.alignItems = "center";
} else {
2023-10-14 10:01:42 +08:00
e.style.textAlign = "center";
}
});
}
}, {
label: window.siyuan.languages.alignRight,
icon: "iconAlignRight",
accelerator: window.siyuan.config.keymap.editor.general.alignRight.custom,
click: () => {
this.genClick(nodeElements, protyle, (e: HTMLElement) => {
if (e.classList.contains("av")) {
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.style.alignItems = "flex-end";
} else {
2023-10-14 10:01:42 +08:00
e.style.textAlign = "right";
}
});
}
}, {
label: window.siyuan.languages.justify,
icon: "iconMenu",
click: () => {
this.genClick(nodeElements, protyle, (e: HTMLElement) => {
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
if (e.classList.contains("av")) {
e.style.alignItems = "stretch";
} else {
e.style.textAlign = "justify";
}
});
}
}, {
type: "separator"
}, {
label: window.siyuan.languages.ltr,
icon: "iconLtr",
click: () => {
this.genClick(nodeElements, protyle, (e: HTMLElement) => {
e.style.direction = "ltr";
});
}
}, {
label: window.siyuan.languages.rtl,
icon: "iconRtl",
click: () => {
this.genClick(nodeElements, protyle, (e: HTMLElement) => {
if (!e.classList.contains("av")) {
2023-10-14 10:01:42 +08:00
e.style.direction = "rtl";
}
});
}
}, {
type: "separator"
}, {
label: window.siyuan.languages.clearFontStyle,
icon: "iconTrashcan",
click: () => {
this.genClick(nodeElements, protyle, (e: HTMLElement) => {
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.style.direction = "";
if (e.classList.contains("av")) {
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.style.alignItems = "";
} else {
e.style.textAlign = "";
}
});
}
}]
}).element);
}
private genWidths(nodeElements: Element[], protyle: IProtyle) {
const styles: IMenu[] = [];
["25%", "33%", "50%", "67%", "75%"].forEach((item) => {
styles.push({
label: item,
click: () => {
this.genClick(nodeElements, protyle, (e: HTMLElement) => {
e.style.width = item;
e.style.flex = "none";
resizeAV(e);
});
}
});
});
styles.push({
type: "separator"
});
let width = 100;
if (nodeElements.length === 1) {
const widthStyle = (nodeElements[0] as HTMLElement).style.width;
if (widthStyle.endsWith("%")) {
width = parseInt(widthStyle);
}
}
window.siyuan.menus.menu.append(new MenuItem({
label: window.siyuan.languages.width,
submenu: styles.concat([{
label: `<div aria-label="${width}%" class="b3-tooltips b3-tooltips__n${isMobile() ? "" : " fn__size200"}">
<input style="box-sizing: border-box" value="${width}" class="b3-slider fn__block" max="100" min="1" step="1" type="range">
</div>`,
bind(element) {
const rangeElement = element.querySelector("input");
rangeElement.addEventListener("input", () => {
nodeElements.forEach((e) => {
(e as HTMLElement).style.width = rangeElement.value + "%";
(e as HTMLElement).style.flex = "none";
});
rangeElement.parentElement.setAttribute("aria-label", `${rangeElement.value}%`);
});
const undoOperations: IOperation[] = [];
const operations: IOperation[] = [];
nodeElements.forEach((e) => {
undoOperations.push({
action: "update",
id: e.getAttribute("data-node-id"),
data: e.outerHTML
});
});
rangeElement.addEventListener("change", () => {
nodeElements.forEach((e: HTMLElement) => {
operations.push({
action: "update",
id: e.getAttribute("data-node-id"),
data: e.outerHTML
});
});
transaction(protyle, operations, undoOperations);
window.siyuan.menus.menu.remove();
focusBlock(nodeElements[0]);
});
}
}, {
type: "separator"
}, {
label: window.siyuan.languages.clearFontStyle,
icon: "iconTrashcan",
click: () => {
this.genClick(nodeElements, protyle, (e: HTMLElement) => {
if (e.style.width) {
e.style.width = "";
e.style.flex = "";
resizeAV(e);
}
});
}
}]),
}).element);
}
private genCopyTextRef(selectsElement: Element[]): false | IMenu {
if (isNotEditBlock(selectsElement[0])) {
2023-02-06 21:54:26 +08:00
return false;
}
return {
accelerator: window.siyuan.config.keymap.editor.general.copyText.custom,
label: window.siyuan.languages.copyText,
click() {
// 用于标识复制文本 *
2023-02-06 21:54:26 +08:00
selectsElement[0].setAttribute("data-reftext", "true");
focusByRange(getEditorRange(selectsElement[0]));
document.execCommand("copy");
}
2023-02-06 21:54:26 +08:00
};
}
public render(protyle: IProtyle, element: Element, wysiwyg: HTMLElement) {
// https://github.com/siyuan-note/siyuan/issues/4659
const titleElement = wysiwyg.parentElement.querySelector(".protyle-title__input");
if (titleElement && titleElement.getAttribute("data-render") !== "true") {
return;
}
// 防止划选时触碰图标导致 hl 无法移除
const selectElement = wysiwyg.parentElement.parentElement.querySelector(".protyle-select");
if (selectElement && !selectElement.classList.contains("fn__none")) {
return;
}
let html = "";
let nodeElement = element;
let space = 0;
let index = 0;
let listItem;
let hideParent = false;
while (nodeElement) {
const isShow = !hideParent || (hideParent && nodeElement.getAttribute("fold") === "1");
const embedElement = hasClosestByAttribute(nodeElement.parentElement, "data-type", "NodeBlockQueryEmbed");
if (!embedElement) {
let type;
if (isShow) {
type = nodeElement.getAttribute("data-type");
}
if (index === 0) {
// 不单独显示要不然在块的间隔中gutter 会跳来跳去的
if (["NodeBlockquote", "NodeList", "NodeSuperBlock"].includes(type)) {
return;
}
const topElement = getTopAloneElement(nodeElement);
listItem = topElement.querySelector(".li") || topElement.querySelector(".list");
// 嵌入块中有列表时块标显示位置错误 https://github.com/siyuan-note/siyuan/issues/6254
if (hasClosestByAttribute(listItem, "data-type", "NodeBlockQueryEmbed")) {
listItem = undefined;
}
// 标题必须显示
if (!topElement.isSameNode(nodeElement) && type !== "NodeHeading") {
nodeElement = topElement;
type = nodeElement.getAttribute("data-type");
}
}
if (type === "NodeListItem" && index === 1 && !isShow) {
// 列表项中第一层不显示
html = "";
}
index += 1;
const buttonHTML = `<button class="ariaLabel" data-position="right" aria-label="${this.gutterTip}"
data-type="${type}" data-subtype="${nodeElement.getAttribute("data-subtype")}" data-node-id="${nodeElement.getAttribute("data-node-id")}">
<svg><use xlink:href="#${getIconByType(type, nodeElement.getAttribute("data-subtype"))}"></use></svg>
<span ${protyle.disabled ? "" : 'draggable="true"'}></span>
2023-10-24 10:42:04 +08:00
</button>`;
if (isShow) {
html = buttonHTML + html;
}
let foldHTML = "";
if (type === "NodeListItem" && nodeElement.childElementCount > 3 || type === "NodeHeading") {
const fold = nodeElement.getAttribute("fold");
foldHTML = `<button class="ariaLabel" data-position="right" aria-label="${window.siyuan.languages.fold}"
data-type="fold"><svg style="width:10px${fold && fold === "1" ? "" : ";transform:rotate(90deg)"}"><use xlink:href="#iconPlay"></use></svg></button>`;
}
if (type === "NodeListItem" || type === "NodeList") {
listItem = nodeElement;
if (type === "NodeListItem" && nodeElement.childElementCount > 3) {
html = buttonHTML + foldHTML;
}
}
if (type === "NodeHeading") {
html = html + foldHTML;
}
if (type === "NodeBlockquote") {
space += 8;
}
if (nodeElement.previousElementSibling && nodeElement.previousElementSibling.getAttribute("data-node-id")) {
// 前一个块存在时,只显示到当前层级,但需显示折叠块的块标
// https://github.com/siyuan-note/siyuan/issues/2562 https://github.com/siyuan-note/siyuan/issues/2809
hideParent = true;
}
}
const parentElement = hasClosestBlock(nodeElement.parentElement);
if (parentElement) {
nodeElement = parentElement;
} else {
break;
}
}
let match = true;
const buttonsElement = this.element.querySelectorAll("button");
if (buttonsElement.length !== html.split("</button>").length - 1) {
match = false;
} else {
buttonsElement.forEach(item => {
const id = item.getAttribute("data-node-id");
if (id && html.indexOf(id) === -1) {
match = false;
}
});
}
// 防止抖动 https://github.com/siyuan-note/siyuan/issues/4166
if (match && this.element.childElementCount > 0) {
this.element.classList.remove("fn__none");
return;
}
this.element.innerHTML = html;
this.element.classList.remove("fn__none");
this.element.style.width = "";
let rect = element.getBoundingClientRect();
let marginHeight = 0;
if (listItem) {
rect = listItem.firstElementChild.getBoundingClientRect();
space = 0;
} else if (nodeElement.getAttribute("data-type") === "NodeBlockQueryEmbed") {
rect = nodeElement.getBoundingClientRect();
space = 0;
} else if (rect.height < Math.floor(window.siyuan.config.editor.fontSize * 1.625) + 8 ||
(rect.height > Math.floor(window.siyuan.config.editor.fontSize * 1.625) + 8 && rect.height < Math.floor(window.siyuan.config.editor.fontSize * 1.625) * 2 + 8)) {
marginHeight = (rect.height - this.element.clientHeight) / 2;
}
if (nodeElement.getAttribute("data-type") === "NodeAttributeView") {
const iconElement = nodeElement.querySelector(".item__graphic");
let top = rect.top + 8
if (iconElement) {
top = iconElement.getBoundingClientRect().top - (window.siyuan.config.editor.fontSize * 1.625 - 14) / 2;
}
// 防止遮挡可左右滚动的 cell
const maxTop = wysiwyg.parentElement.getBoundingClientRect().top
if (top < maxTop - 43) {
top = -1000
} else if (top > maxTop - 43 && top <= maxTop) {
top = maxTop
}
this.element.style.top = `${top}px`;
} else {
this.element.style.top = `${Math.max(rect.top, wysiwyg.parentElement.getBoundingClientRect().top) + marginHeight}px`;
}
let left = rect.left - this.element.clientWidth - space;
if (nodeElement.getAttribute("data-type") === "NodeBlockQueryEmbed" && this.element.childElementCount === 1) {
// 嵌入块为列表时
left = nodeElement.getBoundingClientRect().left - this.element.clientWidth - space;
} else if (nodeElement.getAttribute("data-type") === "NodeAttributeView") {
left = left + (parseInt((nodeElement.firstElementChild.firstElementChild as HTMLElement)?.style.paddingLeft) || 0);
}
this.element.style.left = `${left}px`;
if (left < this.element.parentElement.getBoundingClientRect().left) {
this.element.style.width = "24px";
// 需加 2否则和折叠标题无法对齐
this.element.style.left = `${rect.left - this.element.clientWidth - space / 2 + 3}px`;
html = "";
Array.from(this.element.children).reverse().forEach((item, index) => {
if (index !== 0) {
(item.firstElementChild as HTMLElement).style.height = "14px";
}
html += item.outerHTML;
});
this.element.innerHTML = html;
} else {
this.element.querySelectorAll("svg").forEach(item => {
item.style.height = "";
});
}
}
}