Skip to content

Commit 634b628

Browse files
committed
Add cloudlist.xyz
1 parent 39ee176 commit 634b628

File tree

5 files changed

+27
-11
lines changed

5 files changed

+27
-11
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: 5, minor: 1, revision: 8)
10+
def ver = new Version(major: 5, minor: 1, revision: 9)
1111

1212
group = "org.botblock"
1313
version = "$ver"

src/main/java/org/botblock/javabotblockapi/BotBlockAPI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public Builder(){}
112112
*
113113
* @return The Builder after the site and token were set. Useful for chaining.
114114
*
115-
* @since v2.1.0
115+
* @since 2.1.0
116116
*/
117117
public Builder addAuthToken(@NotNull Site site, @NotNull String token){
118118
if(token.isEmpty())

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

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* <li>{@link org.botblock.javabotblockapi.BotBlockAPI.Builder BotBlockAPI.Builder}</li>
3030
* </ul>
3131
*
32-
* @since v2.1.0
32+
* @since 2.1.0
3333
*/
3434
public enum Site {
3535

@@ -56,10 +56,17 @@ public enum Site {
5656
/**
5757
* <a href="https://cloud-botlist.xyz" target="_blank">cloud-botlist.xyz</a>
5858
*
59-
* @since v3.2.1
59+
* @since 3.2.1
6060
*/
6161
CLOUD_BOTLIST_XYZ("cloud-botlist.xyz"),
6262

63+
/**
64+
* <a href="https://cloudlist.xyz" target="_blank">cloudlist.xyz</a>
65+
*
66+
* @since 5.1.9
67+
*/
68+
CLOUDLIST_XYZ("cloudlist.xyz"),
69+
6370
/**
6471
* <a href="https://dblista.pl" target="_blank">dblista.pl</a>
6572
*/
@@ -84,7 +91,7 @@ public enum Site {
8491
* <br>This option still works, but is no longer supported, nor recommended!
8592
*/
8693
@Deprecated
87-
@DeprecatedSince(version = "v3.0.1", replacements = "#TOP_GG")
94+
@DeprecatedSince(version = "3.0.1", replacements = "#TOP_GG")
8895
DISCORDBOTS_ORG("discordbots.org"),
8996

9097
/**
@@ -110,7 +117,7 @@ public enum Site {
110117
/**
111118
* <a href="https://discordextremelist.xyz" target="_blank">discordextremelist.xyz</a>
112119
*
113-
* @since v2.3.3
120+
* @since 2.3.3
114121
*/
115122
DISCORDEXTREMELIST_XYZ("discordextremelist.xyz"),
116123

@@ -121,7 +128,7 @@ public enum Site {
121128
* <br>Use {@link #DISCORDEXTREMELIST_XYZ DISCORDEXTREMELIST_XYZ} instead.
122129
*/
123130
@Deprecated
124-
@DeprecatedSince(version = "v4.2.3", replacements = "#DISCORDEXTREMELIST_XYZ")
131+
@DeprecatedSince(version = "4.2.3", replacements = "#DISCORDEXTREMELIST_XYZ")
125132
DISCORDSBESTBOTS_XYZ("discordsbestbots.xyz"),
126133

127134
/**
@@ -154,7 +161,7 @@ public enum Site {
154161
* <br>Note that top.gg is discordbots.org (new domain).
155162
* <br><b>This field may no longer be used! See deprecated note about why.</b>
156163
*
157-
* @since v3.0.0
164+
* @since 3.0.0
158165
*
159166
* @deprecated Top.gg no longer allows requests to their site being made through BotBlock.
160167
* <br><a href="https://imgur.com/sd50Ze4" target="_blank">Proof</a>
@@ -171,7 +178,7 @@ public enum Site {
171178
/**
172179
* <a href="https://yabl.xyz" target="_blank">yabl.xyz</a>
173180
*
174-
* @since v2.1.1
181+
* @since 2.1.1
175182
*/
176183
YABL_XYZ("yabl.xyz");
177184

src/main/java/org/botblock/javabotblockapi/annotations/DeprecatedSince.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* <p>Methods or fields annotated with this should be avoided as it may or may not be removed in a future release.
2828
* <br>A possible replacement method or field will be indicated when possible.
2929
*
30-
* @since v3.2.0
30+
* @since 3.2.0
3131
*/
3232
@Documented
3333
@Retention(RetentionPolicy.RUNTIME)

wiki/Changelog.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,16 @@ This page lists all versions of JavaBotBlockAPI and the changes being made.
99
1010
## v5
1111

12-
### 5.1.7
12+
### 5.1.9
13+
- Site updated:
14+
- Added [cloudlist.xyz](https://cloudlist.xyz)
15+
- Dependencies updated:
16+
- JDA: `4.1.1_101` to `4.1.1_105`
17+
18+
### 5.1.8
19+
- Same changes as [5.1.7](#517)
20+
21+
### 5.1.7*
1322
- Changed `RatelimitedException` from extending Throwable to extending RuntimeException.
1423
You no longer need to try-cacth the RatelimitedException.
1524
- Dependencies updated:

0 commit comments

Comments
 (0)