Skip to content

Commit b1d7b1c

Browse files
committed
Add FATESLIST_XYZ
1 parent 570eb27 commit b1d7b1c

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
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: 5, patch: 0)
10+
def ver = new Version(major: 6, minor: 5, patch: 1)
1111

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ public class JavaBotBlockAPIInfo{
3434
/**
3535
* Minor version of the Wrapper.
3636
*/
37-
public static final String MINOR = "4";
37+
public static final String MINOR = "5";
3838
/**
3939
* Patch version of the Wrapper.
4040
*/
41-
public static final String PATCH = "2";
41+
public static final String PATCH = "1";
4242

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

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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,17 @@ public class Site{
255255
*/
256256
public static final Site DISFORGE_COM = new Site("disforge.com", HttpMethod.POST);
257257

258+
/**
259+
* <a href="https://fasteslist.xyz" target="_blank">fateslist.xyz</a>
260+
*
261+
* <p>Supported methods:
262+
* <ul>
263+
* <li>GET</li>
264+
* <li>POST</li>
265+
* </ul>
266+
*/
267+
public static final Site FATESLIST_XYZ = new Site("fateslist.xyz", HttpMethod.GET, HttpMethod.POST);
268+
258269
/**
259270
* <a href="https://infinitybotlist.com" target="_blank">infinitybotlist.com</a>
260271
*

0 commit comments

Comments
 (0)