Alexandre Bury

Results 285 comments of Alexandre Bury

Hi, and thanks for the report! Looks like it's not possible right now, but that's certainly something we want to support!

With the latest commit, there is now an `enabled` state for menu items. Tell me if it solves your issue!

Yeah it's not easy to combine git dependencies with dependencies from crates.io, since cargo isn't sure that they are compatible. I _think_ if you give a version to cursive in...

I suppose indeed, publishing a new version of `cursive_table_view` compatible with cursive 0.16 may have fixed the issue.

Hi, and thanks for the report! Indeed, the current event loop always runs at ~30Hz to check for callbacks or events. If nothing happens, it shouldn't take too much cpu...

I've been eyeing yaml lately, as a more readable JSON. Here is an example file describing a basic application: ``` yaml definitions: - first: Dialog: child: TextView: text: > This...

Templating languages are usually meant to modify a legacy language (mostly HTML) which doesn't support variables, by "reverse-embedding" a separate language (It looks like an external language in embedded in...

Hmm, the most painful point with the layout format right now is lists of views (select view, linearlayout, ...) with variable size. It might be easier to create those from...

Just leaving some notes for later: I initially feared registering the view names would have to be done manually with a big list of all the supported views, but [inventory](https://docs.rs/inventory/0.1.10/inventory/)...

I think at first I'll focus on working with a config blob, not necessarily with a specific serialization format. TOML is pretty bad for nested data, but ideally it'll still...