Skip to content

Commit

Permalink
Initialize 0.5.0-SNAPSHOT.
Browse files Browse the repository at this point in the history
Added plans for 0.5.0 version.
  • Loading branch information
BONNe committed Jan 31, 2019
1 parent 0554d79 commit 9193cce
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 47 deletions.
13 changes: 13 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ This page contains plans for each Addon version.
- [ ] Store Biome per Island.
- [x] On owner change, reset biomes that is not available for new owner.

## Release 0.5.0
- [ ] Rework GUI again:
- [ ] Do the same tricks as in Challenges GUI.
- [ ] Add proper Biomes Description #18
- [ ] Simplify user GUI
- [ ] Store Biome change information per:
- [ ] Player
- [ ] Island
- [ ] Implement more cost options:
- [ ] Cost per biome change (linear / exponential)
- [ ] Cost per block
- [ ] Remove deprecated code.

## Release 0.4.0
- [ ] Create unlockable biomes:
- [ ] By challenge #11
Expand Down
49 changes: 2 additions & 47 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>world.bentobox</groupId>
<artifactId>biomes</artifactId>
<version>0.4.1</version>
<version>0.5.0-SNAPSHOT</version>

<name>Biomes</name>
<description>Biomes is an add-on for BentoBox, an expandable Minecraft Spigot plugin for island-type games like SkyBlock or AcidIsland.</description>
Expand Down Expand Up @@ -73,28 +73,10 @@
<version>1.13.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.10.19</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>${powermock.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>world.bentobox</groupId>
<artifactId>bentobox</artifactId>
<version>1.1</version>
<version>1.2.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -234,31 +216,4 @@
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>sonar</id>
<properties>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.organization>bentobox-world</sonar.organization>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.4.1.1168</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sonar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
1 change: 1 addition & 0 deletions src/main/java/world/bentobox/biomes/panel/CommonPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,7 @@ protected enum CommonButtons
/**
* This enum contains buttons that is made of numbers.
*/
@Deprecated
protected enum NumberButtons
{
SET_1,
Expand Down
11 changes: 11 additions & 0 deletions src/main/java/world/bentobox/biomes/utils/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ public class Utils
* Thus method parses input string to ItemStack.
* @param inputString Splitted string.
* @return ItemStack that represents input string.
* @deprecated
* @see world.bentobox.bentobox.util.ItemParser#parse(String)
*/
@Deprecated
private static ItemStack parse2ArrayString(String[] inputString)
{
int reqAmount;
Expand Down Expand Up @@ -57,7 +60,10 @@ private static ItemStack parse2ArrayString(String[] inputString)
* Create ItemStack from 3 string parts.
* @param inputString Splitted string.
* @return ItemStack that is created from input string.
* @deprecated
* @see world.bentobox.bentobox.util.ItemParser#parse(String)
*/
@Deprecated
private static ItemStack parse3ArrayString(String[] inputString)
{
String[] twoArrayString = {inputString[0], inputString[2]};
Expand All @@ -68,7 +74,10 @@ private static ItemStack parse3ArrayString(String[] inputString)
/**
* This method parse given string to ItemStack element.
* @return the parsed ItemStack element.
* @deprecated
* @see world.bentobox.bentobox.util.ItemParser#parse(String)
*/
@Deprecated
public static ItemStack parseItem(BiomesAddon addon, String inputString)
{
String[] part = inputString.split(":");
Expand Down Expand Up @@ -118,7 +127,9 @@ public static List<String> splitString(String string)
* This method combines input string array in single string.
* @param args String list that must be combined.
* @return Combined string.
* @deprecated
*/
@Deprecated
public static String mergeStringList(List<String> args)
{
if (args.isEmpty())
Expand Down

0 comments on commit 9193cce

Please sign in to comment.