Skip to content

Commit d1de97c

Browse files
committed
Change license and add all mod properties in gradle.properties.
Revised mod metadata in `gradle.properties` and `fabric.mod.json` to use consistent placeholders. Updated the license from CC0-1.0 to LGPL-3.0-only. Other adjustments include refactoring `build.gradle` for dynamic property replacement and additional metadata alignment.
1 parent 8853d86 commit d1de97c

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ processResources {
3737
"mod_version": mod_version,
3838
"mod_name": mod_name,
3939
"mod_description": mod_description,
40-
"mod_authors": mod_authors,
40+
"mod_author_1": mod_author_1,
41+
"mod_author_2": mod_author_2,
4142
"mod_homepage": mod_homepage,
4243
"mod_source": mod_source,
4344
"mod_issues": mod_issues,

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ mod_id=time-loop
1313
mod_version=1.7.2
1414
mod_name=Time Loop
1515
mod_description=A set of commands that 'loops' time by using the Motion Capture Mod. Motion Capture mod by mt1006. Inspired by Tombino. Original datapack by Penguin Mafia.
16-
mod_authors=Luigi, VLTNO
16+
mod_author_1=Luigi
17+
mod_author_2=VLTNO
1718
mod_homepage=https://modrinth.com/mod/timeloop
1819
mod_source=https://github.com/vltnogithub/time-loop
1920
mod_issues=https://github.com/vltnogithub/time-loop/issues

src/main/resources/fabric.mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "${mod_version}",
55
"name": "${mod_name}",
66
"description": "${mod_description}",
7-
"authors": ["${mod_authors}"],
7+
"authors": ["${mod_author_1}", "${mod_author_2}"],
88
"contact": {
99
"homepage": "${mod_homepage}",
1010
"sources": "${mod_source}",

0 commit comments

Comments
 (0)