Skip to content
Open
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
59b250f
Initial work on quilt support
anonymous123-code Mar 27, 2023
fcdc9d6
Gradle template fixes
anonymous123-code Mar 27, 2023
a6ebe7b
Properly add Quilt to Facet editor
anonymous123-code Mar 27, 2023
f52bf80
Add Templates to template editor
anonymous123-code Mar 27, 2023
4f48c2f
Fix generated qmj
anonymous123-code Mar 27, 2023
5810f9a
Dont generate client Entry Point on Server-Only mods
anonymous123-code Mar 27, 2023
d8e7fd2
Fix environment information in QMJ
anonymous123-code Mar 27, 2023
3fa28cf
Fix entrypoint name detected as name listener
anonymous123-code Mar 27, 2023
be2ecc5
QMJ template fix: use artifact id in mod icon path
anonymous123-code Mar 28, 2023
76f9ac1
Temp fix: remove gradle wrapper step to avoid sync and wrapper runnin…
anonymous123-code Mar 28, 2023
2a958a3
Fix: metadata is now properly filled
anonymous123-code Mar 28, 2023
76a1ad2
Fix formatting
anonymous123-code Mar 28, 2023
66953fe
Forgot some licenses
anonymous123-code Mar 28, 2023
93dde67
Some more formatting
anonymous123-code Mar 28, 2023
cf06e2f
Merge branch 'minecraft-dev:dev' into quilt
anonymous123-code Apr 13, 2023
bf81f89
Fix for https://github.com/QuiltMC/update-quilt-meta/issues/9
anonymous123-code Apr 13, 2023
9765754
Readd gradle wrapper step as it seems to be fixed since the merge
anonymous123-code Apr 18, 2023
df4142f
Revert "Fix for https://github.com/QuiltMC/update-quilt-meta/issues/9…
anonymous123-code Apr 18, 2023
e0b69e4
Merge remote-tracking branch 'super/dev' into quilt
anonymous123-code Apr 18, 2023
62651ed
Add Standard Library selector
anonymous123-code Apr 19, 2023
f4c1bab
Properly store changes to the authors input
anonymous123-code Apr 19, 2023
fe0a0a6
Refactor: Move row init inside init blocks
anonymous123-code Apr 19, 2023
00ef5a9
Refactor: Move row init inside init blocks
anonymous123-code Apr 20, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Refactor: Move row init inside init blocks
  • Loading branch information
anonymous123-code committed Apr 19, 2023
commit fe0a0a62816c69dd672bd1354e567313f40c7b9d
11 changes: 6 additions & 5 deletions src/main/kotlin/platform/quilt/creator/ui-steps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -251,12 +251,13 @@ class QuiltStandardLibrariesStep(
row("Standard Library:") {
segmentedButton(listOf("QSL", "QFAPI", "QFAPI/deprecated FAPI", "None")) { it }
.bind(apiNameProperty)
}.label("QSL is not yet supported").let { cell ->
cell.visible(apiNameProperty.transform { apiName == "QSL" }.get())
apiNameProperty.transform { apiName == "QSL" }.afterChange { cell.visible(it) }
cell.component.foreground = JBColor.YELLOW
}

label("QSL is not yet supported").let { cell ->
cell.visible(apiNameProperty.transform { apiName == "QSL" }.get())
apiNameProperty.transform { apiName == "QSL" }.afterChange { cell.visible(it) }
cell.component.foreground = JBColor.YELLOW
}
}
row("Library Version: ") {
val comboBox = cell(
VersionChainComboBox(getVersionsList(QuiltVersionChainStep.MC_VERSION_PROPERTY.get()))
Expand Down