Skip to content

Commit 4a0e32f

Browse files
committed
Version 6.3.2
Site updated: - Added BOTS_IDLEDEV_ORG - Deprecated MYTHICALBOTS_XYZ (Renamed to BOTS_IDLEDEV_ORG) - Removed DISCORDBOTS_FUN - Removed DISCORDLIST_CO - Removed GLENNBOTLIST_XYZ
1 parent 61ef6ed commit 4a0e32f

File tree

2 files changed

+11
-31
lines changed

2 files changed

+11
-31
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins{
99
id 'net.kyori.blossom' version '1.1.0'
1010
}
1111

12-
def ver = new Version(major: 6, minor: 3, patch: 1)
12+
def ver = new Version(major: 6, minor: 3, patch: 2)
1313

1414
allprojects {
1515
apply plugin: 'com.jfrog.bintray'

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

+10-30
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,11 @@ public class Site{
7373
*/
7474
public static final Site BOTSFORDISCORD_COM = new Site("botsfordiscord.com", HttpMethod.GET, HttpMethod.POST);
7575

76+
/**
77+
* <a href="https://bots.idledev.org" target="_blank">bots.idledev.org</a>
78+
*/
79+
public static final Site BOTS_IDLEDEV_ORG = new Site("bots.idledev.org", HttpMethod.GET, HttpMethod.POST);
80+
7681
/**
7782
* <a href="https://bots.ondiscord.xyz" target="_blank">bots.ondiscord.xyz</a>
7883
*/
@@ -117,31 +122,11 @@ public class Site{
117122
*/
118123
public static final Site DISCORD_BOTS_GG = new Site("discord.bots.gg", HttpMethod.GET, HttpMethod.POST);
119124

120-
/**
121-
* <a href="https://discordbots.fun" target="_blank">discordbots.fun</a>
122-
*
123-
* @deprecated Site no longer exists
124-
*/
125-
@Deprecated
126-
@DeprecatedSince(major = 6, minor = 3, patch = 0)
127-
@PlannedRemoval(major = 6, minor = 3, patch = 2)
128-
public static final Site DISCORDBOTS_FUN = new Site("discordbots.fun");
129-
130125
/**
131126
* <a href="https://discordextremelist.xyz" target="_blank">discordextremelist.xyz</a>
132127
*/
133128
public static final Site DISCORDEXTREMELIST_XYZ = new Site("discordextremelist.xyz", HttpMethod.GET, HttpMethod.POST);
134129

135-
/**
136-
* <a href="https://discordlist.co" target="_blank">discordlist.co</a>
137-
*
138-
* @deprecated Site no longer exists
139-
*/
140-
@Deprecated
141-
@DeprecatedSince(major = 6, minor = 3, patch = 0)
142-
@PlannedRemoval(major = 6, minor = 3, patch = 0)
143-
public static final Site DISCORDLIST_CO = new Site("discordlist.co");
144-
145130
/**
146131
* <a href="https://discordlistology.com" target="_blank">discordlistology.com</a>
147132
*/
@@ -152,16 +137,6 @@ public class Site{
152137
*/
153138
public static final Site DISFORGE_COM = new Site("disforge.com", HttpMethod.POST);
154139

155-
/**
156-
* <a href="https://glennbotlist.xyz" target="_blank">glennbotlist.xyz</a>
157-
*
158-
* @deprecated Site no longer exists
159-
*/
160-
@Deprecated
161-
@DeprecatedSince(major = 6, minor = 3, patch = 0)
162-
@PlannedRemoval(major = 6, minor = 3, patch = 0)
163-
public static final Site GLENNBOTLIST_XYZ = new Site("glennbotlist.xyz");
164-
165140
/**
166141
* <a href="https://hydrogenbots.club" target="_blank">hydrogenbots.club</a>
167142
*
@@ -179,7 +154,12 @@ public class Site{
179154

180155
/**
181156
* <a href="https://mythicalbots.xyz" target="_blank">mythicalbots.xyz</a>
157+
*
158+
* @deprecated Renamed to {@link #BOTS_IDLEDEV_ORG bots.idledev.org}
182159
*/
160+
@Deprecated
161+
@DeprecatedSince(major = 6, minor = 3, patch = 2)
162+
@PlannedRemoval(major = 6, minor = 3, patch = 4)
183163
public static final Site MYTHICALBOTS_XYZ = new Site("mythicalbots.xyz", HttpMethod.GET, HttpMethod.POST);
184164

185165
/**

0 commit comments

Comments
 (0)