mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-11-26 12:15:15 +01:00
Adjust repo links in code
This commit is contained in:
parent
2070f22968
commit
a764598f88
2
pom.xml
2
pom.xml
@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
<issueManagement>
|
<issueManagement>
|
||||||
<system>GitHub</system>
|
<system>GitHub</system>
|
||||||
<url>https://github.com/Xephi/AuthMeReloaded/issues</url>
|
<url>https://github.com/AuthMe/AuthMeReloaded/issues</url>
|
||||||
</issueManagement>
|
</issueManagement>
|
||||||
|
|
||||||
<licenses>
|
<licenses>
|
||||||
|
@ -292,7 +292,7 @@ public class AuthMe extends JavaPlugin {
|
|||||||
HashAlgorithm hash = settings.getProperty(SecuritySettings.PASSWORD_HASH);
|
HashAlgorithm hash = settings.getProperty(SecuritySettings.PASSWORD_HASH);
|
||||||
if (OnStartupTasks.isHashDeprecatedIn54(hash)) {
|
if (OnStartupTasks.isHashDeprecatedIn54(hash)) {
|
||||||
ConsoleLogger.warning("You are using an unsalted hash (" + hash + "). Support for this will be removed "
|
ConsoleLogger.warning("You are using an unsalted hash (" + hash + "). Support for this will be removed "
|
||||||
+ "in 5.4 -- do you still need it? Comment on https://github.com/Xephi/AuthMeReloaded/issues/1016");
|
+ "in 5.4 -- do you still need it? Comment on https://github.com/AuthMe/AuthMeReloaded/issues/1016");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ public interface DataSource extends Reloadable {
|
|||||||
*
|
*
|
||||||
* @param until The minimum last login
|
* @param until The minimum last login
|
||||||
* @param includeEntriesWithLastLoginZero Whether entries with lastlogin = 0 should be included or not,
|
* @param includeEntriesWithLastLoginZero Whether entries with lastlogin = 0 should be included or not,
|
||||||
* see <a href="https://github.com/Xephi/AuthMeReloaded/issues/886">issue #886</a>
|
* see <a href="https://github.com/AuthMe/AuthMeReloaded/issues/886">issue #886</a>
|
||||||
* @return The account names selected to purge
|
* @return The account names selected to purge
|
||||||
*/
|
*/
|
||||||
Set<String> getRecordsToPurge(long until, boolean includeEntriesWithLastLoginZero);
|
Set<String> getRecordsToPurge(long until, boolean includeEntriesWithLastLoginZero);
|
||||||
|
@ -148,7 +148,7 @@ public class OnStartupTasks {
|
|||||||
*
|
*
|
||||||
* @param hash the hash algorithm to check
|
* @param hash the hash algorithm to check
|
||||||
* @return true if the hash will be deprecated, false otherwise
|
* @return true if the hash will be deprecated, false otherwise
|
||||||
* @see <a href="https://github.com/Xephi/AuthMeReloaded/issues/1016">#1016</a>
|
* @see <a href="https://github.com/AuthMe/AuthMeReloaded/issues/1016">#1016</a>
|
||||||
*/
|
*/
|
||||||
public static boolean isHashDeprecatedIn54(HashAlgorithm hash) {
|
public static boolean isHashDeprecatedIn54(HashAlgorithm hash) {
|
||||||
if (hash.getClazz() == null || hash == HashAlgorithm.PLAINTEXT) {
|
if (hash.getClazz() == null || hash == HashAlgorithm.PLAINTEXT) {
|
||||||
|
@ -61,7 +61,7 @@ public class TeleportationService implements Reloadable {
|
|||||||
* Note: this is triggered by Bukkit's PlayerLoginEvent, during which you cannot use
|
* Note: this is triggered by Bukkit's PlayerLoginEvent, during which you cannot use
|
||||||
* {@link Player#hasPlayedBefore()}: it always returns {@code false}. We trigger teleportation
|
* {@link Player#hasPlayedBefore()}: it always returns {@code false}. We trigger teleportation
|
||||||
* from the PlayerLoginEvent and not the PlayerJoinEvent to ensure that the location is overridden
|
* from the PlayerLoginEvent and not the PlayerJoinEvent to ensure that the location is overridden
|
||||||
* as fast as possible (cf. <a href="https://github.com/Xephi/AuthMeReloaded/issues/682">AuthMe #682</a>).
|
* as fast as possible (cf. <a href="https://github.com/AuthMe/AuthMeReloaded/issues/682">AuthMe #682</a>).
|
||||||
*
|
*
|
||||||
* @param player the player to process
|
* @param player the player to process
|
||||||
* @see <a href="https://bukkit.atlassian.net/browse/BUKKIT-3521">BUKKIT-3521: Player.hasPlayedBefore()
|
* @see <a href="https://bukkit.atlassian.net/browse/BUKKIT-3521">BUKKIT-3521: Player.hasPlayedBefore()
|
||||||
|
Loading…
Reference in New Issue
Block a user