Skip to content

Commit

Permalink
build: Release 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault committed Jul 24, 2022
1 parent 7c0e157 commit 826dfeb
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 25 deletions.
8 changes: 4 additions & 4 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -631,8 +631,8 @@ to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

{one line to give the program's name and a brief idea of what it does.}
Copyright (C) {year} {name of author}
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand All @@ -652,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

{project} Copyright (C) {year} {fullname}
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
Expand All @@ -671,4 +671,4 @@ into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/philosophy/why-not-lgpl.html>.
<https://www.gnu.org/licenses/why-not-lgpl.html>.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ configurations.all {
}

group = "com.intellectualsites.fastasyncvoxelsniper"
version = "2.5.1-SNAPSHOT"
version = "2.6.0"

bukkit {
name = "FastAsyncVoxelSniper"
Expand Down
3 changes: 1 addition & 2 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"extends": [
"config:base",
":disableDependencyDashboard"
"config:base"
],
"labels": ["Renovate"],
"commitMessagePrefix": "build: ",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public SniperRegistry getSniperRegistry() {
* Return the pattern parser.
*
* @return the pattern parser
* @since TODO
* @since 2.6.0
*/
public PatternParser getPatternParser() {
return patternParser;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class BrushPattern {
*
* @param pattern the pattern
* @param name the name
* @since TODO
* @since 2.6.0
*/
public BrushPattern(Pattern pattern, String name) {
this.pattern = pattern;
Expand All @@ -30,7 +30,7 @@ public BrushPattern(Pattern pattern, String name) {
* Create a new brush pattern from a block type.
*
* @param blockType the block type
* @since TODO
* @since 2.6.0
*/
public BrushPattern(BlockType blockType) {
this(blockType, blockType.getId());
Expand All @@ -40,7 +40,7 @@ public BrushPattern(BlockType blockType) {
* Create a new brush pattern from a block state.
*
* @param blockState the block state
* @since TODO
* @since 2.6.0
*/
public BrushPattern(BlockState blockState) {
this(blockState, blockState.getAsString());
Expand All @@ -50,7 +50,7 @@ public BrushPattern(BlockState blockState) {
* Gets pattern.
*
* @return the pattern
* @since TODO
* @since 2.6.0
*/
public Pattern getPattern() {
return pattern;
Expand All @@ -63,7 +63,7 @@ public Pattern getPattern() {
* - block data for block states
*
* @return the pattern name
* @since TODO
* @since 2.6.0
*/
public String getName() {
return name;
Expand All @@ -73,7 +73,7 @@ public String getName() {
* Try to parse the pattern as a block type.
*
* @return the potential corresponding block type
* @since TODO
* @since 2.6.0
*/
public @Nullable BlockType asBlockType() {
if (this.pattern instanceof BaseBlock baseBlock) {
Expand All @@ -92,7 +92,7 @@ public String getName() {
* Try to parse the pattern as a block state.
*
* @return the potential corresponding block state
* @since TODO
* @since 2.6.0
*/
public @Nullable BlockState asBlockState() {
if (this.pattern instanceof BaseBlock baseBlock) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* {@code BrushPatternType.PATTERN} might not support all brushes such as
* {@link com.thevoxelbox.voxelsniper.brush.type.SpiralStaircaseBrush}.
*
* @since TODO
* @since 2.6.0
*/
public enum BrushPatternType {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public List<String> getAliases() {
* Gets the accepted brush pattern type for this brush.
*
* @return the brush pattern type
* @since TODO
* @since 2.6.0
*/
public BrushPatternType getBrushPatternType() {
return brushPatternType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public BrushPropertiesBuilder alias(String alias) {
*
* @param brushPatternType the brush pattern type
* @return the brush properties builder
* @since TODO
* @since 2.6.0
*/
public BrushPropertiesBuilder brushPatternType(BrushPatternType brushPatternType) {
this.brushPatternType = brushPatternType;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* VoxelSniper pattern parser used for argument completion and parsing.
*
* @since TODO
* @since 2.6.0
*/
public class PatternParser extends AbstractFactory<Pattern> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void reset() {
/**
* Resets the pattern.
*
* @since TODO
* @since 2.6.0
*/
public void resetPattern() {
this.pattern = new BrushPattern(plugin.getVoxelSniperConfig().getDefaultBlockMaterial().getDefaultState());
Expand All @@ -61,7 +61,7 @@ public void resetPattern() {
/**
* Resets the replace pattern.
*
* @since TODO
* @since 2.6.0
*/
public void resetReplacePattern() {
this.replacePattern = new BrushPattern(plugin.getVoxelSniperConfig().getDefaultReplaceBlockMaterial().getDefaultState());
Expand Down Expand Up @@ -94,7 +94,7 @@ public boolean isVoxelListContains(BlockState blockData) {
* Returns the pattern.
*
* @return the pattern
* @since TODO
* @since 2.6.0
*/
public BrushPattern getPattern() {
return this.pattern;
Expand All @@ -104,7 +104,7 @@ public BrushPattern getPattern() {
* Sets the pattern.
*
* @param brushPattern the new pattern
* @since TODO
* @since 2.6.0
*/
public void setPattern(BrushPattern brushPattern) {
this.pattern = brushPattern;
Expand All @@ -114,7 +114,7 @@ public void setPattern(BrushPattern brushPattern) {
* Returns the replace pattern.
*
* @return the replace pattern
* @since TODO
* @since 2.6.0
*/
public BrushPattern getReplacePattern() {
return this.replacePattern;
Expand All @@ -124,7 +124,7 @@ public BrushPattern getReplacePattern() {
* Sets the replace pattern.
*
* @param replaceBrushPattern the new replace pattern
* @since TODO
* @since 2.6.0
*/
public void setReplacePattern(BrushPattern replaceBrushPattern) {
this.replacePattern = replaceBrushPattern;
Expand Down

0 comments on commit 826dfeb

Please sign in to comment.