Skip to content

Commit a19eb30

Browse files
committed
Fix mod info.
1 parent 28150c5 commit a19eb30

4 files changed

Lines changed: 14 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 1.0.4
2+
- Fix mod info.
3+
4+
* * *
5+
16
# 1.0.3
27
- Fix dependencies.
38

gradle.properties

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ org.gradle.jvmargs = -Xmx3G
33

44
# Compilation Options
55
generate_sources_jar = true
6-
generate_javadocs_jar = false
6+
generate_javadocs_jar = true
77

88
# Testing
99
enable_junit_testing = true
@@ -19,18 +19,18 @@ enable_lwjglx = true
1919

2020
# Mod Information
2121
# HIGHLY RECOMMEND complying with SemVer for mod_version: https://semver.org/
22-
mod_version = 1.0.3-release
22+
mod_version = 1.0.4-release
2323
root_package = com.github.gtexpert
2424
mod_id = advancedbackupspatch
2525
mod_name = Advanced Backups Patch
2626

2727
# Mod Metadata (Optional)
28-
mod_description =
29-
mod_url =
30-
mod_update_json =
28+
mod_description = A compatibility patch mod that fixes the Advanced Backups mod.
29+
mod_url = https://www.curseforge.com/minecraft/mc-mods/advanced-backups-patch
30+
mod_update_json = https://forge.curseupdate.com/1472996/advanced-backups-patch
3131
# Delimit authors with commas
32-
mod_authors =
33-
mod_credits =
32+
mod_authors = tier940
33+
mod_credits = HeatherWhite
3434
mod_logo_path =
3535

3636
# Run Configurations
@@ -73,4 +73,4 @@ coremod_plugin_class_name =
7373
# Convenient way to allow downloading of assets from official vanilla Minecraft servers, CurseForge, or any direct links
7474
# Documentation: https://github.com/CleanroomMC/AssetMover
7575
use_asset_mover = false
76-
asset_mover_version = 2.5
76+
asset_mover_version = 2.5

gradle/scripts/dependencies.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ dependencies {
2727
// Example - CurseMaven dependencies:
2828
// 'curse.maven:had-enough-items-557549:4543375' << had-enough-items = project slug, 557549 = project id, 4543375 = file id
2929
// Full documentation: https://cursemaven.com/
30-
compileOnly 'curse.maven:mixin-booter-419286:7049694'
31-
compileOnly 'curse.maven:advanced-backups-876284:6148212'
30+
modImplementation 'curse.maven:advanced-backups-876284:6148212'
3231

3332
// Example - Modrinth dependencies:
3433
// 'maven.modrinth:jei:4.16.1.1000' << jei = project name, 4.16.1.1000 = file version

src/main/java/com/github/gtexpert/advancedbackupspatch/AdvancedBackupsPatch.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
name = Reference.MOD_NAME,
1212
acceptedMinecraftVersions = "[1.12.2]",
1313
version = Reference.VERSION,
14-
// updateJSON = "https://forge.curseupdate.com/851103/gtexpert",
1514
dependencies = "required-after:mixinbooter" + "@[10.6,);" +
1615
"after:advancedbackups;")
1716
public class AdvancedBackupsPatch implements ILateMixinLoader {

0 commit comments

Comments
 (0)