diff --git a/docs/changelog.md b/docs/changelog.md index 0f303b1..bcb9664 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,4 +1,4 @@ -## NEXT +## v4.1 :id=v41 ### Logseq-like query table to view query results diff --git a/src/app.tsx b/src/app.tsx index 7f05ae8..a5d8c77 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -142,6 +142,7 @@ function notifyUser() { logseq.updateSettings({notifications: {newTemplateSyntax: undefined}}) logseq.updateSettings({notifications: {introducedUI: undefined}}) logseq.updateSettings({notifications: {introducedNLPSyntax: undefined}}) + logseq.updateSettings({notifications: {introducedSetCursorPosition: undefined}}) const notifications: {[key: string]: any} = logseq.settings!.notifications as object @@ -151,17 +152,18 @@ function notifyUser() { // Notify only old users if (previousPluginVersion && currentPluginVersion !== previousPluginVersion) { - if (!notifications.introducedSetCursorPosition) { + if (!notifications.introducedQueryTableView) { logseq.UI.showMsg( `[:div [:p [:code "🏛 Full House Templates"]] - [:p [:b "Set cursor position & Core engine changes!"] [:br] - "The new plugin version has introduced lots of stuff. See details " - [:a {:href "https://stdword.github.io/logseq13-full-house-plugin/#/changelog?id=v40"} + [:p [:b "Query table view, Set cursor position and more!"] [:br] + "The new plugin versions have introduced lots of stuff. See details " + [:a {:href "https://stdword.github.io/logseq13-full-house-plugin/#/changelog?id=v41"} + "here"] " and " [:a {:href "https://stdword.github.io/logseq13-full-house-plugin/#/changelog?id=v40"} "here"] "."] ]`, 'info', {timeout: 60000}) - logseq.updateSettings({notifications: {introducedSetCursorPosition: true}}) + logseq.updateSettings({notifications: {introducedQueryTableView: true}}) } }