Skip to content
New issue

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

Extra, merged column for next lanuaches #130

Open
Eccenux opened this issue Jul 16, 2024 · 0 comments
Open

Extra, merged column for next lanuaches #130

Eccenux opened this issue Jul 16, 2024 · 0 comments

Comments

@Eccenux
Copy link

Eccenux commented Jul 16, 2024

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):
screen, showcase

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)");
        }
    }
}

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant