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

Migration from ForgeGradle to RetroFuturaGradle #53

Closed
wants to merge 36 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
58edd99
add mods to build.gradle
WaitingIdly Dec 16, 2022
d1899af
Merge branch 'heads/upstream/master' into roots
WaitingIdly Apr 12, 2023
fa6dc38
add mods to build.gradle again
WaitingIdly Apr 13, 2023
90513ca
add a ResourceLocation bracket handler
WaitingIdly May 5, 2023
adbc862
implement compat
WaitingIdly May 5, 2023
87fc39c
add compat examples
WaitingIdly May 5, 2023
3fd9ea8
disable debug_roots
WaitingIdly May 5, 2023
ad1cd82
consolidate recipe name into AbstractRecipeBuilder
WaitingIdly May 5, 2023
60db5f6
Merge branch 'heads/upstream/master' into roots
WaitingIdly May 5, 2023
11bddcd
Migrate to RFG
Rongmario May 14, 2023
fedac69
RFG tags, fix ThaumicJEI running without Thaumcraft
Rongmario May 14, 2023
57e40fd
Disable javadocs jar for now
Rongmario May 14, 2023
ec5ddef
initial support
Testure May 15, 2023
9e08b4d
Update gradle.properties
Testure May 15, 2023
c5ac25e
Allow changing entry knowledge type
Testure May 15, 2023
9627691
Vazkii pls
Testure May 16, 2023
7c715a9
Use string for orechid recipe
Testure May 16, 2023
6c2d122
Manually provide class for mini flower
Testure May 16, 2023
ac36f57
Fix crafting page crash
Testure May 16, 2023
e106dce
Merge pull request #54 from Testure/flowers
Rongmario May 16, 2023
f457ced
getOreWeightNether for OrechidIgnem's removeByOutput
Rongmario May 16, 2023
a1d5214
Stop firing AspectRegistryEvents
Rongmario May 17, 2023
70df3bb
TextFormatting bracket handler
Rongmario May 17, 2023
b318574
Item rarities
Rongmario May 17, 2023
3a91319
remap false
WaitingIdly May 17, 2023
28c75e1
Merge branch 'heads/upstream/master' into roots
WaitingIdly May 17, 2023
9135d34
Merge pull request #51 from WaitingIdly/roots
Rongmario May 18, 2023
88e2f45
Allow closures for setting item rarities
Rongmario May 18, 2023
7a4d096
It ain't clean, but it still is cleaner than before
Rongmario May 18, 2023
c649694
Allow player starting items to be reloadable
Rongmario May 18, 2023
f9c5ac7
Copy stacks
Rongmario May 18, 2023
aff9183
Migrate to RFG
Rongmario May 14, 2023
3de2ea0
RFG tags, fix ThaumicJEI running without Thaumcraft
Rongmario May 14, 2023
18c6723
Disable javadocs jar for now
Rongmario May 14, 2023
a9f1c48
Botania + Roots (and libs)
Rongmario May 18, 2023
c34d2d9
Merge remote-tracking branch 'origin/rfg' into rfg
Rongmario May 18, 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
Botania + Roots (and libs)
Rongmario committed May 18, 2023
commit a9f1c484b65466ef8c1e014a47c5f93e75e90e79
21 changes: 20 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -154,9 +154,17 @@ dependencies {
}

compileOnly rfg.deobf('curse.maven:baubles-227083:2518667')
if (project.debug_astral.toBoolean() || project.debug_thaum.toBoolean() || project.debug_botania.toBoolean()) {
runtimeOnly rfg.deobf('curse.maven:baubles-227083:2518667')
}

compileOnly rfg.deobf('curse.maven:botania-225643:3330934')
if (project.debug_botania.toBoolean()) {
runtimeOnly rfg.deobf('curse.maven:botania-225643:3330934')
}

compileOnly rfg.deobf('curse.maven:thaumcraft-223628:2629023')
if (project.debug_thaum.toBoolean()) {
runtimeOnly rfg.deobf('curse.maven:baubles-227083:2518667')
runtimeOnly rfg.deobf('curse.maven:thaumcraft-223628:2629023')
runtimeOnly 'curse.maven:thaumic_jei-285492:2705304'
}
@@ -171,6 +179,17 @@ dependencies {
runtimeOnly rfg.deobf('curse.maven:immersive_engineering-231951:2974106')
}

compileOnly rfg.deobf('curse.maven:patchouli-306770:3162874')
compileOnly rfg.deobf('curse.maven:mystical_lib-277064:3483816')
compileOnly rfg.deobf('curse.maven:mystical_world-282940:3460961')
compileOnly rfg.deobf('curse.maven:roots-246183:3905074')
if (project.debug_roots.toBoolean()) {
runtimeOnly rfg.deobf('curse.maven:patchouli-306770:3162874')
runtimeOnly rfg.deobf('curse.maven:mystical_lib-277064:3483816')
runtimeOnly rfg.deobf('curse.maven:mystical_world-282940:3460961')
runtimeOnly rfg.deobf('curse.maven:roots-246183:3905074')
}

compileOnly 'slimeknights.mantle:Mantle:1.12-1.3.3.55'
compileOnly 'slimeknights:TConstruct:1.12.2-2.13.0.190'
compileOnly rfg.deobf('curse.maven:constructs-armory-287683:3174535')