https://www.dendron.so/ logo
Join Discord
Powered by
# dev
  • k

    kevins8

    11/26/2020, 11:07 PM
    you could technically put the config into a
    configuration
    folder manually today, the only thing is that adding a vault, you would have to specify
    ../vault
    because today, vaults are relative to the
    dendron.code-workspace
    file location instead of the
    workspace root
    (which moving forward, by default, will be
    ../
    from the
    dendron.code-workspace
    file)
  • k

    Kiran

    11/27/2020, 4:25 AM
    oh awesome, got it! It seems like as long as I handle the git init's properly, even today I'll be very close to what you've got there in the 2nd picture.
  • k

    Kiran

    11/27/2020, 4:25 AM
    Thanks for explaining that for me 😛
  • k

    Kiran

    11/27/2020, 4:31 AM
    uh oh ... 😄 https://www.dendron.so/notes/45cfb9f2-46cf-4f67-a41e-834818fbd06e.html#moving-notes-between-vaults
  • k

    Kiran

    11/27/2020, 4:32 AM
    🤞 that the relnotes I'm about to look at has multi-vault note refactoring
  • k

    Kiran

    11/27/2020, 4:36 AM
    Ah, it worked like I hoped it would though - could just cut/paste the files and Dendron picked it up - sweet!
  • b

    brimwats

    11/27/2020, 10:35 AM
    does this allow for folders/subfolders within one vault?
  • k

    kevins8

    11/27/2020, 3:48 PM
    your markdown files are still expected to be in a flat folder, you can now have multiple of such folders spread across your operating system. we'll also be adding an asset vault soon which will allow you to have subfolders. the asset vault will be for non-markdown files like pdfs and images that can be referenced from within your vaults
  • b

    brimwats

    11/27/2020, 4:36 PM
    thanks! I will continue to burn the subfolder torch 😆 but really enjoying using Dendron on individual projects
  • u

    user

    11/27/2020, 11:52 PM
    just opened my first PR on the project 🙂 #386
  • k

    kevins8

    11/28/2020, 1:55 AM
    just merged 🌱 this will come out in this sunday's release. thanks for the contribution 🙂
  • k

    kevins8

    11/28/2020, 1:55 AM
    also, congrats on becoming a horticulturalist https://dendron.so/notes/7c00d606-7b75-4d28-b563-d75f33f8e0d7.html#horticulturalist
  • u

    user

    11/28/2020, 2:05 AM
    you're too kind. thank you!
  • k

    kevins8

    11/30/2020, 5:04 PM
    @User the ui changes are integrated 😄 you'll notice a few changes from the original PR: - vaults section is gone (i figure since users can't currently edit it to just hide it for now) - site hierarchies became a field array (this is actually meant to be edited) - removed the link (vscode won't let the link open inside an iframe, still figuring out a workaround)
  • t

    tsnieman

    11/30/2020, 6:31 PM
    🙌 yessssss! i can't wait to try it. does this mean I'm officially a horticulturalist? 👨‍🌾
  • t

    tsnieman

    11/30/2020, 6:32 PM
    Also, did you find Chakra easy enough to work with? Good experience? I appreciate you being so open to that suggestion.
  • k

    kevins8

    11/30/2020, 6:43 PM
    yep, sure does 🙂 i like chakra. it definitely is more composable than antd and the community is a lot more responsive!
  • k

    kevins8

    11/30/2020, 6:46 PM
    fyi, i've updated the next-server onboarding docs to explain how to hook it up with the dendron local server when developing: https://dendron.so/notes/7cdd9a74-8b8f-4564-906b-c963bed34273.html
  • k

    kevins8

    11/30/2020, 6:46 PM
    if you want to test it out, our next major UI task is creating a graphical schema builder 😇 https://github.com/dendronhq/dendron/issues/328
  • t

    tsnieman

    11/30/2020, 7:09 PM
    I'll take a look at those soon! I'll also touch up the `+`/`-` buttons you added in the Dendron Configuration screen when I get a moment. Thanks @User 🧑‍🌾
  • k

    kevins8

    11/30/2020, 7:26 PM
    i think it'll be obvious to folks who is responsible for what ui changes 😅
  • t

    tsnieman

    12/01/2020, 6:13 AM
    Looks like the web UI has some other roughness: - ❓ Several placeholders are missing - 🐛 The
    Clear changes
    button does not clear changes (I suspect the plumbing isn't necessarily reactive though it's a complete guess) - 💄 The vertical rhythm is wrong (particularly with the
    Site Config
    heading being right up against the input box itself) I'll look into these when I tweak those buttons too 🧑‍🌾
  • b

    Bassmann

    12/01/2020, 6:33 AM
    How would I access this new UI?
  • t

    tsnieman

    12/01/2020, 6:35 AM
    the
    Dendron: Configure
    command should pop it open for you. I haven't tried to actually use the UI to change any settings yet, so let us know if you find something wonky.
  • f

    fudo

    12/01/2020, 6:50 AM
    Could it be a possibilty to split it into open ui and open json?
  • t

    tsnieman

    12/01/2020, 3:53 PM
    The configuration file is YAML, not JSON --
    Dendron: Configure (yaml)
    will let you configure the YAML in your editor though.
  • f

    fudo

    12/01/2020, 4:30 PM
    I blame my usage of vscode xD their the config is json xD
  • u

    user

    12/05/2020, 6:42 PM
    I'm having errors running Dendron: Doctor on some newly imported markdown files. I could open a PR but if someone could help me read the log file, I might be able to fix it myself https://gist.github.com/doingandlearning/540f09a0dcda2aedcb6f0fea5e41d598
  • k

    kevins8

    12/05/2020, 6:57 PM
    dendron has a file watcher (vaultwatcher) that runs in the background to see if new files are added outside of Dendron and index it accordingly. it's supposed to ignore this when dendron itself adds new files but we weren't doing that properly for the doctor command which means dendron is trying to index the same file twice. this is being fixed in this weeks release. i'm going to message you the link to an early build so you can test it out and see if you still see the same issue
  • u

    user

    12/05/2020, 6:58 PM
    👍 Thanks Kevin!
1...313233...108Latest