-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Add Flat LAF & IntelliJ themes support capability in JMeter #6312
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
base: master
Are you sure you want to change the base?
Changes from all commits
bfcfa92
6cb22ec
5878437
8eb3438
2df1757
db05dce
3a17d4b
4adc6b6
9b3e906
d3c4898
2f128aa
dbee35a
a0989c9
c99be85
6903896
726ddc5
b78d94d
f826055
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -43,7 +43,7 @@ dependencies { | |
|
|
||
| api("bsf:bsf:2.4.0") | ||
| api("cglib:cglib-nodep:3.3.0") | ||
| api("com.fifesoft:rsyntaxtextarea:3.6.2") | ||
| api("com.fifesoft:rsyntaxtextarea:4.0.1") | ||
| api("com.github.ben-manes.caffeine:caffeine:3.2.3") | ||
| api("com.github.weisj:darklaf-core:3.1.1") | ||
| api("com.github.weisj:darklaf-extensions-rsyntaxarea:0.4.1") | ||
|
|
@@ -146,5 +146,17 @@ dependencies { | |
| api("xalan:serializer:2.7.3") | ||
| api("xalan:xalan:2.7.3") | ||
| api("xml-apis:xml-apis:1.4.01") | ||
| //FlatLaf: https://www.formdev.com/flatlaf/native-libraries/#gradle | ||
| val flatlafVersion = "3.7.2" | ||
| api("com.formdev:flatlaf:${flatlafVersion}" ) | ||
| api("com.formdev:flatlaf:${flatlafVersion}:linux-x86_64@so") | ||
| api("com.formdev:flatlaf:${flatlafVersion}:macos-x86_64@dylib") | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The native library for |
||
| api("com.formdev:flatlaf:${flatlafVersion}:windows-x86_64@dll") | ||
| api("com.formdev:flatlaf-intellij-themes:${flatlafVersion}") | ||
| api("com.formdev:flatlaf-extras:${flatlafVersion}") | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The FlatLaf Extras seems to be not used by this PR and could be removed IMO. |
||
| api("com.formdev:flatlaf-fonts-inter:4.1") | ||
| api("com.formdev:flatlaf-fonts-jetbrains-mono:2.304") | ||
| api("com.formdev:flatlaf-fonts-roboto:2.137") | ||
| api("com.formdev:flatlaf-fonts-roboto-mono:3.000") | ||
|
Comment on lines
+157
to
+160
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The FlatLaf fonts seems to be not used by this PR and could be removed IMO. |
||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've filed JFormDesigner/FlatLaf#1146 to request a proper platform (BOM) from FlatLaf
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder what this block would look like with a BOM from FlatLaf?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There would be one
api(platform("com.formdev:flatlaf-bom:2.21.2")), and the rest would be without versions likeapi("com.formdev:flatlaf")There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The idea is that
com.formdev:flatlafcould include contraint onflatlaf-bom). That would enable automatic version alignment in case one of the artifacts comes with a newer version (e.g. updated via transitive).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A BOM for FlatLaf 3.7.2 is now published to Maven Central:
https://repo1.maven.org/maven2/com/formdev/flatlaf-bom/3.7.2/