Skip to content

Commit 6ef83b4

Browse files
committed
🔖 Release v3.4.2
Signed-off-by: Daniel <845765@qq.com>
1 parent 2b14543 commit 6ef83b4

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

app/appx/AppxManifest-arm64.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Identity Name="89C2A984.SiYuan"
1010
ProcessorArchitecture="arm64"
1111
Publisher="CN=087C656E-C1D9-42D8-8807-CED45A74FC0F"
12-
Version="3.4.1.0"/>
12+
Version="3.4.2.0"/>
1313
<Properties>
1414
<DisplayName>SiYuan</DisplayName>
1515
<PublisherDisplayName>云南链滴科技有限公司</PublisherDisplayName>

app/appx/AppxManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Identity Name="89C2A984.SiYuan"
1010
ProcessorArchitecture="x64"
1111
Publisher="CN=087C656E-C1D9-42D8-8807-CED45A74FC0F"
12-
Version="3.4.1.0"/>
12+
Version="3.4.2.0"/>
1313
<Properties>
1414
<DisplayName>SiYuan</DisplayName>
1515
<PublisherDisplayName>云南链滴科技有限公司</PublisherDisplayName>

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SiYuan",
3-
"version": "3.4.1",
3+
"version": "3.4.2",
44
"description": "Refactor your thinking",
55
"homepage": "https://b3log.org/siyuan",
66
"main": "./electron/main.js",

app/src/protyle/wysiwyg/transaction.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,9 @@ const promiseTransaction = () => {
215215
item.firstElementChild.insertAdjacentHTML("afterend", operation.data);
216216
cursorElements.push(item.firstElementChild.nextElementSibling);
217217
} else if (item.classList.contains("callout") &&
218-
item.querySelector('[data-node-id]')?.getAttribute("data-node-id") !== operation.id) {
218+
item.querySelector("[data-node-id]")?.getAttribute("data-node-id") !== operation.id) {
219219
item.querySelector(".callout-content").insertAdjacentHTML("afterbegin", operation.data);
220-
cursorElements.push(item.querySelector('[data-node-id]'));
220+
cursorElements.push(item.querySelector("[data-node-id]"));
221221
} else if (item.firstElementChild.getAttribute("data-node-id") !== operation.id) {
222222
item.insertAdjacentHTML("afterbegin", operation.data);
223223
cursorElements.push(item.firstElementChild);
@@ -837,7 +837,7 @@ export const onTransaction = (protyle: IProtyle, operation: IOperation, isUndo:
837837
cursorElements.push(item.firstElementChild.nextElementSibling);
838838
} else if (item.classList.contains("callout")) {
839839
item.querySelector(".callout-content").insertAdjacentHTML("afterbegin", operation.data);
840-
cursorElements.push(item.querySelector('[data-node-id]'));
840+
cursorElements.push(item.querySelector("[data-node-id]"));
841841
} else {
842842
item.insertAdjacentHTML("afterbegin", operation.data);
843843
cursorElements.push(item.firstElementChild);

kernel/util/working.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ import (
4545
var Mode = "prod"
4646

4747
const (
48-
Ver = "3.4.1"
48+
Ver = "3.4.2"
4949
IsInsider = false
5050

5151
// env vars as fallback for commandline parameters

0 commit comments

Comments
 (0)