"easy" auth
Go to file
NikitaCartes 1c15f9ea98
Merge branch 'archi-snapshot' into architectury
# Conflicts:
#	common/src/main/java/org/samo_lego/simpleauth/event/AuthEventHandler.java
#	common/src/main/java/org/samo_lego/simpleauth/mixin/MixinServerPlayNetworkHandler.java
#	common/src/main/java/org/samo_lego/simpleauth/mixin/MixinServerPlayerEntity.java
#	common/src/main/java/org/samo_lego/simpleauth/storage/PlayerCache.java
2021-06-24 00:22:28 +03:00
.github Create FUNDING.yml 2020-11-24 10:15:38 +01:00
common Merge branch 'archi-snapshot' into architectury 2021-06-24 00:22:28 +03:00
fabric Deprecation 2021-06-23 16:43:49 +03:00
forge Deprecation 2021-06-23 16:43:49 +03:00
gradle/wrapper Update gradle 2021-06-23 16:55:25 +03:00
.gitattributes Initial commit 2019-10-22 16:37:09 +02:00
.gitignore Brick laying 2021-01-14 20:14:57 +01:00
LICENSE Initial commit 2019-10-22 16:37:09 +02:00
README.md Deprecation 2021-06-23 16:43:49 +03:00
build.gradle Properly update to 1.17 mapping 2021-06-24 00:20:29 +03:00
gradle.properties Merge branch 'archi-snapshot' into architectury 2021-06-24 00:22:28 +03:00
gradlew Update gradle 2021-06-23 16:55:25 +03:00
gradlew.bat Update gradle 2021-06-23 16:55:25 +03:00
pt_br.json Add Brazilian Portuguese translation 2021-06-23 16:43:44 +03:00
settings.gradle 20w08b 2021-03-04 19:37:27 +01:00

README.md

Deprecated

Simple Authentication Mod

License Fabric CI Version Closed Issues Curseforge downloads

Requires Fabric API.

See wiki for more information.

License

Libraries that the project is using:

This project is licensed under the MIT license.

For mod developers

Changing code

  1. Clone the repository. Then run ./gradlew genSources
  2. Edit the code you want.
  3. To build run the following command:
./gradlew build

Adding the mod to your buildscript (to ensure compatibility)

Add following text to your build.gradle

repositories {
	maven {
		url 'https://jitpack.io'
	}
}

dependencies {
  // By version tag
  modImplementation 'com.github.samolego:SimpleAuth:${project.simpleauth_version}'
  
  // Or by branch
  modImplementation 'com.github.samolego:SimpleAuth:${project.simpleauth_branch}-SNAPSHOT'
}

And this to your gradle.properties

# By tag (version)
# SimpleAuth version (this might not be the latest version)
simpleauth_version = 1.4.8

# Or this (by branch)
# SimpleAuth branches

# master branch (the latest version for stable minecraft release)
simpleauth_branch = master

# snapshot branch (branch for minecraft snapshots)
simpleauth_branch = latest-snapshot