Gabriel Horner
6cd3b18ed9
Add missing ns docstrings
2023-07-27 10:51:46 -04:00
Gabriel Horner
7bca841afe
Fix lints again to try to keep branch as green as possible
2023-07-27 10:15:27 -04:00
Tienson Qin
1671f540fb
Move property-edit to file-based.property
...
Also, util.property -> file-based.property.util
2023-07-27 11:47:08 +08:00
Gabriel Horner
4a5dd5bd83
Allow dsl-query tests to run from existing :block/content
...
Generate :file/blocks from content thus allowing more tests to run
under db graph. Also loosened a couple query-dsl tests to pass
with db graphs without sacrificing test accuracy
2023-07-26 16:07:41 -04:00
Gabriel Horner
05fdd179de
fix property type not selected in form's dropdown
2023-07-26 10:25:35 -04:00
Gabriel Horner
2bd7a8d496
Fix querying for multi non-ref vals and single page-ref
...
Also fixed db lint
2023-07-25 17:27:43 -04:00
Gabriel Horner
3f52860cf1
Fix perf issue with property rules for db graphs
...
Use multiple clauses instead as confirmed by perf test.
Using multiple clauses made rule preparation for d/q more complex
so introduced extract-rules
2023-07-25 17:20:17 -04:00
Gabriel Horner
e9fecfa280
Fix property rules for advanced queries with db graphs
...
and provide a rules var just for db graphs.
Also simplify query-dsl db-graph support as query-dsl/parse-query
doesn't need to know about db graphs for how it's used
2023-07-25 13:53:18 -04:00
Gabriel Horner
01ff0e9a16
Save multi value properties as sets
...
Sets are easier to query
2023-07-24 16:56:53 -04:00
Gabriel Horner
0ca7d1a4de
Fix multi-valued properties and enable first property graph test
...
Run db prop test with: DB_GRAPH=1 node static/tests.js -i focus
2023-07-24 16:42:36 -04:00
Gabriel Horner
4920b3a98e
Fix lints and fix graph-parser cljs tests
...
not running due to missing db dep
2023-07-24 14:06:57 -04:00
Gabriel Horner
40237b912f
Remove nonexistent :block/unordered from test
2023-07-24 12:32:08 -04:00
Gabriel Horner
5f91e6cf0f
Merge branch 'master' into feat/db
2023-07-24 12:21:19 -04:00
Gabriel Horner
8836ba7db8
Merge pull request #9907 from logseq/enhance/resource-handling
...
Enhance (dev): 3rd party resource handling
2023-07-24 11:13:26 -04:00
Andelf
219b118c7b
fix(mobile): refer policy of img tag
...
Fix #9860
2023-07-24 22:33:57 +08:00
Gabriel Horner
ba53bf297c
Remove last use of :block/unordered
...
This was coming directly from the block's ast so it was harder to trace
2023-07-24 10:26:02 -04:00
Gabriel Horner
2b90b0462a
Remove explicit :block/unordered that should already be deleted
2023-07-24 10:26:02 -04:00
ROCKTAKEY
ece07dee90
enhance: Add Japanese translation
2023-07-24 09:59:51 -04:00
Konstantinos Kaloutas
3bce831027
remove height rule
2023-07-24 13:35:57 +03:00
Konstantinos Kaloutas
8a668ef04b
Revert "fix blocks' dnd and tests"
...
This reverts commit 36335106b4 .
2023-07-24 13:11:54 +03:00
Konstantinos Kaloutas
bc58b95040
Revert "fix typo"
...
This reverts commit 110cd4a109 .
2023-07-24 13:11:38 +03:00
Konstantinos Kaloutas
da6ee479a2
Revert "fix typo"
...
This reverts commit 8df2bec8e0 .
2023-07-24 13:11:25 +03:00
Konstantinos Kaloutas
a5d2137748
overflow fix
2023-07-24 13:02:46 +03:00
Gabriel Horner
b46959f670
Fix: basic property queries not working
...
{{query (property :foo "bar")}} and {{query (property :foo)}} should now
work
2023-07-21 17:27:03 -04:00
Konstantinos Kaloutas
8df2bec8e0
fix typo
2023-07-21 19:48:46 +03:00
Konstantinos Kaloutas
110cd4a109
fix typo
2023-07-21 19:44:01 +03:00
Konstantinos Kaloutas
36335106b4
fix blocks' dnd and tests
2023-07-21 19:25:29 +03:00
Konstantinos Kaloutas
8e4cb9c7b1
fix mhchem
2023-07-21 10:07:06 -04:00
Konstantinos Kaloutas
7d6aae0c08
handle mhchem
2023-07-21 10:07:06 -04:00
Konstantinos Kaloutas
86d3cad507
handle shepherd.js
2023-07-21 10:07:06 -04:00
Konstantinos Kaloutas
9fd3deb39e
handle reveal.js
2023-07-21 10:07:06 -04:00
ingepettersen
183e153ead
Updated Norwegian translations ( #9905 )
...
* Update Norwegian translation
* Update two strings
* Update Norwegian translation
2023-07-21 09:15:27 -04:00
hasecilu
0aa76fbb26
Translate latest strings
2023-07-21 09:12:12 -04:00
hasecilu
2a0c59f05f
Fix translations based on feedback
2023-07-21 09:12:12 -04:00
hasecilu
41e2722143
Finish Spanish translations.
2023-07-21 09:12:12 -04:00
hasecilu
ded02048b9
Sort and format file with Spanish translations.
...
[why]
Sorting the keys gives the advantage of having strings with same context
together making it easier to have consistency on translations.
[how]
1. Having a .edn file execute:
grep ":" src/resources/dicts/es.edn | grep -v "/" | sort > single_keys
grep ":" src/resources/dicts/es.edn | grep "/" | sort > hierarchical_keys
2. Both files are sorted, now manually merge them into sorted_file. I
decided to left turial keys on top, then single_keys and finally
hierarchical_keys at the end. Check the braces.
3. Execute this script:
#!/bin/bash
while IFS= read -r line; do
if [[ "$line" == *\"* ]]; then
first_quote_index=$(expr index "$line" \")
content_after_quote="${line:$first_quote_index}"
content_before_quote="${line:0:$first_quote_index-1}"
spaces=$(printf '%*s' $((52 - ${#content_before_quote})))
echo "$content_before_quote$spaces\"$content_after_quote"
else
echo "$line"
fi
done <sorted_file >formatted_file
4. Replace the .edn file with the resultant formated_file. Now all
strings start at column 53.
2023-07-21 09:12:12 -04:00
hasecilu
2700b5583e
Add some Spanish translations.
2023-07-21 09:12:12 -04:00
hasecilu
cd9e3fb973
Fix some Spanish translations.
2023-07-21 09:12:12 -04:00
Gabriel Horner
48009adaf9
chore: reuse common helper for stringifying datoms
2023-07-20 18:37:22 -04:00
Gabriel Horner
d7eeea28dd
Add a test that ensures file and db graphs have expected datoms
2023-07-20 18:27:07 -04:00
Tienson Qin
bf848f8664
Set db-graph-enabled? to true for internal testing
2023-07-19 23:29:58 +08:00
Tienson Qin
261b5a6b28
No need to set block ids for db based graphs
2023-07-19 21:46:00 +08:00
Andelf
5cab22187c
chore(release): bump version 0.9.11
0.9.11
2023-07-19 18:44:23 +08:00
Charlie
15a3eec4ad
fix(server): sometimes the API server autostart not work ( #9878 )
2023-07-19 18:29:26 +08:00
Johan Penttinen
7a63c9a89c
feature(android): add android 13 API themed icons ( #9862 )
2023-07-19 18:24:32 +08:00
Tienson Qin
f919dac54b
fix: disable plain-text properties and :: to trigger property editing
2023-07-19 17:53:14 +08:00
Tienson Qin
b32d2caa2d
fix: built in pages don't have client side timestamps
2023-07-19 17:34:04 +08:00
Tienson Qin
7bf5c233ef
fix: typing a block with a new tag name doesn't save the tag
2023-07-19 17:22:52 +08:00
Tienson Qin
c5c253b510
enhance: select auto-complete support dropdown
2023-07-19 15:24:09 +08:00
Tienson Qin
eb35d45d73
Remove :block/properties-text-values for db based graphs
2023-07-19 12:25:11 +08:00