Skip to content

Commit 41494a9

Browse files
committed
Add paradisebots.net
1 parent d222e82 commit 41494a9

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins{
88
id 'com.github.johnrengelman.shadow' version '5.2.0'
99
}
1010

11-
def ver = new Version(major: 6, minor: 4, patch: 1)
11+
def ver = new Version(major: 6, minor: 4, patch: 2)
1212

1313
allprojects {
1414
apply plugin: 'com.jfrog.bintray'
@@ -20,7 +20,7 @@ allprojects {
2020
version = "$ver"
2121

2222
ext {
23-
23+
2424
dependencies {
2525
api group: 'org.json', name: 'json', version: '20201115'
2626
api group: 'com.github.ben-manes.caffeine', name: 'caffeine', version: '2.8.0'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class JavaBotBlockAPIInfo{
3838
/**
3939
* Patch version of the Wrapper.
4040
*/
41-
public static final String PATCH = "1";
41+
public static final String PATCH = "2";
4242

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

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,19 @@ public class Site{
266266
*/
267267
public static final Site INFINITYBOTLIST_COM = new Site("infinitybotlist.com", HttpMethod.GET, HttpMethod.POST);
268268

269+
/**
270+
* <a href ="https://paradisebots.net" target="_blank">paradisebots.net</a>
271+
*
272+
* <p>Supported methods:
273+
* <ul>
274+
* <li>GET</li>
275+
* <li>POST</li>
276+
* </ul>
277+
*
278+
* @since 6.4.2
279+
*/
280+
public static final Site PARADISEBOTS_NET = new Site("paradisebots.net", HttpMethod.GET, HttpMethod.POST);
281+
269282
/**
270283
* <a href="https://space-bot-list.xyz" target="_blank">space-bot-list.xyz</a>
271284
*

0 commit comments

Comments
 (0)