Commit Graph

13437 Commits

Author SHA1 Message Date
rcmerci
16208a877e test(rtc): entity-datoms=>ops 2023-11-16 22:15:43 +08:00
Andelf
be03ddc28f chore: rm wrong debug print 2023-11-16 22:07:53 +08:00
Tienson Qin
ad88d873a5 fix: don't reload db worker 2023-11-16 21:57:06 +08:00
Tienson Qin
0226275647 fix: view-box instead of viewbox 2023-11-16 21:34:10 +08:00
Tienson Qin
48b610a9f0 fix: tag autocomplete if its name has any space 2023-11-16 21:32:01 +08:00
Andelf
dc13a26756 fixup! enhance(db): use wasm-based sqlite storage 2023-11-16 21:15:25 +08:00
Andelf
60159eba87 enhance(db): use wasm-based sqlite storage 2023-11-16 21:15:25 +08:00
Tienson Qin
563409bd93 chore: remove unused fn 2023-11-16 20:13:09 +08:00
Tienson Qin
1c5abc7bcc Merge branch 'master' into feat/db 2023-11-16 20:08:33 +08:00
Tienson Qin
71992cf1cf fix: lint warning 2023-11-16 20:03:55 +08:00
Tienson Qin
d0d0a825ea fix: remove user-letter icon for now since it's distracted 2023-11-16 19:30:04 +08:00
Tienson Qin
215c1f2f92 enhance: backspace to exit search filter mode 2023-11-16 19:19:19 +08:00
Tienson Qin
ba82d990a8 fix: graph icon 2023-11-16 19:03:02 +08:00
rcmerci
8bc6d8d9a0 enhance(rtc): split local-block-ops->remote-ops
also fix <download-graph
2023-11-16 18:26:06 +08:00
Tienson Qin
09ad27b0ff enhance: support inline tags in block content 2023-11-16 18:15:45 +08:00
Tienson Qin
6277f76557 fix: open search in right sidebar doesn't work when input is empty
Fixes LOG-2923
2023-11-16 17:44:09 +08:00
Tienson Qin
f46c471d4a fix: close button for tags
Disable tag background for now
2023-11-16 17:10:35 +08:00
Tienson Qin
98c0fe389e chore: remove bug report from menu since it's already in help 2023-11-16 15:50:07 +08:00
Tienson Qin
5afb1619df Merge branch 'master' into feat/db 2023-11-16 15:45:13 +08:00
Tienson Qin
887e637d3a enhance: show other search results when there's slash in input 2023-11-16 15:16:10 +08:00
Tienson Qin
b1622d2411 fix: cmd+c to copy block ref 2023-11-16 15:16:10 +08:00
Tienson Qin
15ed50e357 enhance: remove the need to add a space to trigger search command 2023-11-16 15:16:10 +08:00
Tienson Qin
103f253882 fix: typo 2023-11-16 12:46:40 +08:00
Gabriel Horner
d43fb23ef0 enhance: allow CLI and github action to set color accent 2023-11-15 16:37:03 -05:00
Gabriel Horner
c65958f5ec fix: duplicate closed value validation
wasn't working for hidden block or page uuid cases
2023-11-15 15:15:49 -05:00
Gabriel Horner
b359694c4b fix: multiple fixes for property validation
- couldn't use :default block property values
- couldn't add new closed number value
- couldn't select existing :page or :date closed values
- editor/CLI validation wasn't working - see failing db-graph-test job
- update schema for closed-value
Part of LOG-2871. Also fixed typo in ui.cljs
2023-11-15 14:55:57 -05:00
Tienson Qin
443eb3f2b8 fix: closed value validation
A closed value must be a UUID and exists in the predefined schema
values from its property.

Related to LOG-2871.
2023-11-15 22:58:05 +08:00
Tienson Qin
450b5d39a3 fix: deleted enum choice effects existing blocks
Fixes LOG-2872
2023-11-15 21:38:44 +08:00
Tienson Qin
c9d01bc333 fix: no need to set :block/left for closed value blocks
related to LOG-2871
2023-11-15 21:29:51 +08:00
Tienson Qin
ac41115521 fix: only the icon displays in the block for a closed value
related to LOG-2871
2023-11-15 20:52:38 +08:00
Tienson Qin
b36d025097 Merge branch 'master' into feat/db 2023-11-15 20:16:40 +08:00
Tienson Qin
f67adcd4d5 fix: cut paste blocks 2023-11-15 20:01:24 +08:00
Tienson Qin
fc450f5398 fix: remove title handling 2023-11-15 16:06:28 +08:00
Tienson Qin
e2cb7f1b34 fix: send parameters to ui/button :button-props
Fixes LOG-2920
2023-11-15 16:06:28 +08:00
Tienson Qin
02e9f8eaa7 fix: add assets support on memory-fs 2023-11-15 16:05:04 +08:00
Gabriel Horner
80ac797c8a fix: multiple choice not working due to #10132
looks like there's a breaking change with ui/button's options
2023-11-14 16:56:08 -05:00
Gabriel Horner
86eb1b394d fix: update schema for latest changes to closed values
part of LOG-2871
2023-11-14 16:08:03 -05:00
Gabriel Horner
5ed5b72b72 enhance ux with tippy explain property locking
fixes LOG-2900
2023-11-14 10:29:02 -05:00
Tienson Qin
3000d21158 fix: class name in the create item 2023-11-14 21:15:42 +08:00
Tienson Qin
344e919c4e fix: input # in cmdk to create a class 2023-11-14 21:13:07 +08:00
Tienson Qin
ee3442a44b Merge branch 'master' into feat/db 2023-11-14 20:40:36 +08:00
Tienson Qin
6a47648c6c Replace enum type with available choices (#10438)
* Add type schema for enum values

* Refactor: closed values instead of enum to limit values

There's no need to add the enum type, we just want to limit the
values.

* feat: :page type supports closed values

* fix: can't set property values for text/number types

* fix: don't trigger on-chosen when unmounting any select component

* fix: can't apply both page classes limitation and closed values

* fix: merge conflicts

* fix: ui not refresh when changing closed value

* fix: can't set icon for closed value
2023-11-14 18:48:34 +08:00
Andelf
583d611259 fix(fs): missing mkdir-recur! for nfs and memory-fs 2023-11-14 17:23:12 +08:00
Tienson Qin
9917f06b89 fix: cloudflare branch 2023-11-14 15:35:48 +08:00
Tienson Qin
4fd46a2990 Merge pull request #10132 from logseq/feat/cmdk
feat: new cmdk
2023-11-14 15:28:10 +08:00
Tienson Qin
7dc4b24d64 rename workflow 2023-11-14 15:25:58 +08:00
Tienson Qin
0e1d7daaf2 fix: update workflow 2023-11-14 15:16:30 +08:00
Tienson Qin
a035be233e add stage deployment for the master branch 2023-11-14 15:12:57 +08:00
Tienson Qin
10a025e8ef fix: whiteboard selected button bg 2023-11-14 14:55:07 +08:00
charlie
5023316274 Merge branch 'feat/cmdk' of https://github.com/logseq/logseq into feat/cmdk 2023-11-14 14:44:20 +08:00