Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace MCAuth with RK_01 MinecraftAuth #795

Merged
merged 30 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d505962
Initial work on moving over mcauth
AlexProgrammerDE Mar 25, 2024
c011e42
Initial work on importing MinecraftAuth
AlexProgrammerDE Apr 7, 2024
13d267a
Make compile
AlexProgrammerDE Apr 25, 2024
8a70850
Remove extra headers code
AlexProgrammerDE Apr 25, 2024
576067a
Switch to different http utils
AlexProgrammerDE Apr 25, 2024
4206799
Merge remote-tracking branch 'upstream/dev' into mcauth-port
AlexProgrammerDE Apr 25, 2024
6ecd614
Merge changes
AlexProgrammerDE Apr 25, 2024
d991769
Cleanup
AlexProgrammerDE Apr 25, 2024
e697cce
Remove unused exceptions and constructors
AlexProgrammerDE Apr 25, 2024
f279fe9
Implement proxies
AlexProgrammerDE Apr 27, 2024
3e76d3f
Fixup proxy stuff
AlexProgrammerDE Apr 30, 2024
66d6090
Merge remote-tracking branch 'upstream/dev' into mcauth-port
AlexProgrammerDE Apr 30, 2024
18de99e
Cleanup
AlexProgrammerDE Apr 30, 2024
af9771b
Merge remote-tracking branch 'upstream/dev' into mcauth-port
AlexProgrammerDE May 1, 2024
c16a5d4
Remove SR license header
AlexProgrammerDE May 4, 2024
26286e5
Remove custom exceptions
AlexProgrammerDE May 8, 2024
a53b432
Move auth into main module
AlexProgrammerDE May 8, 2024
144a821
Make ProxyInfo be part of network again
AlexProgrammerDE May 8, 2024
052f313
Merge remote-tracking branch 'upstream/dev' into mcauth-port
AlexProgrammerDE May 8, 2024
eb0261d
Fix indent
AlexProgrammerDE May 8, 2024
99c1a48
Allow null id and name in GameProfile
AlexProgrammerDE May 8, 2024
3a9dd00
Merge remote-tracking branch 'upstream/master' into mcauth-port
AlexProgrammerDE Jun 9, 2024
0755d72
Fix remaining logs
AlexProgrammerDE Jun 9, 2024
196bc86
Merge branch 'master' into mcauth-port
AlexProgrammerDE Jun 13, 2024
7202cb2
Make texture checker more accurate
AlexProgrammerDE Jun 14, 2024
677641f
Fix spaces
AlexProgrammerDE Jun 14, 2024
059437f
Merge remote-tracking branch 'upstream/master' into mcauth-port
AlexProgrammerDE Jun 17, 2024
0b183c7
Update dependencies
AlexProgrammerDE Jun 17, 2024
f441d5e
Remove usage of var
AlexProgrammerDE Jun 17, 2024
bd3a09c
Use faster approach for reading raw uuids.
AlexProgrammerDE Jun 17, 2024
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
20 changes: 20 additions & 0 deletions auth/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
plugins {
id("mcprotocollib.publish-conventions")
}

version = "2.0.0-SNAPSHOT"
description = "A library for authentication with Minecraft accounts."

dependencies {
// Gson
api(libs.gson)

// MinecraftAuth for authentication
api(libs.minecraftauth)

// Checker Framework
api(libs.checkerframework.qual)

// Test dependencies
testImplementation(libs.junit.jupiter)
}
Loading
Loading