mirror of
https://github.com/logseq/logseq.git
synced 2026-04-24 22:25:01 +00:00
chore: add changelog
also fix minor bug silently failing show command for abnormal graphs
This commit is contained in:
committed by
Gabriel Horner
parent
bf6433ed7a
commit
70855ef033
6
deps/cli/CHANGELOG.md
vendored
Normal file
6
deps/cli/CHANGELOG.md
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
## 0.1.0
|
||||
|
||||
* Initial release!
|
||||
* Provides commands: list, show, search, query, export-edn and help
|
||||
* All commands except search work offline. search and query have options for calling HTTP Server of
|
||||
open desktop Logseq app
|
||||
2
deps/cli/src/logseq/cli/commands/graph.cljs
vendored
2
deps/cli/src/logseq/cli/commands/graph.cljs
vendored
@@ -26,7 +26,7 @@
|
||||
(pprint/print-table
|
||||
(map #(array-map "Name" (first %) "Value" (second %))
|
||||
(cond-> [["Graph directory" graph-dir]
|
||||
["Graph created at" (ms->journal-title (kv-value :logseq.kv/graph-created-at))]
|
||||
["Graph created at" (some-> (kv-value :logseq.kv/graph-created-at) ms->journal-title)]
|
||||
["Graph schema version" (kv-value :logseq.kv/schema-version)]
|
||||
["Graph initial schema version" (kv-value :logseq.kv/graph-initial-schema-version)]]
|
||||
(d/entity @conn :logseq.kv/graph-git-sha)
|
||||
|
||||
Reference in New Issue
Block a user