File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
src/main/java/xyz/theprogramsrc/supercoreapi Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## v4.2.6 Changelog:
2
+ ```
3
+ * Fixed version in SuperCoreAPI Update Checker
4
+ ```
5
+
1
6
## v4.2.5 Changelog:
2
7
```
3
8
+ Added method to add an error to the last errors list
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >xyz.theprogramsrc</groupId >
8
8
<artifactId >SuperCoreAPI</artifactId >
9
- <version >4.2.5 </version >
9
+ <version >4.2.6 </version >
10
10
<packaging >jar</packaging >
11
11
12
12
<name >SuperCoreAPI</name >
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public void onCheckFail() {
24
24
25
25
@ Override
26
26
public void onCheckSuccess (String lastVersion ) {
27
- String currentVersion = "4.2.3 " ;
27
+ String currentVersion = "4.2.6 " ;
28
28
int latest = Integer .parseInt (lastVersion .split (" " )[0 ].replaceAll ("\\ ." , "" ));
29
29
int current = Integer .parseInt (currentVersion .split (" " )[0 ].replaceAll ("\\ ." , "" ));
30
30
if (latest > current ){
You can’t perform that action at this time.
0 commit comments