We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A new column that merges dates: "Next Launch +(possible)".
In most cases it would look something like this (only one date per cell):
On rare occasions where you poll SCM and do periodical builds you would have two dates separated by " • ".
Rough code:
StringBuffer html = new StringBuffer(); for (var lanuch : lanuches) { if (lanuch.hasDate()) { if (html.length() > 0) { html.append(" • "); } html.append(lanuch.getFormattedDate()); if (lanuch instanceOf PossibleLanuch) { html.append(" (possible)"); } } }
No response
I guess I could try to find time if there's not too much change.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What feature do you want to see added?
A new column that merges dates: "Next Launch +(possible)".
In most cases it would look something like this (only one date per cell):
On rare occasions where you poll SCM and do periodical builds you would have two dates separated by " • ".
Rough code:
Upstream changes
No response
Are you interested in contributing this feature?
I guess I could try to find time if there's not too much change.
The text was updated successfully, but these errors were encountered: