- Add unicode handling in flow components in
AbstractTextComponent which allows StringInput
to process unicode given from jline.
- This add basic non-english character support
for input.
- Backport #1115
- Fixes#1116
- Posix short style is expected to have only single
dash and letters so use this style to come up better
separation between options and arguments.
- Backport #1077
- Fixes#1078
- We're mostly getting issues with macos runners
where -march=compatibility looks to work better
but is not automatically set depending which
cpu arch is in use.
- Backport #1064
- In ListView and MenuView fix how styling for
background and foreground are used.
- In Catalog app fix same issue in ScenarioListCell
- Backport #1063
- Fixes#1066
- In TerminalUI a display call may be called from
multiple threads, while only seen to happen on
windows, should be synchronized.
- Backport #1039
- Fixes#1040
- Add ScenarioContext which knows about View and start/stop
runnable methods.
- Change Catalog to rely on ScenarioContext and call
start/stop on an appropriate moment.
- Still keep Scenario.build() around so that we have time
to refactor in favour of ScenarioContext.buildContext()
or whatever build() method in it should be.
- Fixes#1004
- Fix run detection so that @ has to be first character in a first
argument and it also has additional content, like @path-to-file.
- This fixes issue where `--arg @` would blow up as an normal
option argument.
- Fixes#996
- Polish a lot of things
- Do updates/redraw internally with eventloop as it'd be super
inconvenient asking user to handle this externally
- Rewrite sample to be more unified for various cases
- Set eventloop from ViewComponent
- Relates #995
- Modifies ViewComponent with changed api's so that
it can be executed with a thread allowing caller
not to block.
- Add ViewComponentBuilder concept and create is as
a bean similar to TerminalUIBuilder.
- Relates #997
- Move spinner frame calculation to item itself so that
- Remove spinnerFrame from state and add
start/update times
- view don't have hard dependency to it, as we'd
need its interval
- Change spinner to run only when view is running
- Relates #995
- Exposing eventloop if user need to interact with it
- Add api/feature to set used view rect expand to
full terminal width
- Add plain ProgressView samples
- Relates #995
- Fixes#997
- Provides a basic feature set for ProgressView.
- Progress can have a set of items which are driven
by function style factory interface.
- New class TextCell which is a base of progress items.
- Not yet fully working and further changes, samples, docs
will come in other commits.
- Relates #995