Skip to content

Commit 0e74879

Browse files
committed
Version 6.6.3
Site updated: - Added DISCORDLIST_SPACE (Replaces BOTLIST_SPACE) - Deprecated BOTLIST_SPACE - Removed BOTS_DISTOP_XYZ - Removed BOTS_IDLEDEV_ORG
1 parent f788c2a commit 0e74879

File tree

3 files changed

+19
-36
lines changed

3 files changed

+19
-36
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins{
77
id 'com.github.johnrengelman.shadow' version '5.2.0'
88
}
99

10-
def ver = new Version(major: 6, minor: 6, patch: 2)
10+
def ver = new Version(major: 6, minor: 6, patch: 3)
1111

1212
allprojects {
1313
apply plugin: 'maven-publish'

core/src/main/java/org/botblock/javabotblockapi/core/Info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class Info{
3939
/**
4040
* Patch version of the Wrapper.
4141
*/
42-
public static final int PATCH = 2;
42+
public static final int PATCH = 3;
4343

4444
/**
4545
* Full version in the format {@code major.minor.patch}.

core/src/main/java/org/botblock/javabotblockapi/core/Site.java

Lines changed: 17 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,13 @@ public class Site{
7878
* <li>GET</li>
7979
* <li>POST</li>
8080
* </ul>
81+
*
82+
* @deprecated Domain changed to {@link #DISCORDLIST_SPACE discordlist.space}
8183
*/
82-
public static final Site BOTLIST_SPACE = new Site("botlist.space", HttpMethod.GET, HttpMethod.POST);
84+
@Deprecated
85+
@DeprecatedSince(major = 6, minor = 6, patch = 3, replacements = {"DISCORDLIST_SPACE"})
86+
@PlannedRemoval(major = 6, minor = 6, patch = 5)
87+
public static final Site BOTLIST_SPACE = new Site("botlist.space");
8388

8489
/**
8590
* <a href="https://botsdatabase.com" target="_blank">botsdatabase.com</a>
@@ -103,23 +108,6 @@ public class Site{
103108
*/
104109
public static final Site BOTS_DISCORDLABS_ORG = new Site("discordlabs.org", HttpMethod.GET, HttpMethod.POST);
105110

106-
/**
107-
* <a href="https://bots.distop.xyz" target="_blank">bots.distop.xyz</a>
108-
*
109-
* <p>Supported methods:
110-
* <ul>
111-
* <li>GET</li>
112-
* </ul>
113-
*
114-
* @deprecated Site no longer available.
115-
*
116-
* @since 6.4.1
117-
*/
118-
@Deprecated
119-
@DeprecatedSince(major = 6, minor = 6, patch = 1)
120-
@PlannedRemoval(major = 6, minor = 6, patch = 3)
121-
public static final Site BOTS_DISTOP_XYZ = new Site("bots.distop.xyz");
122-
123111
/**
124112
* <a href="https://botsfordiscord.com" target="_blank">botsfordiscord.com</a>
125113
*
@@ -131,22 +119,6 @@ public class Site{
131119
*/
132120
public static final Site BOTSFORDISCORD_COM = new Site("botsfordiscord.com", HttpMethod.GET, HttpMethod.POST);
133121

134-
/**
135-
* <a href="https://bots.idledev.org" target="_blank">bots.idledev.org</a>
136-
*
137-
* <p>Supported methods:
138-
* <ul>
139-
* <li>GET</li>
140-
* <li>POST</li>
141-
* </ul>
142-
*
143-
* @deprecated Site no longer available.
144-
*/
145-
@Deprecated
146-
@DeprecatedSince(major = 6, minor = 6, patch = 1)
147-
@PlannedRemoval(major = 6, minor = 6, patch = 3)
148-
public static final Site BOTS_IDLEDEV_ORG = new Site("bots.idledev.org");
149-
150122
/**
151123
* <a href="https://bots.ondiscord.xyz" target="_blank">bots.ondiscord.xyz</a>
152124
*
@@ -263,6 +235,17 @@ public class Site{
263235
*/
264236
public static final Site DISCORDLISTOLOGY_COM = new Site("discordlistology.com", HttpMethod.GET, HttpMethod.POST);
265237

238+
/**
239+
* <a href="https://discordlist.space" target="_blank">discordlist.space</a> (Formerly botlist.space)
240+
*
241+
* <p>Supported methods:
242+
* <ul>
243+
* <li>GET</li>
244+
* <li>POST</li>
245+
* </ul>
246+
*/
247+
public static final Site DISCORDLIST_SPACE = new Site("discordlist.space", HttpMethod.GET, HttpMethod.POST);
248+
266249
/**
267250
* <a href="https://disforge.com" target="_blank">disforge.com</a>
268251
*

0 commit comments

Comments
 (0)