Browse Source

Update roadmap link

Tienson Qin 6 days ago
parent
commit
547e86ab4d
2 changed files with 8 additions and 10 deletions
  1. 3 3
      README.md
  2. 5 7
      src/main/frontend/components/onboarding.cljs

+ 3 - 3
README.md

@@ -14,7 +14,7 @@
     <a href="https://logseq.com">Home Page</a> |
     <a href="https://blog.logseq.com/">Blog</a> |
     <a href="https://docs.logseq.com/">Documentation</a> |
-    <a href="https://trello.com/b/8txSM12G/roadmap">Roadmap</a>
+    <a href="https://discuss.logseq.com/t/logseq-product-roadmap/34267">Roadmap</a>
 </div>
 <br></br>
 
@@ -109,10 +109,10 @@ That's it! You can now enjoy the benefits of using Logseq to streamline your wor
    ```bash
    # Download and run the installer
    curl -fsSL https://raw.githubusercontent.com/logseq/logseq/master/scripts/install-linux.sh | bash
-   
+
    # Or install a specific version
    curl -fsSL https://raw.githubusercontent.com/logseq/logseq/master/scripts/install-linux.sh | bash -s -- 0.10.14
-   
+
    # For user-specific installation (no root required)
    curl -fsSL https://raw.githubusercontent.com/logseq/logseq/master/scripts/install-linux.sh | bash -s -- --user
    ```

+ 5 - 7
src/main/frontend/components/onboarding.cljs

@@ -1,7 +1,7 @@
 (ns frontend.components.onboarding
   (:require [frontend.context.i18n :refer [t]]
-            [frontend.ui :as ui]
-            [frontend.state :as state]))
+            [frontend.state :as state]
+            [frontend.ui :as ui]))
 
 (defn help
   []
@@ -26,7 +26,7 @@
                       [discourse-with-icon "https://discuss.logseq.com"]]}
 
           {:title (t :help/title-development)
-           :children [[(t :help/roadmap) "https://trello.com/b/8txSM12G/roadmap"]
+           :children [[(t :help/roadmap) "https://discuss.logseq.com/t/logseq-product-roadmap/34267"]
                       [(t :help/bug) "https://github.com/logseq/logseq/issues/new?labels=from:in-app&template=bug_report.yaml"]
                       [(t :help/feature) "https://discuss.logseq.com/c/feedback/feature-requests/"]
                       [(t :help/changelog) "https://docs.logseq.com/#/page/changelog"]]}
@@ -38,8 +38,6 @@
            :children [[(t :help/privacy) "https://blog.logseq.com/privacy-policy/"]
                       [(t :help/terms) "https://blog.logseq.com/terms/"]]}]]
 
-
-
      (map (fn [sublist]
             [[:p.mt-4.mb-1 [:b (:title sublist)]]
              [:ul
@@ -48,5 +46,5 @@
                       (if href
                         [:a {:href href :target "_blank"} title]
                         title)])
-                (:children sublist))]])
-       list))])
+                   (:children sublist))]])
+          list))])