Skip to content

Commit

Permalink
Fixed some misc gradle methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeryn99 committed Dec 28, 2024
1 parent 857516b commit fd0055a
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 18 deletions.
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,22 @@ body:
attributes:
label: Other relevant versions
description: If this issue is related to any other mods that have been installed alongside Tardis Refined, list the mod's name and version here.
- type: textarea
attributes:
label: Mod List
description: In order to check for compatibility issues, we require your mods list
- type: checkboxes
id: existing
attributes:
label: Please confirm that you have searched existing issues in the repo.
options:
- label: 'Yes, I have checked all open issues and am aware my issue will be closed if it is a duplicate of another'
- type: checkboxes
id: rendering
attributes:
label: Please confirm that if your issue is related to rendering, that you have tested without the following before testing; (Shaders, Optifine, Rubidium, embeddium, Sodium)
options:
- label: 'Yes, I have done testing without these mods before reported a rendering issue or my issue does not relate to rendering'
- type: input
attributes:
label: "Attach the relevant crash report file or log file: (Don't know how to find a crash report file? See the [Minecraft Wiki Tutorial](https://minecraft.fandom.com/wiki/Tutorials/How_to_get_a_crash_report)"
Expand Down
34 changes: 34 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ plugins {
id "architectury-plugin" version "3.4-SNAPSHOT"
id "dev.architectury.loom" version "1.6+" apply false
id "me.shedaniel.unified-publishing" version "0.1.+"
id "com.github.breadmoirai.github-release" version "2.4.1"
}

architectury {
Expand All @@ -38,6 +39,38 @@ subprojects {
}
}


def forgeDir = new File(project.projectDir, 'forge/build/libs/')
def fabricDir = new File(project.projectDir, 'fabric/build/libs/')
def commonDir = new File(project.projectDir, 'common/build/libs/')

def filter = { File file -> file.getName().contains(mod_version) } as FileFilter

def forgeFiles = forgeDir.listFiles(filter)
def fabricFiles = fabricDir.listFiles(filter)
def commonFiles = commonDir.listFiles(filter)

githubRelease {
token project.findProperty("github") ?: System.getenv("github") ?: ""
owner "WhoCraft"
repo "TardisRefined"
tagName "v$rootProject.minecraft_version-$project.mod_version"
targetCommitish "mc/1.20.1"
releaseName "[$rootProject.minecraft_version] Tardis Refined - v$project.mod_version"
generateReleaseNotes true
body new File("${rootProject.projectDir}/changelog.md").text
draft false
prerelease false
releaseAssets(forgeFiles + fabricFiles + commonFiles)
allowUploadToExisting.set false
overwrite true
dryRun false
apiEndpoint "https://api.github.com"
client
}



allprojects {
apply plugin: "java"
apply plugin: "architectury-plugin"
Expand Down Expand Up @@ -85,6 +118,7 @@ allprojects {
task publishMeEverywhere(){
dependsOn ':forge:publishUnified'
dependsOn ':fabric:publishUnified'
dependsOn ':githubRelease'
}


Expand Down
21 changes: 4 additions & 17 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,10 @@
# Version 2.1.1
# Version 2.1.2

![TARDIS Refined](https://wiki.tardisrefined.net/TARDIS-Refined-Wiki/tardis_refined_v2_1.png)

# Apologies
In the previous version, we released a lot and it didn't quite meet the testing required for a release. Resulting in a terrible launch :(
You can find everything from 2.1.0 here: https://wiki.tardisrefined.net/version-2-1-0.html

#### Bug Fixes
- Bug Fix: Fixed Fuel Alarm going off when the TARDIS isn't fully grown yet
- Bug Fix: Fixed Vortex Overlay not being called on Forge
- Bug Fix: Fixed Vortex & Shell scales on Forge
- Bug Fix: Fixed keys not working as intended
- Bug Fix: Fixed Manipulator crafting not working as intended
- Bug Fix: Tardis will change locations without taking off, just by setting coordinates.[#427](https://github.com/WhoCraft/TardisRefined/issues/427)
- Bug Fix: Using the amethyst screwdriver to interact with the terraformer causes a freeze crash. (v2.1.1) [#426](https://github.com/WhoCraft/TardisRefined/issues/426)
- Bug Fix: Instantaneous Travel [#421](https://github.com/WhoCraft/TardisRefined/issues/421)

### Enhancements
- Updated Factory Console Texture

### Additions
- Added: Skulker Shell (Just for fun <3)

### NOTE
- Old waypoints from pre-2.1.0 may cause issues and default to 0,0,0 - you may need to remake them :( (Trust me it's in the name of progress))
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ neoforge_data_pack_format=18
##Mod Information

#Common Mod Information
mod_version=2.1.1
mod_version=2.1.2
license=https://github.com/Whocraft/TardisRefined/blob/minecraft/1.20/LICENSE.MD
credits=Commoble, Lucraft, starray1000000, Monsterwaill, TheJudge, LoxiGoose
mod_authors=CommandrMoose / River, Jeryn99, Magic Man, ILikePandas, Jacob K, 50ap5ud5
Expand Down

0 comments on commit fd0055a

Please sign in to comment.