Eugene Ryzhikov

Results 43 comments of Eugene Ryzhikov

This is pretty similar to what I had to implement within the app I'm working on. Addition of Title API to styles would make it no-brainer. Title colors and horizontal...

@meowgorithm Please take a look at related PR #97. Hopefully, with few iterations, this API can become a part of the library

Once the new API is agreed upon and stable, I will also update the documentation

I was under impression that SceneBuilder is already able to import 3rd-party custom controls with Library Manager.

As and idea... in ControlsFX we use Transifex to automate translation process. See https://controlsfx.github.io/translations/transifex/ for more info.

There should be no JavaFX dependencies added manually. They should only be described in the `javafx` section like: ``` javafx { version = '14' modules = [ 'javafx.controls', 'javafx.fxml' ]...

If you take a look at the [source code ](https://github.com/pkkannStation/Andraligo-upload-tool/blob/a2e18466baf8accf7e20ce601e795b740220b168/lib/ControlsFX/controlsfx%20source/controlsfx/src/main/java/org/controlsfx/dialog/CommandLinksDialog.java#L60), you will see that the first 3 constructors actually create `CommandLinksButonType` using custom `ButtonType`.

Github's projects/milestones might help I think. Check this out https://help.github.com/en/github/managing-your-work-on-github/about-milestoneshttps://help.github.com/en/github/managing-your-work-on-github/viewing-your-milestones-progress Also then most important changes can be dumped into a release notes for specific release right on the project page...

Agree - cleanup is in order :) I would also suggest to follow the [GitFlow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow). `Master` branch will be locked and designated for releases, `develop` - for current development line,...

Ah, I did not know release automation was there already. Was just thinking we can designate one branch (develop) for current line of development, so all the PRs will go...