From 125eef234bdcb866d8013096c36d9c64bde03285 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 3 Mar 2025 02:26:21 +0000 Subject: [PATCH 1/7] chore(deps): update dependency prettier to v3.5.3 --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 67be79800..4da028900 100644 --- a/package-lock.json +++ b/package-lock.json @@ -172,7 +172,7 @@ "mini-css-extract-plugin": "2.9.2", "nodemon": "3.1.9", "postcss-loader": "8.1.1", - "prettier": "3.5.2", + "prettier": "3.5.3", "rcedit": "4.0.1", "rimraf": "6.0.1", "sass": "1.85.1", @@ -14776,9 +14776,9 @@ } }, "node_modules/prettier": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.2.tgz", - "integrity": "sha512-lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg==", + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", + "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", "dev": true, "license": "MIT", "bin": { diff --git a/package.json b/package.json index 0588132d8..a10dd0d95 100644 --- a/package.json +++ b/package.json @@ -223,7 +223,7 @@ "mini-css-extract-plugin": "2.9.2", "nodemon": "3.1.9", "postcss-loader": "8.1.1", - "prettier": "3.5.2", + "prettier": "3.5.3", "rcedit": "4.0.1", "rimraf": "6.0.1", "sass": "1.85.1", From c7e9963db1793c13071d7b1063c32ef3414d303b Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Mon, 3 Mar 2025 16:00:03 +0200 Subject: [PATCH 2/7] client/setup dialog: add a margin after the password field --- src/views/setup.ejs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/setup.ejs b/src/views/setup.ejs index c80175e8b..006379260 100644 --- a/src/views/setup.ejs +++ b/src/views/setup.ejs @@ -135,7 +135,7 @@

<%= t("setup_sync-from-server.note") %> <%= t("setup_sync-from-server.proxy-instruction") %>

-
+
">
From e55708f79fba10a1eff495a1c94f93e797849b3e Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Mon, 3 Mar 2025 16:04:23 +0200 Subject: [PATCH 3/7] client/settings/appearance: fix restart application button style --- .../type_widgets/options/appearance/electron_integration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/app/widgets/type_widgets/options/appearance/electron_integration.ts b/src/public/app/widgets/type_widgets/options/appearance/electron_integration.ts index 884347630..803d3d8ea 100644 --- a/src/public/app/widgets/type_widgets/options/appearance/electron_integration.ts +++ b/src/public/app/widgets/type_widgets/options/appearance/electron_integration.ts @@ -32,7 +32,7 @@ const TPL = `
- + `; From 495a394d79870a95fb94d2fd9e80895c78557e2b Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Mon, 3 Mar 2025 17:50:59 +0200 Subject: [PATCH 4/7] style(next)/search in note: remove the italic font style from the match counters --- src/public/stylesheets/theme-next/notes/text.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/stylesheets/theme-next/notes/text.css b/src/public/stylesheets/theme-next/notes/text.css index ac6002a8c..8f54af5c9 100644 --- a/src/public/stylesheets/theme-next/notes/text.css +++ b/src/public/stylesheets/theme-next/notes/text.css @@ -146,7 +146,7 @@ html .note-detail-editable-text :not(figure, .include-note, hr):first-child { padding-top: 0; } -div.find-replace-widget div.find-widget-found-wrapper { +div.find-replace-widget div.find-widget-found-wrapper > span { min-width: 50px; font-style: normal; font-weight: normal; From 4d6e1152083364250f3b2f6745aa1b6f983dcc8f Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Mon, 3 Mar 2025 18:04:21 +0200 Subject: [PATCH 5/7] style(next)/attribute detail dialog: tweak input labels --- src/public/stylesheets/theme-next/ribbon.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/public/stylesheets/theme-next/ribbon.css b/src/public/stylesheets/theme-next/ribbon.css index e0187a25a..a2f65bce2 100644 --- a/src/public/stylesheets/theme-next/ribbon.css +++ b/src/public/stylesheets/theme-next/ribbon.css @@ -78,4 +78,15 @@ div.editability-dropdown a.dropdown-item { min-width: 0; padding: 4px 10px !important; font-size: .8em; +} + +/* + * Attribute detail dialog + */ + +/* Labels */ +.attr-edit-table th { + padding-right: 12px; + font-weight: normal; + white-space: nowrap; } \ No newline at end of file From 605d99a7e8f20af6dcfdf363b5ba2e2da6bef519 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Mon, 3 Mar 2025 18:17:13 +0200 Subject: [PATCH 6/7] style(next): horizontal toolbar layout tweaks --- src/public/stylesheets/theme-next/shell.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/stylesheets/theme-next/shell.css b/src/public/stylesheets/theme-next/shell.css index 8caae2685..34242ab88 100644 --- a/src/public/stylesheets/theme-next/shell.css +++ b/src/public/stylesheets/theme-next/shell.css @@ -77,7 +77,7 @@ body.background-effects.platform-win32.layout-vertical #vertical-main-container /* #endregion */ /* Matches when the left pane is collapsed */ -:has(#left-pane.hidden-int) { +:has(.layout-vertical #left-pane.hidden-int) { --center-pane-border-radius: 0; --tab-first-item-horiz-offset: 5px; } From 741a4af570a384adbaf6a770baab6bb40832a42b Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 3 Mar 2025 20:00:52 +0200 Subject: [PATCH 7/7] fix(build): an argument was not provided --- src/services/sql.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/sql.ts b/src/services/sql.ts index 87d3df936..b39cbe1ad 100644 --- a/src/services/sql.ts +++ b/src/services/sql.ts @@ -30,7 +30,7 @@ function buildIntegrationTestDatabase(dbPath?: string) { return new Database(dbBuffer); } -function rebuildIntegrationTestDatabase(dbPath: string) { +function rebuildIntegrationTestDatabase(dbPath?: string) { if (dbConnection) { dbConnection.close(); }