Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@ This light-weight mod links a Twitch channel's chat to your Minecraft chatbox!

There are more mods that do this, but none are available for Fabric... so I made it!

This mod requires [Mod Menu](https://github.com/TerraformersMC/ModMenu) and
[Fabric API](https://github.com/FabricMC/fabric) to work.
This mod requires [Mod Menu](https://github.com/TerraformersMC/ModMenu),
[Fabric API](https://github.com/FabricMC/fabric), and
[YetAnotherConfigLib](https://github.com/isXander/YetAnotherConfigLib) to work.

**NOTE: Even though the mod is on beta, it's fully functional! It's on beta to symbolise I'm not finished adding features.
If you encounter any bug or issue or have any suggestion, please add it as an issue
[here](https://github.com/pblop/twitch-chat/issues/new).**

## Usage.

1. Get a Twitch oauth key here https://twitchapps.com/tmi/ and write it down somewhere.
1. Get a Twitch oauth key [here](https://twitchapps.com/tmi/) and write it down somewhere.
2. Open the mod menu.
3. Open this mod's configuration inside that menu.
4. Fill in your credentials in the credentials tab (your twitch username, oauth token).
Expand Down
14 changes: 7 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ org.gradle.parallel=true

# Fabric Properties
# check these on https://fabricmc.net/develop/
minecraft_version=1.21.5-rc1
yarn_mappings=1.21.5-rc1+build.3
loader_version=0.16.10
minecraft_version=1.21.8
yarn_mappings=1.21.8+build.1
loader_version=0.16.14

loom_version=1.10-SNAPSHOT
loom_version=1.11-SNAPSHOT

# Mod Properties
mod_version=0.15.4b
maven_group=eu.pabl
archives_base_name=twitchchat

# Dependencies
fabric_version=0.119.2+1.21.5
yacl_version=3.6.5+1.21.5-fabric
mod_menu_version=14.0.0-beta.2
fabric_version=0.129.0+1.21.8
yacl_version=3.7.1+1.21.6-fabric
mod_menu_version=15.0.0-beta.3
pircbotx_version=c47a15b624
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
5 changes: 2 additions & 3 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down Expand Up @@ -206,7 +205,7 @@ fi
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'

# Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line.
Expand Down
14 changes: 6 additions & 8 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,11 @@
],

"depends": {
"minecraft": ["1.21.5-rc.1", "1.21.5"],
"fabricloader": ">=0.16.10",
"fabric": ">=0.119.2+1.21.5",
"java": ">=21"
},
"suggests": {
"modmenu": ">=14.0.0-beta.2",
"cloth-config": ">=17.0.142"
"minecraft": ">=1.21.6 <1.21.9",
"fabricloader": ">=0.16.14",
"fabric": ">=0.129.0+1.21.8",
"java": ">=21",
"modmenu": ">=15.0.0",
"yet_another_config_lib_v3": ">=3.7.1+1.21.6-fabric"
}
}