Jump to content

Recommended Posts

Posted

Forge Version: 3.3.7.135

Minecraft Version: 1.2.5

Dependencies: None

Downloads:

Changlog:

Minecraft Forge 3.3.7 Changelog:
============================================================================
Updated to FML #133

MAJOR: Droped ModLoader as a dependancy, ModLoader functionality is bundled with FML now, which is bundled with Forge. You only need to install Forge, nothing else.
  For the end-user, this means you need to install nothing else into your minecraft.jar
  For MCP coders, this means both minecraft.jar and minecraft_server.jar need to be 100% clean.

MAJOR: Built in support for HD textures up to 128x via Forge ModLoader. For more features, or higher resolutions, use Optifine

BugFix: Added missing disconnect reson to disconnect event.
BugFix: Fixed AStyle descrepancies between Linux and Windows that could cause patch files to fuxx
BugFix: All distrabutions now come with all associated license files.
BugFix: Fixed getCartClassForItem/getCartTypeFromItem returning null improperly.

Misc: Cleaned up render related hooks for Optifine compatibility

New: Added logo file and information on Forge for FML's Mod List page.
New: Bundled CodecIBMX from PaulsCode, and related license info. To support AudioMod functionality by default.
New: Leafe/tree hooks to allow modders more control over tree related world generation.
New: Ore generation hook for moders to play nicer with generating ores.
New: All Item/Blocks are now ITextureProviders, and have associated functions, to help modders have cleaner code.
New: New Ore Dictionary recipies, to allow modders simpler access to ore dictionary, and simpler usage on the end user's side. Allows for mix and match of ores in the same recipe. 
  IOreHandler should be used in only special cases from now on.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

quite possibly the worst update for forge ever.  Why?  Because it made my brain explode.  CURSE YOU FORGE AND YOUR BRAIN EXPLODING POWER!

If you get fired from a tuna company, did you just get canned by tuna?

Posted

1) Dont install using MCPatcher

2) Check for conflicting mods, for most cases, Forge will be the only mod in the jar.

3) Post support questions in the support forums, not in the release thread.

This thread is for things related to this release.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

  • 3 weeks later...
Posted

Does this mean, all I required is Forge in my Minecraft in order to work. Modloader does not required even though there are others mod which is relying on it now?

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • This is the last line before the crash: [ebwizardry]: Synchronising spell emitters for PixelTraveler But I have no idea what this means
    • What in particular? I barely used that mod this time around, and it's never been a problem in the past.
    • Im trying to build my mod using shade since i use the luaj library however i keep getting this error Reason: Task ':reobfJar' uses this output of task ':shadowJar' without declaring an explicit or implicit dependency. This can lead to incorrect results being produced, depending on what order the tasks are executed. So i try adding reobfJar.dependsOn shadowJar  Could not get unknown property 'reobfJar' for object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler. my gradle file plugins { id 'eclipse' id 'idea' id 'maven-publish' id 'net.minecraftforge.gradle' version '[6.0,6.2)' id 'com.github.johnrengelman.shadow' version '7.1.2' id 'org.spongepowered.mixin' version '0.7.+' } apply plugin: 'net.minecraftforge.gradle' apply plugin: 'org.spongepowered.mixin' apply plugin: 'com.github.johnrengelman.shadow' version = mod_version group = mod_group_id base { archivesName = mod_id } // Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17. java.toolchain.languageVersion = JavaLanguageVersion.of(17) //jarJar.enable() println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}" minecraft { mappings channel: mapping_channel, version: mapping_version copyIdeResources = true runs { configureEach { workingDirectory project.file('run') property 'forge.logging.markers', 'REGISTRIES' property 'forge.logging.console.level', 'debug' arg "-mixin.config=derp.mixin.json" mods { "${mod_id}" { source sourceSets.main } } } client { // Comma-separated list of namespaces to load gametests from. Empty = all namespaces. property 'forge.enabledGameTestNamespaces', mod_id } server { property 'forge.enabledGameTestNamespaces', mod_id args '--nogui' } gameTestServer { property 'forge.enabledGameTestNamespaces', mod_id } data { workingDirectory project.file('run-data') args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') } } } sourceSets.main.resources { srcDir 'src/generated/resources' } repositories { flatDir { dirs './libs' } maven { url = "https://jitpack.io" } } configurations { shade implementation.extendsFrom shade } dependencies { minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}" implementation 'org.luaj:luaj-jse-3.0.2' implementation fg.deobf("com.github.Virtuoel:Pehkui:${pehkui_version}") annotationProcessor 'org.spongepowered:mixin:0.8.5:processor' minecraftLibrary 'luaj:luaj-jse:3.0.2' shade 'luaj:luaj-jse:3.0.2' } // Example for how to get properties into the manifest for reading at runtime. tasks.named('jar', Jar).configure { manifest { attributes([ 'Specification-Title' : mod_id, 'Specification-Vendor' : mod_authors, 'Specification-Version' : '1', // We are version 1 of ourselves 'Implementation-Title' : project.name, 'Implementation-Version' : project.jar.archiveVersion, 'Implementation-Vendor' : mod_authors, 'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"), "TweakClass" : "org.spongepowered.asm.launch.MixinTweaker", "TweakOrder" : 0, "MixinConfigs" : "derp.mixin.json" ]) } rename 'mixin.refmap.json', 'derp.mixin-refmap.json' } shadowJar { archiveClassifier = '' configurations = [project.configurations.shade] finalizedBy 'reobfShadowJar' } assemble.dependsOn shadowJar reobf { re shadowJar {} } publishing { publications { mavenJava(MavenPublication) { artifact jar } } repositories { maven { url "file://${project.projectDir}/mcmodsrepo" } } } my entire project:https://github.com/kevin051606/DERP-Mod/tree/Derp-1.0-1.20
    • All versions of Minecraft Forge suddenly black screen even without mods (tried reinstalling original Minecraft, Java, updating drivers doesn't work)
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.