Skip to content

Commit

Permalink
Updated fabric.mod.json, license and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
MehradN committed Jun 12, 2023
1 parent e8fdcda commit 6e26dff
Show file tree
Hide file tree
Showing 6 changed files with 719 additions and 175 deletions.
795 changes: 674 additions & 121 deletions LICENSE

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# MehradConfig

A simple looking, instance based config library for minecraft.
8 changes: 1 addition & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,4 @@ archives_base_name=mehrad-config

# Dependencies
mixin_extras_version=0.1.1
fabric_version=0.83.0+1.20

# Proxy
systemProp.http.proxyHost=localhost
systemProp.http.proxyPort=8889
systemProp.https.proxyHost=localhost
systemProp.https.proxyPort=8889
fabric_version=0.83.0+1.20
16 changes: 8 additions & 8 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
pluginManagement {
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
mavenCentral()
gradlePluginPortal()
}
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
mavenCentral()
gradlePluginPortal()
}
}
Binary file removed src/main/resources/assets/mehrad-config/icon.png
Binary file not shown.
72 changes: 33 additions & 39 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,41 +1,35 @@
{
"schemaVersion": 1,
"id": "mehrad-config",
"version": "${version}",
"name": "Mehrad Config",
"description": "This is an example description! Tell everyone what your mod is about!",
"authors": [
"Me!"
],
"contact": {
"homepage": "https://fabricmc.net/",
"sources": "https://github.com/FabricMC/fabric-example-mod"
},
"license": "CC0-1.0",
"icon": "assets/mehrad-config/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"ir.mehradn.mehradconfig.ExampleMod"
],
"client": [
"ir.mehradn.mehradconfig.ExampleModClient"
]
},
"mixins": [
"mehrad-config.mixins.json",
{
"config": "mehrad-config.client.mixins.json",
"environment": "client"
}
],
"depends": {
"fabricloader": ">=0.14.21",
"minecraft": "~1.20",
"java": ">=17",
"fabric-api": "*"
},
"suggests": {
"another-mod": "*"
}
"schemaVersion": 1,
"id": "mehrad-config",
"version": "${version}",
"name": "Mehrad Config",
"description": "A simple looking, instance based config library for minecraft.",
"authors": [
"Mehrad Nayyeri"
],
"contact": {
"homepage": "https://github.com/MehradN/MehradConfig",
"sources": "https://github.com/MehradN/MehradConfig",
"issues": "https://github.com/MehradN/MehradConfig/issues"
},
"license": "GPL-3.0",
"environment": "*",
"entrypoints": {
"preLaunch": [
"ir.mehradn.mehradconfig.MehradConfigPreLaunch"
]
},
"mixins": [
"mehrad-config.mixins.json",
{
"config": "mehrad-config.client.mixins.json",
"environment": "client"
}
],
"depends": {
"java": ">=17",
"minecraft": "~1.20",
"fabricloader": ">=0.14.21",
"fabric-api": ">=0.83.0+1.20"
}
}

0 comments on commit 6e26dff

Please sign in to comment.