mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-07-30 02:55:27 +02:00
Compare commits
3 Commits
renovate/r
...
6.8.0
Author | SHA1 | Date | |
---|---|---|---|
![]() |
41f546ca6b | ||
![]() |
d037da33cb | ||
![]() |
dc2d08c67e |
2
.github/workflows/release-drafter.yml
vendored
2
.github/workflows/release-drafter.yml
vendored
@@ -14,6 +14,6 @@ jobs:
|
|||||||
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
|
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: release-drafter/release-drafter@v5.20.0
|
- uses: release-drafter/release-drafter@v5
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@@ -133,3 +133,5 @@ classes/
|
|||||||
*.bat
|
*.bat
|
||||||
docs/
|
docs/
|
||||||
build/
|
build/
|
||||||
|
|
||||||
|
.DS_Store
|
||||||
|
@@ -1,4 +0,0 @@
|
|||||||
jdkVersion = "17"
|
|
||||||
build = "gradle clean build -x test"
|
|
||||||
tools = ["findsecbugs", "ErrorProne", "Semgrep", "Detekt", "Infer"]
|
|
||||||
ignoreRules = ["CatchAndPrintStackTrace", "ReferenceEquality", "FallThrough", "FutureReturnValueIgnored", "MixedMutabilityReturnType", "EmptyCatch", "MissingCasesInEnumSwitch", "OperatorPrecedence", "StaticAssignmentInConstructor", "ReferenceEquality", "EqualsHashCode", "EqualsGetClass", "TypeParameterUnusedInFormals", "StringSplitter", "InlineMeSuggester", "NULL_DEREFERENCE"]
|
|
@@ -64,7 +64,7 @@ public class AugmentedUtils {
|
|||||||
* @param chunkZ Chunk Z position
|
* @param chunkZ Chunk Z position
|
||||||
* @param queue Queue to write to, if desired.
|
* @param queue Queue to write to, if desired.
|
||||||
* @return true if generation occurred.
|
* @return true if generation occurred.
|
||||||
* @since TODO
|
* @since 6.8.0
|
||||||
*/
|
*/
|
||||||
public static boolean generateChunk(
|
public static boolean generateChunk(
|
||||||
final @NonNull String world,
|
final @NonNull String world,
|
||||||
@@ -187,7 +187,7 @@ public class AugmentedUtils {
|
|||||||
* @deprecated Use {@link AugmentedUtils#generateChunk(String, int, int, QueueCoordinator)} as chunkObject is not required
|
* @deprecated Use {@link AugmentedUtils#generateChunk(String, int, int, QueueCoordinator)} as chunkObject is not required
|
||||||
* in the above method
|
* in the above method
|
||||||
*/
|
*/
|
||||||
@Deprecated(forRemoval = true, since = "TODO")
|
@Deprecated(forRemoval = true, since = "6.8.0")
|
||||||
public static boolean generate(
|
public static boolean generate(
|
||||||
@Nullable Object chunkObject,
|
@Nullable Object chunkObject,
|
||||||
final @NonNull String world,
|
final @NonNull String world,
|
||||||
|
@@ -64,7 +64,7 @@ public class BlockArrayCacheScopedQueueCoordinator extends ScopedQueueCoordinato
|
|||||||
*
|
*
|
||||||
* @param min Inclusive location of the minimum point to limit the scope to.
|
* @param min Inclusive location of the minimum point to limit the scope to.
|
||||||
* @param max Inclusive location of the maximum point to limit the scope to.
|
* @param max Inclusive location of the maximum point to limit the scope to.
|
||||||
* @since TODO
|
* @since 6.8.0
|
||||||
*/
|
*/
|
||||||
public BlockArrayCacheScopedQueueCoordinator(Location min, Location max) {
|
public BlockArrayCacheScopedQueueCoordinator(Location min, Location max) {
|
||||||
super(null, min, max);
|
super(null, min, max);
|
||||||
|
@@ -41,7 +41,7 @@ import org.checkerframework.checker.nullness.qual.Nullable;
|
|||||||
*
|
*
|
||||||
* @deprecated This class is poorly designed and will no longer be used in P2
|
* @deprecated This class is poorly designed and will no longer be used in P2
|
||||||
*/
|
*/
|
||||||
@Deprecated(forRemoval = true, since = "TODO")
|
@Deprecated(forRemoval = true, since = "6.8.0")
|
||||||
public class ChunkQueueCoordinator extends ScopedQueueCoordinator {
|
public class ChunkQueueCoordinator extends ScopedQueueCoordinator {
|
||||||
|
|
||||||
public final BiomeType[][][] biomeResult;
|
public final BiomeType[][][] biomeResult;
|
||||||
|
@@ -253,7 +253,7 @@ public abstract class QueueCoordinator {
|
|||||||
* If the queue should accept biome placement
|
* If the queue should accept biome placement
|
||||||
*
|
*
|
||||||
* @param enabled If biomes should be enabled
|
* @param enabled If biomes should be enabled
|
||||||
* @since TODO
|
* @since 6.8.0
|
||||||
*/
|
*/
|
||||||
public abstract void setBiomesEnabled(boolean enabled);
|
public abstract void setBiomesEnabled(boolean enabled);
|
||||||
|
|
||||||
|
@@ -40,7 +40,7 @@ import org.checkerframework.checker.nullness.qual.Nullable;
|
|||||||
*
|
*
|
||||||
* @deprecated This should be renamed to NormalizedScopedQueueCoordinator or something.
|
* @deprecated This should be renamed to NormalizedScopedQueueCoordinator or something.
|
||||||
*/
|
*/
|
||||||
@Deprecated(forRemoval = true, since = "TODO")
|
@Deprecated(forRemoval = true, since = "6.8.0")
|
||||||
public class ScopedQueueCoordinator extends DelegateQueueCoordinator {
|
public class ScopedQueueCoordinator extends DelegateQueueCoordinator {
|
||||||
|
|
||||||
private final Location min;
|
private final Location min;
|
||||||
|
@@ -18,7 +18,7 @@ plugins {
|
|||||||
idea
|
idea
|
||||||
}
|
}
|
||||||
|
|
||||||
version = "6.7.1-SNAPSHOT"
|
version = "6.8.0"
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
group = "com.plotsquared"
|
group = "com.plotsquared"
|
||||||
|
Reference in New Issue
Block a user