reveal

Docs: https://vlaaad.github.io/reveal/ Source: https://github.com/vlaaad/reveal
vlaaad 2020-11-14T13:00:05.210Z

Hi there! I released 1.1.164 with 2 minor improvements for line charts: their dots are now a bit smaller (so it's easier to see a line with a lot of data points), and now they can be used more reliably in reactive views (i.e. there is now a workaround for javafx bug that breaks line charts when the amount of data points changes).

2🎉
mmer 2020-11-14T19:06:32.212200Z

Hi @vlaaad, I am struggling to set up cursive to work with reveal. When trying to work with cursive I am getting the following: Unknown alias key: :ns-default when I include the alias at the start of you document. What might I be doing wrong?

vlaaad 2020-11-14T19:09:38.212400Z

Hi! Cursive probably still doesn't support -X

vlaaad 2020-11-14T19:12:04.212600Z

Use -m style, e.g. instead of :ns-default and :exec-fn use :main-opts ["-m" "vlaaad.reveal" "repl"]

vlaaad 2020-11-14T19:12:33.212800Z

I actually do this myself: https://github.com/vlaaad/reveal/blob/master/deps.edn#L8

mmer 2020-11-14T19:16:08.213100Z

Then do I follow the instructions for a local repl as per the docs

mmer 2020-11-14T19:19:06.213300Z

Thanks that worked - just needed to add the extra deps part.

seancorfield 2020-11-14T19:28:29.213500Z

@mmer Sounds like you have an older version of the Clojure CLI?

seancorfield 2020-11-14T19:28:49.213700Z

You need at least 1.10.1.697 for -X to work. 1.10.1.727 is the current version.

mmer 2020-11-14T19:29:06.213900Z

Thanks I did wonder if that was the case.